Returns true when bytes is a supported PNG or JPEG carrier image.
true
bytes
bool isSupportedCarrierImage(Uint8List bytes) { return isPng(bytes) || isJpeg(bytes); }