You've already forked imgproxy
mirror of
https://github.com/imgproxy/imgproxy.git
synced 2026-06-13 22:32:40 +02:00
10 lines
242 B
C
10 lines
242 B
C
#pragma once
|
|
|
|
#include "vips.h"
|
|
|
|
/* vips_dct2_hash calculates the DCT hash of the image in the input buffer
|
|
* and returns it as an array of floats.
|
|
*/
|
|
int
|
|
vips_dct2_hash(void *in_buf, size_t in_buf_size, float **dct_array, size_t *length);
|