We can also saveRAW images, as used by major DSLR/mirrorless cameras, by extending the list of files types in: files.dart.
const List<String> imageFormats = [
'.jpeg',
'.png',
'.jpg',
'.cr2',
'.cr3',
'.nef',
'.arw',
'.gif',
'.webp',
'.tif',
'.heic',
'.avif'
];
with RAW formats:
.cr2: older Canon cameras
.cr3: Canon RAW images
.nef: Nikon RAW images
.arw: Sony RAW images
Android/iOS should even be able to handle many more RAW formats. So far, I was only able to test these formats
Details
We can also save
RAWimages, as used by major DSLR/mirrorless cameras, by extending the list of files types in: files.dart.with
RAWformats:.cr2: older Canon cameras.cr3: CanonRAWimages.nef: NikonRAWimages.arw: SonyRAWimagesAndroid/iOS should even be able to handle many more RAW formats. So far, I was only able to test these formats
Details