bimg/vips.h

304 lines
6.9 KiB
C
Raw Normal View History

2015-03-30 04:55:04 +08:00
#include <stdlib.h>
#include <vips/vips.h>
#include <vips/vips7compat.h>
2015-07-29 04:29:47 +08:00
#ifdef VIPS_MAGICK_H
#define VIPS_MAGICK_SUPPORT 1
#else
#define VIPS_MAGICK_SUPPORT 0
#endif
2015-04-04 22:12:45 +08:00
enum types {
UNKNOWN = 0,
JPEG,
WEBP,
PNG,
TIFF,
MAGICK
};
2015-04-11 08:49:11 +08:00
typedef struct {
2015-04-11 18:12:29 +08:00
const char *Text;
const char *Font;
} WatermarkTextOptions;
2015-04-11 08:49:11 +08:00
typedef struct {
2015-04-11 08:56:59 +08:00
int Width;
int DPI;
int Margin;
int NoReplicate;
float Opacity;
2015-04-11 08:49:11 +08:00
double Background[3];
} WatermarkOptions;
2015-04-11 08:49:11 +08:00
2015-04-27 02:07:47 +08:00
void
vips_enable_cache_set_trace()
{
vips_cache_set_trace(TRUE);
};
2015-03-30 04:55:04 +08:00
int
vips_affine_interpolator(VipsImage *in, VipsImage **out, double a, double b, double c, double d, VipsInterpolate *interpolator)
{
return vips_affine(in, out, a, b, c, d, "interpolate", interpolator, NULL);
};
int
vips_jpegload_buffer_shrink(void *buf, size_t len, VipsImage **out, int shrink)
{
return vips_jpegload_buffer(buf, len, out, "shrink", shrink, NULL);
};
2015-03-30 08:41:16 +08:00
int
2015-04-06 19:25:01 +08:00
vips_flip_bridge(VipsImage *in, VipsImage **out, int direction)
2015-03-30 08:41:16 +08:00
{
return vips_flip(in, out, direction, NULL);
2015-03-30 08:41:16 +08:00
};
2015-03-30 04:55:04 +08:00
int
vips_shrink_bridge(VipsImage *in, VipsImage **out, double xshrink, double yshrink)
2015-03-30 04:55:04 +08:00
{
return vips_shrink(in, out, xshrink, yshrink, NULL);
};
int
2015-05-06 02:28:39 +08:00
vips_rotate(VipsImage *in, VipsImage **out, int angle)
2015-03-30 04:55:04 +08:00
{
int rotate = VIPS_ANGLE_D0;
if (angle == 90) {
2015-03-30 08:43:24 +08:00
rotate = VIPS_ANGLE_D90;
} else if (angle == 180) {
rotate = VIPS_ANGLE_D180;
} else if (angle == 270) {
rotate = VIPS_ANGLE_D270;
}
2015-03-30 04:55:04 +08:00
2015-05-06 02:28:39 +08:00
return vips_rot(in, out, rotate, NULL);
2015-03-30 08:41:16 +08:00
};
2015-03-30 04:55:04 +08:00
2015-04-06 04:01:48 +08:00
int
vips_exif_orientation(VipsImage *image) {
2015-04-06 23:06:44 +08:00
int orientation = 0;
const char *exif;
2015-04-06 23:06:44 +08:00
if (
vips_image_get_typeof(image, "exif-ifd0-Orientation") != 0 &&
!vips_image_get_string(image, "exif-ifd0-Orientation", &exif)
2015-04-06 23:06:44 +08:00
) {
orientation = atoi(&exif[0]);
2015-04-06 23:06:44 +08:00
}
return orientation;
2015-04-06 04:01:48 +08:00
};
2015-03-30 04:55:04 +08:00
int
2015-04-06 19:25:01 +08:00
has_profile_embed(VipsImage *image) {
return vips_image_get_typeof(image, VIPS_META_ICC_NAME);
};
void
remove_profile(VipsImage *image) {
vips_image_remove(image, VIPS_META_ICC_NAME);
2015-04-06 19:25:01 +08:00
};
int
has_alpha_channel(VipsImage *image) {
return (
2015-04-06 23:06:44 +08:00
(image->Bands == 2 && image->Type == VIPS_INTERPRETATION_B_W) ||
(image->Bands == 4 && image->Type != VIPS_INTERPRETATION_CMYK) ||
(image->Bands == 5 && image->Type == VIPS_INTERPRETATION_CMYK)
) ? 1 : 0;
2015-04-06 19:25:01 +08:00
};
int
interpolator_window_size(char const *name) {
2015-04-06 23:06:44 +08:00
VipsInterpolate *interpolator = vips_interpolate_new(name);
int window_size = vips_interpolate_get_window_size(interpolator);
g_object_unref(interpolator);
return window_size;
2015-04-06 19:25:01 +08:00
};
const char *
vips_enum_nick_bridge(VipsImage *image) {
return vips_enum_nick(VIPS_TYPE_INTERPRETATION, image->Type);
};
2015-04-09 07:44:54 +08:00
int
vips_zoom_bridge(VipsImage *in, VipsImage **out, int xfac, int yfac)
2015-04-09 07:44:54 +08:00
{
return vips_zoom(in, out, xfac, yfac, NULL);
2015-04-09 07:44:54 +08:00
};
2015-03-30 04:55:04 +08:00
int
2015-04-11 08:49:11 +08:00
vips_embed_bridge(VipsImage *in, VipsImage **out, int left, int top, int width, int height, int extend)
2015-03-30 04:55:04 +08:00
{
2015-04-11 08:49:11 +08:00
return vips_embed(in, out, left, top, width, height, "extend", extend, NULL);
2015-03-30 04:55:04 +08:00
};
int
2015-04-06 19:25:01 +08:00
vips_extract_area_bridge(VipsImage *in, VipsImage **out, int left, int top, int width, int height)
2015-03-30 04:55:04 +08:00
{
return vips_extract_area(in, out, left, top, width, height, NULL);
2015-03-30 08:41:16 +08:00
};
2015-03-30 04:55:04 +08:00
int
vips_colourspace_issupported_bridge(VipsImage *in)
{
return vips_colourspace_issupported(in) ? 1 : 0;
};
VipsInterpretation
vips_image_guess_interpretation_bridge(VipsImage *in) {
return vips_image_guess_interpretation(in);
};
2015-06-14 03:16:28 +08:00
int
2015-07-10 21:56:21 +08:00
vips_colourspace_bridge(VipsImage *in, VipsImage **out, VipsInterpretation space)
2015-06-14 03:16:28 +08:00
{
2015-07-10 21:56:21 +08:00
return vips_colourspace(in, out, space, NULL);
2015-06-14 03:16:28 +08:00
};
gboolean
with_interlace(int interlace) {
return interlace > 0 ? TRUE : FALSE;
};
2015-03-30 04:55:04 +08:00
int
2015-04-06 19:25:01 +08:00
vips_jpegsave_bridge(VipsImage *in, void **buf, size_t *len, int strip, int quality, int interlace)
2015-03-30 04:55:04 +08:00
{
return vips_jpegsave_buffer(in, buf, len,
"strip", strip,
"Q", quality,
"optimize_coding", TRUE,
"interlace", with_interlace(interlace),
NULL
);
2015-03-30 08:41:16 +08:00
};
2015-04-06 05:39:15 +08:00
int
2015-04-06 19:25:01 +08:00
vips_pngsave_bridge(VipsImage *in, void **buf, size_t *len, int strip, int compression, int quality, int interlace)
2015-04-06 05:39:15 +08:00
{
#if (VIPS_MAJOR_VERSION >= 8 || (VIPS_MAJOR_VERSION >= 7 && VIPS_MINOR_VERSION >= 42))
return vips_pngsave_buffer(in, buf, len,
"strip", FALSE,
"compression", compression,
"interlace", with_interlace(interlace),
"filter", VIPS_FOREIGN_PNG_FILTER_NONE,
NULL
);
2015-04-06 05:39:15 +08:00
#else
return vips_pngsave_buffer(in, buf, len,
"strip", FALSE,
"compression", compression,
"interlace", with_interlace(interlace),
NULL
);
2015-04-06 05:39:15 +08:00
#endif
};
int
vips_webpsave_bridge(VipsImage *in, void **buf, size_t *len, int strip, int quality)
2015-04-06 05:39:15 +08:00
{
return vips_webpsave_buffer(in, buf, len,
"strip", strip,
"Q", quality,
NULL
);
2015-04-06 05:39:15 +08:00
};
int
vips_init_image(void *buf, size_t len, int imageType, VipsImage **out) {
2015-04-06 23:06:44 +08:00
int code = 1;
if (imageType == JPEG) {
2015-05-06 02:28:39 +08:00
code = vips_jpegload_buffer(buf, len, out, "access", VIPS_ACCESS_RANDOM, NULL);
2015-04-06 23:06:44 +08:00
} else if (imageType == PNG) {
2015-05-06 02:28:39 +08:00
code = vips_pngload_buffer(buf, len, out, "access", VIPS_ACCESS_RANDOM, NULL);
2015-04-06 23:06:44 +08:00
} else if (imageType == WEBP) {
2015-05-06 02:28:39 +08:00
code = vips_webpload_buffer(buf, len, out, "access", VIPS_ACCESS_RANDOM, NULL);
2015-04-06 23:06:44 +08:00
} else if (imageType == TIFF) {
2015-05-06 02:28:39 +08:00
code = vips_tiffload_buffer(buf, len, out, "access", VIPS_ACCESS_RANDOM, NULL);
2015-04-08 05:02:31 +08:00
#if (VIPS_MAJOR_VERSION >= 8)
2015-04-06 23:06:44 +08:00
} else if (imageType == MAGICK) {
2015-05-06 02:28:39 +08:00
code = vips_magickload_buffer(buf, len, out, "access", VIPS_ACCESS_RANDOM, NULL);
2015-04-08 05:02:31 +08:00
#endif
2015-04-06 23:06:44 +08:00
}
2015-04-06 05:39:15 +08:00
2015-04-06 23:06:44 +08:00
return code;
2015-04-06 05:39:15 +08:00
};
2015-04-11 08:49:11 +08:00
2015-04-11 18:58:15 +08:00
int
vips_watermark_replicate(VipsImage *orig, VipsImage *in, VipsImage **out)
{
VipsImage *cache = vips_image_new();
if (
vips_replicate(in, &cache,
1 + orig->Xsize / in->Xsize,
1 + orig->Ysize / in->Ysize, NULL) ||
vips_crop(cache, out, 0, 0, orig->Xsize, orig->Ysize, NULL)
) {
g_object_unref(cache);
return 1;
}
return 0;
};
2015-04-11 08:49:11 +08:00
int
vips_watermark(VipsImage *in, VipsImage **out, WatermarkTextOptions *to, WatermarkOptions *o)
2015-04-11 08:49:11 +08:00
{
2015-04-11 09:12:49 +08:00
double ones[3] = { 1, 1, 1 };
VipsImage *base = vips_image_new();
2015-04-11 18:58:15 +08:00
VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 10);
2015-04-11 09:12:49 +08:00
t[0] = in;
// Make the mask.
if (
vips_text(&t[1], to->Text,
"width", o->Width,
"dpi", o->DPI,
"font", to->Font,
NULL) ||
vips_linear1(t[1], &t[2], o->Opacity, 0.0, NULL) ||
vips_cast(t[2], &t[3], VIPS_FORMAT_UCHAR, NULL) ||
vips_embed(t[3], &t[4], 100, 100, t[3]->Xsize + o->Margin, t[3]->Ysize + o->Margin, NULL)
) {
g_object_unref(base);
2015-04-11 18:58:15 +08:00
return 1;
2015-04-11 09:12:49 +08:00
}
// Replicate if necessary
2015-04-11 18:58:15 +08:00
if (o->NoReplicate != 1) {
VipsImage *cache = vips_image_new();
if (vips_watermark_replicate(t[0], t[4], &cache)) {
g_object_unref(cache);
g_object_unref(base);
return 1;
}
g_object_unref(t[4]);
t[4] = cache;
2015-04-11 09:12:49 +08:00
}
// Make the constant image to paint the text with.
if (
2015-04-11 18:58:15 +08:00
vips_black(&t[5], 1, 1, NULL) ||
vips_linear(t[5], &t[6], ones, o->Background, 3, NULL) ||
vips_cast(t[6], &t[7], VIPS_FORMAT_UCHAR, NULL) ||
vips_copy(t[7], &t[8], "interpretation", t[0]->Type, NULL) ||
vips_embed(t[8], &t[9], 0, 0, t[0]->Xsize, t[0]->Ysize, "extend", VIPS_EXTEND_COPY, NULL)
2015-04-11 09:12:49 +08:00
) {
g_object_unref(base);
2015-04-11 18:58:15 +08:00
return 1;
2015-04-11 09:12:49 +08:00
}
// Blend the mask and text and write to output.
2015-04-11 18:58:15 +08:00
if (vips_ifthenelse(t[4], t[9], t[0], out, "blend", TRUE, NULL)) {
2015-04-11 09:12:49 +08:00
g_object_unref(base);
2015-04-11 18:58:15 +08:00
return 1;
2015-04-11 09:12:49 +08:00
}
g_object_unref(base);
2015-04-11 18:58:15 +08:00
return 0;
2015-04-11 08:49:11 +08:00
};