fast_webp_compress method

CompressedImageResult fast_webp_compress(
  1. Pointer<Char> input_path,
  2. int quality
)

Fast WebP compression for speed-critical applications

Implementation

CompressedImageResult fast_webp_compress(
  ffi.Pointer<ffi.Char> input_path,
  int quality,
) {
  return _fast_webp_compress(input_path, quality);
}