From 3462576fd6bc883c41042fb7ae93ebabb12718d8 Mon Sep 17 00:00:00 2001 From: Tomas Bzatek Date: Sun, 10 Aug 2008 14:30:23 +0200 Subject: Support for different preview image borders Strip trailing whitespaces --- jpeg-utils.h | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'jpeg-utils.h') diff --git a/jpeg-utils.h b/jpeg-utils.h index 4c47d3c..e5e39de 100644 --- a/jpeg-utils.h +++ b/jpeg-utils.h @@ -1,16 +1,16 @@ /* Cataract - Static web photo gallery generator * Copyright (C) 2008 Tomas Bzatek - * + * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. @@ -23,7 +23,7 @@ #include -/* TODO: we want to have numerical values here at some point in the future */ +/* TODO: we want to have numerical values here at some point in the future */ typedef struct { char *datetime; char *camera_model; @@ -33,55 +33,55 @@ typedef struct { char *aperture; char *exposure; char *flash; - + char *exif_software; char *exif_imgdesc; char *exif_artist; char *exif_copyright; char *exif_usercomment; - + char *iptc_objectname; char *iptc_copyright; char *iptc_credit; char *iptc_caption; char *iptc_author; - + char *jpeg_comment; } TExifData; /* - * get_exif: retrieve EXIF info from a JPEG image - */ + * get_exif: retrieve EXIF info from a JPEG image + */ int get_exif (const char *filename, TExifData **exif_data); /* - * free_exif_struct: free allocated structure - */ + * free_exif_struct: free allocated structure + */ void free_exif_data (TExifData *data); /* - * resize_image: resize image pointed by src and save result to dst - */ -gboolean resize_image (const char *src, const char *dst, - int size_x, int size_y, + * resize_image: resize image pointed by src and save result to dst + */ +gboolean resize_image (const char *src, const char *dst, + int size_x, int size_y, int quality); /* - * get_image_sizes: retrieve image dimensions - */ -void get_image_sizes (const char *img, + * get_image_sizes: retrieve image dimensions + */ +void get_image_sizes (const char *img, unsigned long *width, unsigned long *height); /* - * calculate_sizes: calculate maximal image sizes within specified limits keeping aspect ratio - */ -void calculate_sizes (const unsigned long max_width, const unsigned long max_height, + * calculate_sizes: calculate maximal image sizes within specified limits keeping aspect ratio + */ +void calculate_sizes (const unsigned long max_width, const unsigned long max_height, unsigned long *width, unsigned long *height); #ifdef __cplusplus } -#endif \ No newline at end of file +#endif -- cgit v1.2.3