encodeJpegWith function
Future<Uint8List>
encodeJpegWith(
- ParallelRunner runner,
- Image image, {
- JpegEncodeOptions? options,
Encodes image as a baseline JPEG through runner.
Implementation
Future<Uint8List> encodeJpegWith(
ParallelRunner runner,
Image image, {
JpegEncodeOptions? options,
}) => encodeJpgWith(
runner,
image,
options: options,
);