Fixed: jpeg read didn't implement _LoadGrayscaleAsAlpha neither.
This commit is contained in:
parent
021124c9ba
commit
40a25d55c2
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ uint8 CBitmap::readJPG( NLMISC::IStream &f )
|
|||
{
|
||||
dstChannels = 1;
|
||||
srcChannels = 1;
|
||||
resize (cinfo.image_width, cinfo.image_height, Luminance);
|
||||
resize (cinfo.image_width, cinfo.image_height, _LoadGrayscaleAsAlpha ? Alpha : Luminance);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue