X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=pdf%2Fev-poppler.cc;h=bbcb978120ff4a82f2025302ede323cab6803b71;hb=48ab804ceec8229e351914ec863202418938d5fa;hp=4be0e7caa782bc5b1c7a124728398ad7906cd31f;hpb=8df02504363901b99bfdd0cf79d56b9e92f4f9c3;p=evince.git diff --git a/pdf/ev-poppler.cc b/pdf/ev-poppler.cc index 4be0e7ca..bbcb9781 100644 --- a/pdf/ev-poppler.cc +++ b/pdf/ev-poppler.cc @@ -809,12 +809,22 @@ make_thumbnail_for_size (PdfDocument *pdf_document, scale = width / unscaled_width; if (border) { - pixbuf = ev_document_misc_get_thumbnail_frame (width, height, NULL); + 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); @@ -856,7 +866,7 @@ pdf_document_thumbnails_get_thumbnail (EvDocumentThumbnails *document_thumbnails if (border) { GdkPixbuf *real_pixbuf; - real_pixbuf = ev_document_misc_get_thumbnail_frame (-1, -1, pixbuf); + real_pixbuf = ev_document_misc_get_thumbnail_frame (-1, -1, rotation, pixbuf); g_object_unref (pixbuf); pixbuf = real_pixbuf; } @@ -1182,7 +1192,7 @@ pdf_selection_render_selection (EvSelection *selection, } poppler_page_render_selection (POPPLER_PAGE (rc->data), - rc->scale, *pixbuf, + rc->scale, rc->rotation, *pixbuf, (PopplerRectangle *)points, (PopplerRectangle *)old_points, text,