mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-13 17:30:28 -07:00
parent
f63020b40f
commit
e603ddd10a
8 changed files with 204 additions and 20 deletions
12
vips.h
12
vips.h
|
|
@ -91,6 +91,18 @@ vips_enum_nick_bridge(VipsImage *image) {
|
|||
return vips_enum_nick(VIPS_TYPE_INTERPRETATION, image->Type);
|
||||
};
|
||||
|
||||
int
|
||||
vips_insert_bridge(VipsImage *in, VipsImage *sub, VipsImage **out, int left, int top)
|
||||
{
|
||||
return vips_insert(in, sub, out, left, top, NULL);
|
||||
};
|
||||
|
||||
int
|
||||
vips_bandjoin2_bridge(VipsImage *in, VipsImage *sub, VipsImage **out)
|
||||
{
|
||||
return vips_bandjoin2(in, sub, out, NULL);
|
||||
};
|
||||
|
||||
int
|
||||
vips_embed_bridge(VipsImage *in, VipsImage **out, int left, int top, int width, int height, int extend)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue