1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2026-06-09 22:03:53 +02:00
Files
imgproxy/vips/interpretation.go
2026-02-03 13:10:28 +01:00

20 lines
541 B
Go

package vips
/*
#include "vips.h"
*/
import "C"
type Interpretation C.VipsInterpretation
const (
InterpretationMultiBand = C.VIPS_INTERPRETATION_MULTIBAND
InterpretationBW = C.VIPS_INTERPRETATION_B_W
InterpretationCMYK = C.VIPS_INTERPRETATION_CMYK
InterpretationRGB = C.VIPS_INTERPRETATION_RGB
InterpretationSRGB = C.VIPS_INTERPRETATION_sRGB
InterpretationRGB16 = C.VIPS_INTERPRETATION_RGB16
InterpretationGrey16 = C.VIPS_INTERPRETATION_GREY16
InterpretationScRGB = C.VIPS_INTERPRETATION_scRGB
)