blob: 7e8d916439b93a9d6d8714e26e9a834816be6898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _EOG_IMAGE_JPEG_H_
#define _EOG_IMAGE_JPEG_H_
#ifdef HAVE_JPEG
#include <glib.h>
#include "eog-image.h"
#include "eog-image-save-info.h"
/* Saves a source jpeg file in an arbitrary format (as specified by
* target). The target pointer may be NULL, in which case the output
* file is saved as jpeg too. This method tries to be as smart as
* possible. It will save the image as lossless as possible (if the
* target is a jpeg image too).
*/
G_GNUC_INTERNAL
gboolean eog_image_jpeg_save_file (EogImage *image, const char *file,
EogImageSaveInfo *source, EogImageSaveInfo *target,
GError **error);
#endif
#endif /* _EOG_IMAGE_JPEG_H_ */
|