1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-29 08:22:11 +02:00
imgproxy/vips.h

191 lines
4.4 KiB
C
Raw Normal View History

2017-09-27 10:42:49 +02:00
#include <stdlib.h>
#include <vips/vips.h>
#include <vips/vips7compat.h>
#define VIPS_SUPPORT_SMARTCROP \
(VIPS_MAJOR_VERSION > 8 || (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION >= 5))
2017-09-27 22:12:38 +02:00
#define VIPS_SUPPORT_GIF \
VIPS_MAJOR_VERSION > 8 || (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION >= 3)
#define EXIF_ORIENTATION "exif-ifd0-Orientation"
2017-09-27 10:42:49 +02:00
enum types {
UNKNOWN = 0,
JPEG,
2017-09-27 10:42:49 +02:00
PNG,
2017-10-05 01:59:23 +02:00
WEBP,
GIF
2017-09-27 10:42:49 +02:00
};
int
2017-10-05 01:59:23 +02:00
vips_initialize() {
2017-09-27 10:42:49 +02:00
return vips_init("imgproxy");
}
2017-09-28 15:43:21 +02:00
void
clear_image(VipsImage **in) {
2017-10-05 18:50:41 +02:00
if (G_IS_OBJECT(*in)) g_clear_object(in);
2017-09-28 15:43:21 +02:00
}
2017-10-05 01:56:42 +02:00
void
g_free_go(void **buf) {
g_free(*buf);
}
2017-09-27 21:17:17 +02:00
void
swap_and_clear(VipsImage **in, VipsImage *out) {
2017-09-28 15:43:21 +02:00
clear_image(in);
2017-09-27 21:17:17 +02:00
*in = out;
}
2017-09-27 10:42:49 +02:00
int
vips_type_find_load_go(int imgtype) {
if (imgtype == JPEG) {
return vips_type_find("VipsOperation", "jpegload");
}
if (imgtype == PNG) {
return vips_type_find("VipsOperation", "pngload");
}
if (imgtype == WEBP) {
return vips_type_find("VipsOperation", "webpload");
}
2017-10-05 01:59:23 +02:00
if (imgtype == GIF) {
return vips_type_find("VipsOperation", "gifload");
}
return 0;
2017-09-27 10:42:49 +02:00
}
int
vips_type_find_save_go(int imgtype) {
if (imgtype == JPEG) {
return vips_type_find("VipsOperation", "jpegsave_buffer");
}
if (imgtype == PNG) {
return vips_type_find("VipsOperation", "pngsave_buffer");
}
2017-10-05 01:59:23 +02:00
if (imgtype == WEBP) {
return vips_type_find("VipsOperation", "webpsave_buffer");
}
return 0;
2017-09-27 10:42:49 +02:00
}
int
2017-10-17 23:12:58 +02:00
vips_load_buffer(void *buf, size_t len, int imgtype, int shrink, VipsImage **out) {
switch (imgtype) {
case JPEG:
2017-10-17 23:12:58 +02:00
if (shrink > 1) {
return vips_jpegload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, "shrink", shrink, NULL);
}
return vips_jpegload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, NULL);
case PNG:
return vips_pngload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, NULL);
case WEBP:
2017-10-17 23:12:58 +02:00
if (shrink > 1) {
return vips_webpload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, "shrink", shrink, NULL);
}
return vips_webpload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, NULL);
#if VIPS_SUPPORT_GIF
case GIF:
return vips_gifload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, NULL);
#endif
}
return 1;
2017-09-27 21:17:17 +02:00
}
2017-09-27 10:42:49 +02:00
int
vips_get_exif_orientation(VipsImage *image) {
const char *orientation;
if (
vips_image_get_typeof(image, EXIF_ORIENTATION) != 0 &&
!vips_image_get_string(image, EXIF_ORIENTATION, &orientation)
) return atoi(&orientation[0]);
return 1;
}
2017-09-27 10:42:49 +02:00
int
vips_support_smartcrop() {
#if VIPS_SUPPORT_SMARTCROP
2017-10-05 01:59:23 +02:00
return 1;
2017-09-27 10:42:49 +02:00
#else
2017-10-05 01:59:23 +02:00
return 0;
2017-09-27 10:42:49 +02:00
#endif
}
2017-10-19 17:51:44 +02:00
VipsBandFormat
vips_band_format(VipsImage *in) {
return in->BandFmt;
}
int
vips_premultiply_go(VipsImage *in, VipsImage **out) {
return vips_premultiply(in, out, NULL);
}
int
vips_unpremultiply_go(VipsImage *in, VipsImage **out) {
return vips_unpremultiply(in, out, NULL);
}
int
vips_cast_go(VipsImage *in, VipsImage **out, VipsBandFormat format) {
return vips_cast(in, out, format, NULL);
}
2017-09-27 10:42:49 +02:00
int
2017-10-18 00:23:17 +02:00
vips_resize_go(VipsImage *in, VipsImage **out, double scale) {
return vips_resize(in, out, scale, NULL);
}
2017-10-18 00:23:17 +02:00
int
vips_colourspace_go(VipsImage *in, VipsImage **out, VipsInterpretation cs) {
return vips_colourspace(in, out, cs, NULL);
}
2017-10-18 00:23:17 +02:00
int
vips_rot_go(VipsImage *in, VipsImage **out, VipsAngle angle) {
return vips_rot(in, out, angle, NULL);
}
2017-10-18 00:23:17 +02:00
int
vips_flip_horizontal_go(VipsImage *in, VipsImage **out) {
return vips_flip(in, out, VIPS_DIRECTION_HORIZONTAL, NULL);
}
2017-09-27 21:17:17 +02:00
2017-10-18 00:23:17 +02:00
int
vips_smartcrop_go(VipsImage *in, VipsImage **out, int width, int height) {
#if VIPS_SUPPORT_SMARTCROP
return vips_smartcrop(in, out, width, height, NULL);
#else
2017-10-18 00:35:13 +02:00
return 1;
2017-10-18 00:23:17 +02:00
#endif
}
2017-09-27 21:17:17 +02:00
2017-10-18 00:23:17 +02:00
int
vips_extract_area_go(VipsImage *in, VipsImage **out, int left, int top, int width, int height) {
return vips_extract_area(in, out, left, top, width, height, NULL);
2017-09-27 21:17:17 +02:00
}
2017-09-27 10:42:49 +02:00
int
2017-10-05 01:59:23 +02:00
vips_jpegsave_go(VipsImage *in, void **buf, size_t *len, int strip, int quality, int interlace) {
2017-09-27 10:42:49 +02:00
return vips_jpegsave_buffer(in, buf, len, "strip", strip, "Q", quality, "optimize_coding", TRUE, "interlace", interlace, NULL);
}
int
2017-10-05 01:59:23 +02:00
vips_pngsave_go(VipsImage *in, void **buf, size_t *len) {
2017-09-27 19:22:36 +02:00
return vips_pngsave_buffer(in, buf, len, "filter", VIPS_FOREIGN_PNG_FILTER_NONE, NULL);
2017-09-27 10:42:49 +02:00
}
int
2017-10-05 01:59:23 +02:00
vips_webpsave_go(VipsImage *in, void **buf, size_t *len, int strip, int quality) {
return vips_webpsave_buffer(in, buf, len, "strip", strip, "Q", quality, NULL);
2017-09-27 10:42:49 +02:00
}
2017-09-27 21:17:17 +02:00
void
2017-10-05 01:59:23 +02:00
vips_cleanup() {
2017-09-27 21:17:17 +02:00
vips_thread_shutdown();
vips_error_clear();
}