JPEG colorspace confusion
Posted: 2017-04-01T09:35:14-07:00
Let's say I have two JPEG images
two.jpg has an explicit sRGB profile, so I assume that the data is sRGB encoded.
What about one.jpg? As I understand it, sRGB is the default so its data should also be sRGB encoded, correct?
What has me confused is that colorspace is listed as RGB in both cases.
MV
Code: Select all
$ identify -verbose one.jpg
Image: one.jpg
Format: JPEG (Joint Photographic Experts Group JFIF format)
Class: DirectClass
Geometry: 3264x2448+0+0
Resolution: 72x72
Print size: 45.3333x34
Units: PixelsPerInch
Type: TrueColor
Endianess: Undefined
Colorspace: RGB
Depth: 8-bit
...
Profiles:
Profile-exif: 31420 bytes
...
Version: ImageMagick 6.6.9-7 2017-03-14 Q16 http://www.imagemagick.org
Code: Select all
$ identify -verbose two.jpg
Image: two.jpg
Format: JPEG (Joint Photographic Experts Group JFIF format)
Class: DirectClass
Geometry: 320x240+0+0
Resolution: 72x72
Print size: 4.44444x3.33333
Units: PixelsPerInch
Type: TrueColor
Endianess: Undefined
Colorspace: RGB
Depth: 8-bit
...
Profiles:
Profile-8bim: 3602 bytes
Profile-icc: 3144 bytes
IEC 61966-2.1 Default RGB colour space - sRGB
...
Version: ImageMagick 6.6.9-7 2017-03-14 Q16 http://www.imagemagick.org
What about one.jpg? As I understand it, sRGB is the default so its data should also be sRGB encoded, correct?
What has me confused is that colorspace is listed as RGB in both cases.
MV