isJpeg function

bool isJpeg(
  1. Uint8List bytes
)

Returns true if bytes starts with JPEG SOI marker FF D8 FF.

Implementation

bool isJpeg(Uint8List bytes) {
  if (bytes.length < 4) return false;
  return bytes[0] == 0xFF && bytes[1] == 0xD8 && bytes[2] == 0xFF;
}