2 Copyright (C) 2005 Fernando Herrera <fherrera@onirica.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #include <evince-document.h>
34 #define _WIN32_WINNT 0x0500
38 #define THUMBNAIL_SIZE 128
40 static gint size = THUMBNAIL_SIZE;
41 static const gchar **file_arguments;
43 static const GOptionEntry goption_options[] = {
44 { "size", 's', 0, G_OPTION_ARG_INT, &size, NULL, "SIZE" },
45 { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &file_arguments, NULL, "<input> <ouput>" },
57 evince_thumbnailer_get_document (const gchar *uri)
59 EvDocument *document = NULL;
62 document = ev_document_factory_get_document (uri, &error);
64 if (error->domain == EV_DOCUMENT_ERROR &&
65 error->code == EV_DOCUMENT_ERROR_ENCRYPTED) {
66 /* FIXME: Create a thumb for cryp docs */
78 evince_thumbnail_pngenc_get (EvDocument *document, const char *thumbnail, int size)
85 page = ev_document_get_page (document, 0);
87 ev_document_get_page_size (document, page, &width, &height);
89 rc = ev_render_context_new (page, 0, size / width);
90 pixbuf = ev_document_thumbnails_get_thumbnail (EV_DOCUMENT_THUMBNAILS (document),
93 g_object_unref (page);
96 const char *overlaid_icon_name = NULL;
98 if (overlaid_icon_name) {
99 GdkPixbuf *overlaid_pixbuf;
102 gchar *dir = g_win32_get_package_installation_directory_of_module (NULL);
103 gchar *overlaid_icon_path = g_build_filename (dir, "share", "evince", overlaid_icon_name, NULL);
106 gchar *overlaid_icon_path = g_strdup_printf ("%s/%s", DATADIR, overlaid_icon_name);
108 overlaid_pixbuf = gdk_pixbuf_new_from_file (overlaid_icon_path, NULL);
109 g_free (overlaid_icon_path);
110 if (overlaid_pixbuf != NULL) {
111 int delta_height, delta_width;
113 delta_width = gdk_pixbuf_get_width (pixbuf) -
114 gdk_pixbuf_get_width (overlaid_pixbuf);
115 delta_height = gdk_pixbuf_get_height (pixbuf) -
116 gdk_pixbuf_get_height (overlaid_pixbuf);
118 gdk_pixbuf_composite (overlaid_pixbuf, pixbuf,
119 delta_width, delta_height,
120 gdk_pixbuf_get_width (overlaid_pixbuf),
121 gdk_pixbuf_get_height (overlaid_pixbuf),
122 delta_width, delta_height,
124 GDK_INTERP_NEAREST, 100);
126 g_object_unref (overlaid_pixbuf);
130 if (gdk_pixbuf_save (pixbuf, thumbnail, "png", NULL, NULL)) {
131 g_object_unref (pixbuf);
135 g_object_unref (pixbuf);
142 evince_thumbnail_pngenc_get_async (struct AsyncData *data)
144 ev_document_doc_mutex_lock ();
145 data->success = evince_thumbnail_pngenc_get (data->document,
148 ev_document_doc_mutex_unlock ();
150 g_idle_add ((GSourceFunc)gtk_main_quit, NULL);
156 print_usage (GOptionContext *context)
160 help = g_option_context_get_help (context, TRUE, NULL);
161 g_print ("%s", help);
166 main (int argc, char *argv[])
168 EvDocument *document;
169 GOptionContext *context;
174 GError *error = NULL;
176 context = g_option_context_new ("- GNOME Document Thumbnailer");
177 g_option_context_add_main_entries (context, goption_options, NULL);
179 if (!g_option_context_parse (context, &argc, &argv, &error)) {
180 g_printerr ("%s\n", error->message);
181 g_error_free (error);
182 print_usage (context);
183 g_option_context_free (context);
188 input = file_arguments ? file_arguments[0] : NULL;
189 output = input ? file_arguments[1] : NULL;
190 if (!input || !output) {
191 print_usage (context);
192 g_option_context_free (context);
197 g_option_context_free (context);
200 g_print ("Size cannot be smaller than 1 pixel\n");
204 input = file_arguments[0];
205 output = file_arguments[1];
209 if (!g_thread_supported ())
210 g_thread_init (NULL);
215 file = g_file_new_for_commandline_arg (input);
216 uri = g_file_get_uri (file);
217 document = evince_thumbnailer_get_document (uri);
219 g_object_unref (file);
227 if (!EV_IS_DOCUMENT_THUMBNAILS (document)) {
228 g_object_unref (document);
233 if (EV_IS_ASYNC_RENDERER (document)) {
234 struct AsyncData data;
236 gtk_init (&argc, &argv);
238 data.document = document;
239 data.output = output;
242 g_thread_create ((GThreadFunc) evince_thumbnail_pngenc_get_async,
247 g_object_unref (document);
250 return data.success ? 0 : -2;
253 if (!evince_thumbnail_pngenc_get (document, output, size)) {
254 g_object_unref (document);
259 g_object_unref (document);