cyotek / imagelistview

Automatically exported from code.google.com/p/imagelistview
5 stars 0 forks source link

.NET 2.0 compatible #116

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
-------
File "ThumbnailExtractor.cs", line 61:

Wrong:
Image img = GetThumbnailBmp(image, size);

Correct:
Image img = GetThumbnailBmp(image, size, 0);

-------
File "ThumbnailExtractor.cs", line 169:

Wrong:
Image img = GetThumbnailBmp(filename, size, useEmbeddedThumbnails);

Correct:
Image img = GetThumbnailBmp(filename, size, useEmbeddedThumbnails, 0);

Original issue reported on code.google.com by uwe.k...@gmail.com on 7 Jan 2011 at 10:26

GoogleCodeExporter commented 9 years ago
Fixed by r572.

Original comment by oozcitak on 8 Jan 2011 at 9:34