mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-16 05:18:38 +01:00
7 lines
177 B
C
7 lines
177 B
C
#include <stdio.h>
|
|
#include "jpeglib.h"
|
|
#include "utils.h"
|
|
|
|
void jpeg_size(FILE* infile, int* height, int* width);
|
|
|
|
int jpeg_to_jpeg(FILE* input, FILE* output, int targetSize);
|