encodeJpegWith function

Future<Uint8List> encodeJpegWith(
  1. ParallelRunner runner,
  2. Image image, {
  3. 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,
);