]> www.fi.muni.cz Git - evince.git/commitdiff
Fix thumbnails rendering for pdf
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>
Tue, 13 Sep 2005 17:05:53 +0000 (17:05 +0000)
committerNickolay V. Shmyrev <nshmyrev@src.gnome.org>
Tue, 13 Sep 2005 17:05:53 +0000 (17:05 +0000)
Fix thumbnails rendering for pdf

ChangeLog
pdf/ev-poppler.cc

index 6d7eaeca39dda7cf71748853eb26820fef8c2f71..31150794b0ad8868803298faf1dfbb9fd2e51ad2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-09-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
+
+       * pdf/ev-poppler.cc:
+       
+       Fix pdf thumbnails rendering.
+
 2005-09-13  Wouter Bolsterlee  <uws+gnome@xs4all.nl>
 
        * shell/ev-window.c: (fullscreen_set_timeout):
index 414bfb453fcd350a49613755bb8393763de413c3..1dcc7a5e98ac2f726a7b30da4385de692e220e18 100644 (file)
@@ -873,7 +873,7 @@ make_thumbnail_for_size (PdfDocument   *pdf_document,
                         gboolean       border)
 {
        PopplerPage *poppler_page;
-       GdkPixbuf *pixbuf, *sub_pixbuf;
+       GdkPixbuf *pixbuf, *border_pixbuf;
        int width, height;
        double scale;
        gdouble unscaled_width, unscaled_height;
@@ -886,38 +886,30 @@ make_thumbnail_for_size (PdfDocument   *pdf_document,
        poppler_page_get_size (poppler_page, &unscaled_width, &unscaled_height);
        scale = width / unscaled_width;
 
-       if (border) {
-               pixbuf = ev_document_misc_get_thumbnail_frame (width, height, rotation, NULL);
-
-               width = gdk_pixbuf_get_width (pixbuf);
-               height = gdk_pixbuf_get_height (pixbuf);
-               sub_pixbuf = gdk_pixbuf_new_subpixbuf (pixbuf,
-                                                      1, 1,
-                                                      width - 1, height - 1);
-       } else {
-               /* rotate */
-               if (rotation == 90 || rotation == 270) {
-                       int temp;
-                       temp = width;
-                       width = height;
-                       height = temp;
-               }
-
-               pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8,
-                                        width, height);
-               gdk_pixbuf_fill (pixbuf, 0xffffffff);
-               sub_pixbuf = gdk_pixbuf_new_subpixbuf (pixbuf,
-                                                      0, 0,
-                                                      width, height);
+       /* rotate */
+       if (rotation == 90 || rotation == 270) {
+               int temp;
+               temp = width;
+               width = height;
+               height = temp;
        }
 
+       pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8,
+                                width, height);
+       gdk_pixbuf_fill (pixbuf, 0xffffffff);
+
        poppler_page_render_to_pixbuf (poppler_page, 0, 0,
                                       width, height,
-                                      scale, rotation, sub_pixbuf);
-
-       g_object_unref (G_OBJECT (sub_pixbuf));
+                                      scale, rotation, pixbuf);
+       
+        if (border) {          
+               border_pixbuf = ev_document_misc_get_thumbnail_frame (-1, -1, rotation, pixbuf);
+               g_object_unref (pixbuf);
+               pixbuf = border_pixbuf;
+       }               
 
        g_object_unref (poppler_page);
+
        return pixbuf;
 }