~noskcaj/ubuntu/trusty/libextractor/merge

« back to all changes in this revision

Viewing changes to src/plugins/thumbnail/thumbnailextractor.c

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-11-10 22:21:49 UTC
  • mfrom: (1.10.3 upstream) (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20081110222149-pr35f3nmqy5cf52i
Tags: 0.5.21+dfsg-1ubuntu1
* Merge from Debian unstable, remaining Ubuntu changes:
  - (Build-)depend on libltdl7-dev (Ubuntu-specific change).

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
  out = gdk_pixbuf_scale_simple (in, width, height, GDK_INTERP_BILINEAR);
149
149
  g_object_unref (in);
150
150
  thumb = NULL;
151
 
  if (!gdk_pixbuf_save_to_buffer (out, &thumb, &length, "png", NULL, NULL))
 
151
  if (!gdk_pixbuf_save_to_buffer (out, &thumb, &length, "png", NULL, 
 
152
                                  "compression", 9, NULL))
152
153
    {
153
154
      g_object_unref (out);
154
155
      return prev;