On a completely different topic, I'm having a little argument discussion with Guy Parsons regards what we see when reviewing images on the LCD screen of the camera when shooting RAW only on Sony cameras. Guy has got a silly idea into his head that we are only seeing the small embedded jpeg that's included with the RAW file. On the other hand, I am 100% certain we are seeing a full-res jpeg. Especially as I did a little experiment whereby I took a RAW only shot quickly followed by a jpeg only shot of the same subject. I reviewed both images in play mode on the camera LCD at 100% zoom and they were both identical. Of course, I told Guy this but he still won't have it!
I tried Googling this but can't find any official answer. Just the odd posts on DPReview. It seems most people are of the same mind as Guy on the subject. Which is very strange to me. For instance, how the devil could you check for the subject being in true focus on the small embedded jpeg? How could you check image quality, sharpness, noise etc etc?
Well, it's easy to find out, isn't it? Just swap the preview in a raw file for that of a completely different photograph (it's usually a matter of EXIF manipulation to do that with most raw files).
The usual thing for cameras is to display the preview when leafing through and replace it by the real thing when zooming in. You usually get some delay when zooming in and it would be absurd to think that the camera needs significant time to scale images (it does that all the time, like when creating lower-res shots which speeds it up rather than slows it down). Instead, that's the time for reading the data from the media.
Yes, Sony cameras creates an instant full-res JPEG from RAW-only files. I don't think any other manufacturers do this.
It's not just with raw files: JPEG files also tend to work from preview first, full file as needed.
I'm not sure if that's true. What preview would it be accessing?
The same one file browsers use. Often JPEGs include
both a Thumbnail and a Preview as separate EXIF items, the thumbnail at a size useful for icons, and the Preview at about VGA resolution. When file browsers offer a directory view of JPEG files, they are usually just accessing the thumbnails or previews rather than decoding and reducing the full files. Particularly when using cardreaders (more often than not working in comparatively slow USB and/or card modes).
If I use exiftool on one of my really old DSC-R1 raw images _DSC9746.SR2, I have fields
Preview Image : (Binary data 134338 bytes, use -b option to extract)
Thumbnail Image : (Binary data 24085 bytes, use -b option to extract)
either of which are JPEGs, 640×424 and 160×120, respectively. The corresponding JPG file contains
Thumbnail Image : (Binary data 15820 bytes, use -b option to extract)
so it does not have the (usually) VGA-size preview and a (lower-quality?) thumbnail, again at 160×120. I'd have posted them, but happened to get a picture involving personality rights.
You can extract preview and thumbnail and just the thumbnail with commands like
exiftool -b -PreviewImage _DSC9746.SR2 >/tmp/pr.jpg
exiftool -b -ThumbnailImage _DSC9746.SR2 >/tmp/th1.jpg
exiftool -b -ThumbnailImage _DSC9746.JPG >/tmp/th2.jpg