thumbnail.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <cassert>
00028 #include <iostream>
00029
00030 #include <stdio.h>
00031 #include <string.h>
00032 #include <stdlib.h>
00033 #include <sys/time.h>
00034 #include <time.h>
00035
00036 #include <gdk-pixbuf/gdk-pixbuf-transform.h>
00037
00038
00039
00040
00041 int main(int argc, char * argv[])
00042 {
00043 if (argc != 4)
00044 {
00045 return -1;
00046 }
00047
00048 g_type_init();
00049
00050 GdkPixbuf * loader = gdk_pixbuf_new_from_file(argv[1], 0);
00051 if (loader)
00052 {
00053 printf("Do Scaling...");
00054 struct timeval tv_start, tv_end;
00055
00056 gettimeofday(&tv_start, NULL);
00057
00058 int w = atoi(argv[2]);
00059 int h = atoi(argv[3]);
00060 GdkPixbuf * tmp = gdk_pixbuf_scale_simple(loader, w, h,
00061 GDK_INTERP_NEAREST);
00062 if (tmp)
00063 {
00064 g_object_unref(tmp);
00065 }
00066
00067 gettimeofday(&tv_end, NULL);
00068
00069 printf("%ld \n",
00070 (tv_end.tv_sec - tv_start.tv_sec) * 1000000
00071 + (tv_end.tv_usec - tv_start.tv_usec));
00072
00073 g_object_unref(loader);
00074 }
00075
00076 return 0;
00077 }
00078
00079