-
public interface WebpTranscoderThe abstraction for WebpTranscoder
-
-
Method Summary
Modifier and Type Method Description abstract BooleanisWebpNativelySupported(ImageFormat webpFormat)abstract UnittranscodeWebpToJpeg(InputStream inputStream, OutputStream outputStream, Integer quality)Transcodes webp image given by input stream into jpeg. abstract UnittranscodeWebpToPng(InputStream inputStream, OutputStream outputStream)Transcodes Webp image given by input stream into png. -
-
Method Detail
-
isWebpNativelySupported
abstract Boolean isWebpNativelySupported(ImageFormat webpFormat)
-
transcodeWebpToJpeg
abstract Unit transcodeWebpToJpeg(InputStream inputStream, OutputStream outputStream, Integer quality)
Transcodes webp image given by input stream into jpeg.
-
transcodeWebpToPng
abstract Unit transcodeWebpToPng(InputStream inputStream, OutputStream outputStream)
Transcodes Webp image given by input stream into png.
-
-
-
-