]> www.fi.muni.cz Git - evince.git/commitdiff
Fix tiff pixel conversion on big endian machines. Fixes bug #509920.
authorBenjamin Berg <benjamin@sipsolutions.net>
Thu, 9 Apr 2009 20:36:17 +0000 (20:36 +0000)
committerBenjamin Berg <bberg@src.gnome.org>
Thu, 9 Apr 2009 20:36:17 +0000 (20:36 +0000)
2009-04-09  Benjamin Berg  <benjamin@sipsolutions.net>

* backend/tiff/tiff-document.c: (tiff_document_render):
Fix tiff pixel conversion on big endian machines. Fixes bug #509920.

svn path=/trunk/; revision=3589

ChangeLog
backend/tiff/tiff-document.c

index 1c9c04797297a2f513dd2a7634ed1d2f91537c4d..7a1b24fe9cf4cb146b444fedc89512882107806b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-04-09  Benjamin Berg  <benjamin@sipsolutions.net>
+
+       * backend/tiff/tiff-document.c: (tiff_document_render):
+       Fix tiff pixel conversion on big endian machines. Fixes bug #509920.
+
 2009-04-09  Benjamin Berg  <benjamin@sipsolutions.net>
 
        * backend/dvi/cairo-device.c: (dvi_cairo_put_pixel):
index 5501451cd5829a1c5be6765f3ab581cc51c0bbd0..7f10c9ab7496b6edfdbd0e9244eacce26bdbea34 100644 (file)
@@ -260,10 +260,10 @@ tiff_document_render (EvDocument      *document,
        rowstride = cairo_format_stride_for_width (CAIRO_FORMAT_RGB24, width);
 #else
        rowstride = width * 4;
+#endif
        if (rowstride / 4 != width)
-               /* overflow */
+               /* overflow, or cairo was changed in an unsupported way */
                return NULL;                
-#endif
        
        bytes = height * rowstride;
        if (bytes / rowstride != height)
@@ -292,16 +292,15 @@ tiff_document_render (EvDocument      *document,
        */
        p = pixels;
        while (p < pixels + bytes) {
-               uint32 pixel = *(uint32 *)p;
-               int r = TIFFGetR(pixel);
-               int g = TIFFGetG(pixel);
-               int b = TIFFGetB(pixel);
-               int a = TIFFGetA(pixel);
-               
-               *p++ = b;
-               *p++ = g;
-               *p++ = r;
-               *p++ = a;
+               guint32 *pixel = (guint32*)p;
+               guint8 r = TIFFGetR(*pixel);
+               guint8 g = TIFFGetG(*pixel);
+               guint8 b = TIFFGetB(*pixel);
+               guint8 a = TIFFGetA(*pixel);
+
+               *pixel = (a << 24) | (r << 16) | (g << 8) | b;
+
+               p += 4;
        }
 
        rotated_surface = ev_document_misc_surface_rotate_and_scale (surface,