|
|
|
@ -413,16 +413,16 @@ TQImage kio_digikamthumbnailProtocol::loadPNG(const TQString& path)
|
|
|
|
|
if (color_type == PNG_COLOR_TYPE_PALETTE)
|
|
|
|
|
png_set_expand(png_ptr);
|
|
|
|
|
|
|
|
|
|
if (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
|
|
|
|
|
if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
|
|
|
|
|
has_alpha = 1;
|
|
|
|
|
|
|
|
|
|
if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
|
|
|
|
if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
|
|
|
|
|
{
|
|
|
|
|
has_alpha = 1;
|
|
|
|
|
has_grey = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info_ptr->color_type == PNG_COLOR_TYPE_GRAY)
|
|
|
|
|
if (color_type == PNG_COLOR_TYPE_GRAY)
|
|
|
|
|
has_grey = 1;
|
|
|
|
|
|
|
|
|
|
unsigned char **lines;
|
|
|
|
|