decodeJpgExif function

ExifData? decodeJpgExif(
  1. Uint8List jpeg
)

Decode only the ExifData from a JPEG file, returning null if it was unable to.

Implementation

ExifData? decodeJpgExif(Uint8List jpeg) => JpegUtil().decodeExif(jpeg);