mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
the issue of plg_image_c is its reliance on shared libraries like libraw which depends on lcms2 and libheif which depends on a whole bunch of other stuff. That make releasing a fat binary that just work of Filestash tricky if someone ever read this, I would gladly get help to integrate the whole build of those things within CI without prolonging the build time by 2 hours.
6 lines
152 B
C
6 lines
152 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int png_to_png(int input, int output, int targetSize);
|
|
|
|
int png_to_webp(int input, int output, int targetSize);
|