이 섹션에서는 WebP 라이브러리에 포함된 인코더 및 디코더의 API를 설명합니다. 이 API 설명은 버전 1.5.0과 관련이 있습니다.
헤더 및 라이브러리
libwebp
를 설치하면 webp/
라는 디렉터리가 플랫폼의 일반적인 위치에 설치됩니다. 예를 들어 유닉스 플랫폼에서는 다음 헤더 파일이 /usr/local/include/webp/
에 복사됩니다.
decode.h
encode.h
types.h
라이브러리는 일반적인 라이브러리 디렉터리에 있습니다. 정적 및 동적 라이브러리는 Unix 플랫폼의 /usr/local/lib/
에 있습니다.
Simple Decoding API
디코딩 API를 사용하려면 위에 설명된 대로 라이브러리와 헤더 파일이 설치되어 있는지 확인해야 합니다.
다음과 같이 C/C++ 코드에 디코딩 API 헤더를 포함합니다.
#include "webp/decode.h"
int WebPGetInfo(const uint8_t* data, size_t data_size, int* width, int* height);
이 함수는 WebP 이미지 헤더의 유효성을 검사하고 이미지 너비와 높이를 가져옵니다. 관련이 없다고 판단되면 포인터 *width
및 *height
에 NULL
를 전달할 수 있습니다.
입력 속성
- 데이터
- WebP 이미지 데이터 포인터
- data_size
- 이미지 데이터가 포함된
data
가 가리키는 메모리 블록의 크기입니다.
반환 값
- 거짓
- (a) 형식 지정 오류가 발생할 때 반환되는 오류 코드입니다.
- true
- 성공 시
*width
및*height
은 반환에 성공한 경우에만 유효합니다. - 너비
- 정수 값입니다. 범위는 1~16383으로 제한됩니다.
- 높이
- 정수 값입니다. 범위는 1~16383으로 제한됩니다.
struct WebPBitstreamFeatures {
int width; // Width in pixels.
int height; // Height in pixels.
int has_alpha; // True if the bitstream contains an alpha channel.
int has_animation; // True if the bitstream is an animation.
int format; // 0 = undefined (/mixed), 1 = lossy, 2 = lossless
}
VP8StatusCode WebPGetFeatures(const uint8_t* data,
size_t data_size,
WebPBitstreamFeatures* features);
이 함수는 비트스트림에서 특성을 검색합니다. *features
구조는 비트 스트림에서 수집된 정보로 채워집니다.
입력 속성
- 데이터
- WebP 이미지 데이터 포인터
- data_size
- 이미지 데이터가 포함된
data
가 가리키는 메모리 블록의 크기입니다.
반환 값
VP8_STATUS_OK
- 지형지물이 가져온 경우
VP8_STATUS_NOT_ENOUGH_DATA
- 헤더에서 기능을 검색하는 데 더 많은 데이터가 필요한 경우
그 외의 경우에는 추가 VP8StatusCode
오류 값이 발생합니다.
- 기능
- WebPBitstreamFeatures 구조체에 대한 포인터입니다.
uint8_t* WebPDecodeRGBA(const uint8_t* data, size_t data_size, int* width, int* height);
uint8_t* WebPDecodeARGB(const uint8_t* data, size_t data_size, int* width, int* height);
uint8_t* WebPDecodeBGRA(const uint8_t* data, size_t data_size, int* width, int* height);
uint8_t* WebPDecodeRGB(const uint8_t* data, size_t data_size, int* width, int* height);
uint8_t* WebPDecodeBGR(const uint8_t* data, size_t data_size, int* width, int* height);
이러한 함수는 data
에서 가리키는 WebP 이미지를 디코딩합니다.
WebPDecodeRGBA
는 RGBA 이미지 샘플을[r0, g0, b0, a0, r1, g1, b1, a1, ...]
순서로 반환합니다.WebPDecodeARGB
은 ARGB 이미지 샘플을[a0, r0, g0, b0, a1, r1, g1, b1, ...]
순서로 반환합니다.WebPDecodeBGRA
는 BGRA 이미지 샘플을[b0, g0, r0, a0, b1, g1, r1, a1, ...]
순서로 반환합니다.WebPDecodeRGB
은 RGB 이미지 샘플을[r0, g0, b0, r1, g1, b1, ...]
순서로 반환합니다.WebPDecodeBGR
은 BGR 이미지 샘플을[b0, g0, r0, b1, g1, r1, ...]
순서로 반환합니다.
이러한 함수를 호출하는 코드는 WebPFree()
를 사용하여 이러한 함수에서 반환된 데이터 버퍼 (uint8_t*)
를 삭제해야 합니다.
입력 속성
- 데이터
- WebP 이미지 데이터 포인터
- data_size
- 이미지 데이터가 포함된
data
가 가리키는 메모리 블록의 크기입니다. - 너비
- 정수 값입니다. 현재 범위는 1~16383으로 제한됩니다.
- 높이
- 정수 값입니다. 현재 범위는 1~16383으로 제한됩니다.
반환 값
- uint8_t*
- 선형 RGBA/ARGB/BGRA/RGB/BGR 순서로 디코딩된 WebP 이미지 샘플에 대한 포인터입니다.
uint8_t* WebPDecodeRGBAInto(const uint8_t* data, size_t data_size,
uint8_t* output_buffer, int output_buffer_size, int output_stride);
uint8_t* WebPDecodeARGBInto(const uint8_t* data, size_t data_size,
uint8_t* output_buffer, int output_buffer_size, int output_stride);
uint8_t* WebPDecodeBGRAInto(const uint8_t* data, size_t data_size,
uint8_t* output_buffer, int output_buffer_size, int output_stride);
uint8_t* WebPDecodeRGBInto(const uint8_t* data, size_t data_size,
uint8_t* output_buffer, int output_buffer_size, int output_stride);
uint8_t* WebPDecodeBGRInto(const uint8_t* data, size_t data_size,
uint8_t* output_buffer, int output_buffer_size, int output_stride);
이러한 함수는 위 함수의 변형이며 이미지를 사전 할당된 버퍼 output_buffer
로 직접 디코딩합니다. 이 버퍼에서 사용할 수 있는 최대 저장용량은 output_buffer_size
로 표시됩니다. 이 저장용량이 충분하지 않거나 오류가 발생하면 NULL
가 반환됩니다. 그렇지 않으면 편의를 위해 output_buffer
이 반환됩니다.
output_stride
매개변수는 스캔라인 간의 거리 (바이트)를 지정합니다. 따라서 output_buffer_size
는 output_stride * picture - height
이상일 것으로 예상됩니다.
입력 속성
- 데이터
- WebP 이미지 데이터 포인터
- data_size
- 이미지 데이터가 포함된
data
가 가리키는 메모리 블록의 크기입니다. - output_buffer_size
- 정수 값입니다. 할당된 버퍼의 크기
- output_stride
- 정수 값입니다. 스캔라인 사이의 거리를 지정합니다.
반환 값
- output_buffer
- 디코딩된 WebP 이미지 포인터입니다.
- uint8_t* 함수가 성공하면
output_buffer
, 그렇지 않으면NULL
입니다.
Advanced Decoding API
WebP 디코딩은 고급 API를 지원하여 실시간으로 자르고 크기를 조절할 수 있는 기능을 제공합니다. 이는 휴대전화와 같이 메모리가 제한된 환경에서 매우 유용합니다. 기본적으로 메모리 사용량은 너무 큰 사진의 빠른 미리보기나 확대된 부분만 필요한 경우 입력 크기가 아닌 출력 크기에 따라 조정됩니다. 부수적으로 일부 CPU도 절약될 수 있습니다.
WebP 디코딩에는 전체 이미지 디코딩과 소형 입력 버퍼를 통한 증분 디코딩이라는 두 가지 변형이 있습니다. 사용자는 원하는 경우 이미지 디코딩을 위한 외부 메모리 버퍼를 제공할 수 있습니다. 다음 코드 샘플에서는 고급 디코딩 API를 사용하는 단계를 안내합니다.
먼저 구성 객체를 초기화해야 합니다.
#include "webp/decode.h"
WebPDecoderConfig config;
CHECK(WebPInitDecoderConfig(&config));
// One can adjust some additional decoding options:
config.options.no_fancy_upsampling = 1;
config.options.use_scaling = 1;
config.options.scaled_width = scaledWidth();
config.options.scaled_height = scaledHeight();
// etc.
디코딩 옵션은 WebPDecoderConfig
구조 내에서 수집됩니다.
struct WebPDecoderOptions {
int bypass_filtering; // if true, skip the in-loop filtering
int no_fancy_upsampling; // if true, use faster pointwise upsampler
int use_cropping; // if true, cropping is applied first
int crop_left, crop_top; // top-left position for cropping.
// Will be snapped to even values.
int crop_width, crop_height; // dimension of the cropping area
int use_scaling; // if true, scaling is applied afterward
int scaled_width, scaled_height; // final resolution
int use_threads; // if true, use multi-threaded decoding
int dithering_strength; // dithering strength (0=Off, 100=full)
int flip; // if true, flip output vertically
int alpha_dithering_strength; // alpha dithering strength in [0..100]
};
미리 알아야 하는 경우 비트스트림 기능을 config.input
로 읽을 수도 있습니다. 예를 들어 사진에 투명도가 있는지 여부를 알면 유용할 수 있습니다. 이렇게 하면 비트스트림의 헤더도 파싱되므로 비트스트림이 유효한 WebP 비트스트림처럼 보이는지 확인하는 데 좋은 방법입니다.
CHECK(WebPGetFeatures(data, data_size, &config.input) == VP8_STATUS_OK);
그런 다음 디코더에 의존하는 대신 직접 할당하려는 경우 디코딩 메모리 버퍼를 설정해야 합니다. 메모리의 포인터와 버퍼의 총 크기, 선 스트라이드 (스캔라인 간의 바이트 거리)만 제공하면 됩니다.
// Specify the desired output colorspace:
config.output.colorspace = MODE_BGRA;
// Have config.output point to an external buffer:
config.output.u.RGBA.rgba = (uint8_t*)memory_buffer;
config.output.u.RGBA.stride = scanline_stride;
config.output.u.RGBA.size = total_size_of_the_memory_buffer;
config.output.is_external_memory = 1;
이미지를 디코딩할 준비가 되었습니다. 이미지를 디코딩하는 데는 두 가지 변형이 있습니다. 다음을 사용하여 한 번에 이미지를 디코딩할 수 있습니다.
CHECK(WebPDecode(data, data_size, &config) == VP8_STATUS_OK);
또는 증분 메서드를 사용하여 새 바이트가 제공될 때마다 이미지를 점진적으로 디코딩할 수 있습니다.
WebPIDecoder* idec = WebPINewDecoder(&config.output);
CHECK(idec != NULL);
while (additional_data_is_available) {
// ... (get additional data in some new_data[] buffer)
VP8StatusCode status = WebPIAppend(idec, new_data, new_data_size);
if (status != VP8_STATUS_OK && status != VP8_STATUS_SUSPENDED) {
break;
}
// The above call decodes the current available buffer.
// Part of the image can now be refreshed by calling
// WebPIDecGetRGB()/WebPIDecGetYUVA() etc.
}
WebPIDelete(idec); // the object doesn't own the image memory, so it can
// now be deleted. config.output memory is preserved.
디코딩된 이미지는 이제 config.output에 있습니다 (요청된 출력 색상 공간이 MODE_BGRA이므로 이 경우에는 config.output.u.RGBA에 있음). 이미지를 저장, 표시 또는 처리할 수 있습니다. 그런 다음 구성 객체에 할당된 메모리만 회수하면 됩니다. 메모리가 외부이고 WebPDecode()에서 할당되지 않은 경우에도 이 함수를 호출해도 안전합니다.
WebPFreeDecBuffer(&config.output);
이 API를 사용하면 MODE_YUV
및 MODE_YUVA
를 각각 사용하여 이미지를 YUV 및 YUVA 형식으로 디코딩할 수도 있습니다. 이 형식을 Y'CbCr이라고도 합니다.
Simple Encoding API
대부분의 일반적인 레이아웃에서 RGBA 샘플 배열을 인코딩하기 위한 매우 간단한 함수가 제공됩니다. webp/encode.h
헤더에서 다음과 같이 선언됩니다.
size_t WebPEncodeRGB(const uint8_t* rgb, int width, int height, int stride, float quality_factor, uint8_t** output);
size_t WebPEncodeBGR(const uint8_t* bgr, int width, int height, int stride, float quality_factor, uint8_t** output);
size_t WebPEncodeRGBA(const uint8_t* rgba, int width, int height, int stride, float quality_factor, uint8_t** output);
size_t WebPEncodeBGRA(const uint8_t* bgra, int width, int height, int stride, float quality_factor, uint8_t** output);
품질 계수 quality_factor
는 0~100 사이의 값을 갖고 압축 중에 손실과 품질을 제어합니다. 값 0은 낮은 품질과 작은 출력 크기에 해당하며, 100은 가장 높은 품질과 가장 큰 출력 크기에 해당합니다.
성공하면 압축된 바이트가 *output
포인터에 배치되고 크기 (바이트)가 반환됩니다. 실패하면 0이 반환됩니다. 호출자는 *output
포인터에서 WebPFree()
를 호출하여 메모리를 회수해야 합니다.
입력 배열은 함수 이름에서 예상하는 대로 채널마다 하나씩 압축된 바이트 배열이어야 합니다. stride
는 한 행에서 다음 행으로 이동하는 데 필요한 바이트 수에 해당합니다. 예를 들어 BGRA 레이아웃은 다음과 같습니다.
무손실 인코딩에 상응하는 함수(서명 포함)는 다음과 같습니다.
size_t WebPEncodeLosslessRGB(const uint8_t* rgb, int width, int height, int stride, uint8_t** output);
size_t WebPEncodeLosslessBGR(const uint8_t* bgr, int width, int height, int stride, uint8_t** output);
size_t WebPEncodeLosslessRGBA(const uint8_t* rgba, int width, int height, int stride, uint8_t** output);
size_t WebPEncodeLosslessBGRA(const uint8_t* bgra, int width, int height, int stride, uint8_t** output);
이러한 함수는 손실이 있는 버전과 마찬가지로 라이브러리의 기본 설정을 사용합니다. 무손실의 경우 'exact'가 사용 중지됩니다. 압축을 개선하기 위해 투명 영역의 RGB 값이 수정됩니다. 이를 방지하려면 WebPEncode()
를 사용하고 WebPConfig::exact
를 1
로 설정하세요.
Advanced Encoding API
인코더에는 여러 고급 인코딩 매개변수가 내장되어 있습니다.
압축 효율성과 처리 시간 간의 절충점을 더 잘 조정하는 데 유용할 수 있습니다.
이러한 매개변수는 WebPConfig
구조 내에서 수집됩니다.
이 구조에서 가장 많이 사용되는 필드는 다음과 같습니다.
struct WebPConfig {
int lossless; // Lossless encoding (0=lossy(default), 1=lossless).
float quality; // between 0 and 100. For lossy, 0 gives the smallest
// size and 100 the largest. For lossless, this
// parameter is the amount of effort put into the
// compression: 0 is the fastest but gives larger
// files compared to the slowest, but best, 100.
int method; // quality/speed trade-off (0=fast, 6=slower-better)
WebPImageHint image_hint; // Hint for image type (lossless only for now).
// Parameters related to lossy compression only:
int target_size; // if non-zero, set the desired target size in bytes.
// Takes precedence over the 'compression' parameter.
float target_PSNR; // if non-zero, specifies the minimal distortion to
// try to achieve. Takes precedence over target_size.
int segments; // maximum number of segments to use, in [1..4]
int sns_strength; // Spatial Noise Shaping. 0=off, 100=maximum.
int filter_strength; // range: [0 = off .. 100 = strongest]
int filter_sharpness; // range: [0 = off .. 7 = least sharp]
int filter_type; // filtering type: 0 = simple, 1 = strong (only used
// if filter_strength > 0 or autofilter > 0)
int autofilter; // Auto adjust filter's strength [0 = off, 1 = on]
int alpha_compression; // Algorithm for encoding the alpha plane (0 = none,
// 1 = compressed with WebP lossless). Default is 1.
int alpha_filtering; // Predictive filtering method for alpha plane.
// 0: none, 1: fast, 2: best. Default if 1.
int alpha_quality; // Between 0 (smallest size) and 100 (lossless).
// Default is 100.
int pass; // number of entropy-analysis passes (in [1..10]).
int show_compressed; // if true, export the compressed picture back.
// In-loop filtering is not applied.
int preprocessing; // preprocessing filter (0=none, 1=segment-smooth)
int partitions; // log2(number of token partitions) in [0..3]
// Default is set to 0 for easier progressive decoding.
int partition_limit; // quality degradation allowed to fit the 512k limit on
// prediction modes coding (0: no degradation,
// 100: maximum possible degradation).
int use_sharp_yuv; // if needed, use sharp (and slow) RGB->YUV conversion
};
이러한 매개변수의 대부분은 cwebp
명령줄 도구를 사용하여 실험에 액세스할 수 있습니다.
입력 샘플은 WebPPicture
구조로 래핑되어야 합니다.
이 구조는 use_argb
플래그의 값에 따라 입력 샘플을 RGBA 또는 YUVA 형식으로 저장할 수 있습니다.
구조는 다음과 같이 구성됩니다.
struct WebPPicture {
int use_argb; // To select between ARGB and YUVA input.
// YUV input, recommended for lossy compression.
// Used if use_argb = 0.
WebPEncCSP colorspace; // colorspace: should be YUVA420 or YUV420 for now (=Y'CbCr).
int width, height; // dimensions (less or equal to WEBP_MAX_DIMENSION)
uint8_t *y, *u, *v; // pointers to luma/chroma planes.
int y_stride, uv_stride; // luma/chroma strides.
uint8_t* a; // pointer to the alpha plane
int a_stride; // stride of the alpha plane
// Alternate ARGB input, recommended for lossless compression.
// Used if use_argb = 1.
uint32_t* argb; // Pointer to argb (32 bit) plane.
int argb_stride; // This is stride in pixels units, not bytes.
// Byte-emission hook, to store compressed bytes as they are ready.
WebPWriterFunction writer; // can be NULL
void* custom_ptr; // can be used by the writer.
// Error code for the latest error encountered during encoding
WebPEncodingError error_code;
};
이 구조에는 압축된 바이트가 제공될 때 이를 내보내는 함수도 있습니다. 인메모리 작성자가 포함된 예는 아래를 참고하세요.
다른 작성자는 데이터를 파일에 직접 저장할 수 있습니다 (예: examples/cwebp.c
참고).
고급 API를 사용한 인코딩의 일반적인 흐름은 다음과 같습니다.
먼저 압축 매개변수가 포함된 인코딩 구성을 설정해야 합니다. 나중에 여러 이미지를 압축하는 데 동일한 구성을 사용할 수 있습니다.
#include "webp/encode.h"
WebPConfig config;
if (!WebPConfigPreset(&config, WEBP_PRESET_PHOTO, quality_factor)) return 0; // version error
// Add additional tuning:
config.sns_strength = 90;
config.filter_sharpness = 6;
config.alpha_quality = 90;
config_error = WebPValidateConfig(&config); // will verify parameter ranges (always a good habit)
그런 다음 입력 샘플을 참조 또는 복사하여 WebPPicture
에 참조해야 합니다. 다음은 샘플을 보관하기 위한 버퍼를 할당하는 예입니다. 하지만 이미 할당된 샘플 배열에 '뷰'를 쉽게 설정할 수 있습니다. WebPPictureView()
함수를 참고하세요.
// Setup the input data, allocating a picture of width x height dimension
WebPPicture pic;
if (!WebPPictureInit(&pic)) return 0; // version error
pic.width = width;
pic.height = height;
if (!WebPPictureAlloc(&pic)) return 0; // memory error
// At this point, 'pic' has been initialized as a container, and can receive the YUVA or RGBA samples.
// Alternatively, one could use ready-made import functions like WebPPictureImportRGBA(), which will take
// care of memory allocation. In any case, past this point, one will have to call WebPPictureFree(&pic)
// to reclaim allocated memory.
압축된 바이트를 내보내기 위해 새 바이트를 사용할 수 있을 때마다 후크가 호출됩니다. 다음은 webp/encode.h
에 선언된 메모리 작성기를 사용하는 간단한 예입니다. 각 사진을 압축하려면 다음과 같은 초기화가 필요할 수 있습니다.
// Set up a byte-writing method (write-to-memory, in this case):
WebPMemoryWriter writer;
WebPMemoryWriterInit(&writer);
pic.writer = WebPMemoryWrite;
pic.custom_ptr = &writer;
이제 입력 샘플을 압축하고 나중에 메모리를 해제할 수 있습니다.
int ok = WebPEncode(&config, &pic);
WebPPictureFree(&pic); // Always free the memory associated with the input.
if (!ok) {
printf("Encoding error: %d\n", pic.error_code);
} else {
printf("Output size: %d\n", writer.size);
}
API 및 구조를 더 고급으로 사용하려면 webp/encode.h
헤더에서 제공되는 문서를 살펴보는 것이 좋습니다.
샘플 코드 examples/cwebp.c
를 읽으면 사용 빈도가 낮은 매개변수를 찾는 데 유용할 수 있습니다.