我正在尝试使用imagemagick command-line tools将灰度图像转换为RGB。
PNG图像正常工作,使用:
convert image.png -define png:color-type=2 result.png
(取自"How to convert gray scale png image to RGB from comand line using image magick"的答案)
虽然使用identify -format %r result.png
进行检查仍会返回 DirectClass Gray ,但我可以看到它使用gdalinfo
,因为现在有 3 个频段/频道列出:
gdalinfo [已成功转换PNG]:
Driver: PNG/Portable Network Graphics
Files: result.png
Size is 567, 479
Coordinate System is `'
Image Structure Metadata:
INTERLEAVE=PIXEL
Corner Coordinates:
Upper Left ( 0.0, 0.0)
Lower Left ( 0.0, 479.0)
Upper Right ( 567.0, 0.0)
Lower Right ( 567.0, 479.0)
Center ( 283.5, 239.5)
Band 1 Block=567x1 Type=Byte, ColorInterp=Red
Band 2 Block=567x1 Type=Byte, ColorInterp=Green
Band 3 Block=567x1 Type=Byte, ColorInterp=Blue
但是,似乎-define
option仅适用于PNG图像。
我的问题:如何为JPG图像实现相同的效果?
当我为JPG尝试上述命令时,它不起作用:
convert image.jpg -define jpg:color-type=2 result.jpg
gdalinfo [JPG转换失败]:
Driver: JPEG/JPEG JFIF
Files: result.jpg
Size is 1500, 1061
Coordinate System is `'
Metadata:
EXIF_ColorSpace=1
EXIF_PixelYDimension=2480
...
EXIF_YCbCrPositioning=1
EXIF_YResolution=(300)
Corner Coordinates:
Upper Left ( 0.0, 0.0)
Lower Left ( 0.0, 1061.0)
Upper Right ( 1500.0, 0.0)
Lower Right ( 1500.0, 1061.0)
Center ( 750.0, 530.5)
Band 1 Block=1500x1 Type=Byte, ColorInterp=Gray
Overviews: 750x531, 375x266, 188x133
Image Structure Metadata:
COMPRESSION=JPEG
答案 0 :(得分:9)
PNG颜色类型不适用于JPEG图像,因此您无法使用相同的技术。尝试将色彩空间强制转换为sRGB,和/或将类型设置为TrueColour,这样就不会得到一个palettised图像:
convert input.jpg -colorspace sRGB -type truecolor result.jpg