2016-10-29 Fred Kiefer <FredKiefer@gmx.de>

* Source/NSBitmapImageRep.m: Set the TIFF subfield type to 0
	instead of 255.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@40185 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2016-10-29 12:29:26 +00:00
parent 83c7444c8a
commit a3d9637182
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2016-10-29 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSBitmapImageRep.m: Set the TIFF subfield type to 0
instead of 255.
2016-10-24 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSBitmapImageRep+JPEG.m: Try to handle images with alpha
@ -24,7 +29,6 @@
* Source/NSLayoutManager.m: Use the pre-computed advancement
instead of calculating it every time.
>>>>>>> .r40169
2016-10-22 Fred Kiefer <FredKiefer@gmx.de>
* Source/GSLayoutManager.m: Don't try to get the advancement for

View file

@ -2009,7 +2009,7 @@ _set_bit_value(unsigned char *base, long msb_off, int bit_width,
{
info->numImages = 1;
info->imageNumber = 0;
info->subfileType = 255;
info->subfileType = 0;
info->width = _pixelsWide;
info->height = _pixelsHigh;
info->bitsPerSample = _bitsPerSample;