mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
13 lines
347 B
C
13 lines
347 B
C
// https://libvips.github.io/libvips/API/current/libvips-create.html
|
|
|
|
// clang-format off
|
|
// include order matters
|
|
#include <stdlib.h>
|
|
#include <vips/vips.h>
|
|
#include <vips/foreign.h>
|
|
// clang-format on
|
|
|
|
int xyz(VipsImage **out, int width, int height);
|
|
int black(VipsImage **out, int width, int height);
|
|
int identity(VipsImage **out, int ushort);
|