From a953c6011f2fba7441758469118a886a33458e50 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Thu, 23 Aug 2007 22:34:31 +0000 Subject: Use CAIRO_FORMAT_RGB24 instead of CAIRO_FORMAT_ARGB32 when creating page 2007-08-24 Carlos Garcia Campos * backend/djvu/djvu-document.c: (djvu_document_render): * backend/tiff/tiff-document.c: (tiff_document_render): * backend/pdf/ev-poppler.cc: (pdf_document_render): * libdocument/ev-document-misc.c: (ev_document_misc_surface_from_pixbuf), (ev_document_misc_surface_rotate_and_scale): Use CAIRO_FORMAT_RGB24 instead of CAIRO_FORMAT_ARGB32 when creating page surfaces. Fixes bug #453123. Thank you very much to Jeff Muizelaar . svn path=/trunk/; revision=2637 --- (limited to 'backend') diff --git a/backend/djvu/djvu-document.c b/backend/djvu/djvu-document.c index 046228d..4a7aecc 100644 --- a/backend/djvu/djvu-document.c +++ b/backend/djvu/djvu-document.c @@ -260,7 +260,7 @@ djvu_document_render (EvDocument *document, rowstride = page_width * 4; pixels = (gchar *) g_malloc (page_height * rowstride); surface = cairo_image_surface_create_for_data (pixels, - CAIRO_FORMAT_ARGB32, + CAIRO_FORMAT_RGB24, page_width, page_height, rowstride); diff --git a/backend/pdf/ev-poppler.cc b/backend/pdf/ev-poppler.cc index 38a01fd..8af07fd 100644 --- a/backend/pdf/ev-poppler.cc +++ b/backend/pdf/ev-poppler.cc @@ -500,7 +500,7 @@ pdf_document_render (EvDocument *document, #ifdef HAVE_POPPLER_PAGE_RENDER cairo_t *cr; - surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, + surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, height); memset (cairo_image_surface_get_data (surface), 0xff, cairo_image_surface_get_height (surface) * diff --git a/backend/tiff/tiff-document.c b/backend/tiff/tiff-document.c index 59748d7..c6f4db2 100644 --- a/backend/tiff/tiff-document.c +++ b/backend/tiff/tiff-document.c @@ -259,7 +259,7 @@ tiff_document_render (EvDocument *document, return NULL; surface = cairo_image_surface_create_for_data (pixels, - CAIRO_FORMAT_ARGB32, + CAIRO_FORMAT_RGB24, width, height, rowstride); cairo_surface_set_user_data (surface, &key, -- cgit v0.9.1