Comment savoir si mon image est CMJN à partir de la ligne de commande Linux?


Réponses:


21

La manière simple d'obtenir ces informations est d'utiliser la identifycommande du package ImageMagick , essayez:

$ identify -format '%[colorspace]' image.jpg

Les guillemets «simples» ne sont pas nécessaires et pour moi, cela a mieux fonctionné sans eux
isapir Il y a

8

identifyfait partie du jeu d'outils ImageMagick .

$ identify -verbose foo.jpg | grep Colorspace
  Colorspace: CMYK
$ identify -verbose foo.jpg
Image: foo.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Class: DirectClass
  Geometry: 3872x2592+0+0
  Resolution: 72x72
  Print size: 53.7778x36
  Units: PixelsPerInch
  Type: ColorSeparation
  Endianess: Undefined
  Colorspace: CMYK
  Depth: 8-bit
  Channel depth:
    cyan: 8-bit
    magenta: 8-bit
    yellow: 8-bit
    black: 8-bit
  Channel statistics:
    Cyan:
      min: 0 (0)
      max: 255 (1)
      mean: 65.169 (0.255565)
      standard deviation: 57.6369 (0.226027)
      kurtosis: 0.308901
      skewness: 1.17232
    Magenta:
      min: 0 (0)
      max: 255 (1)
      mean: 67.0774 (0.263049)
      standard deviation: 47.216 (0.185161)
      kurtosis: 1.37996
      skewness: 0.914289
    Yellow:
      min: 0 (0)
      max: 255 (1)
      mean: 117.456 (0.46061)
      standard deviation: 70.6394 (0.277017)
      kurtosis: -1.07218
      skewness: -0.180885
    Black:
      min: 0 (0)
      max: 239 (0.937255)
      mean: 40.826 (0.160102)
      standard deviation: 49.258 (0.193168)
      kurtosis: 1.56001
      skewness: 1.50352
  Image statistics:
    Overall:
      min: 0 (0)
      max: 255 (1)
      mean: 58.1056 (0.227865)
      standard deviation: 63.7107 (0.249846)
      kurtosis: 0.0487218
      skewness: 1.03517
  Total ink density: 331%
  Rendering intent: Undefined
  Interlace: None
  Background color: white
  Border color: cmyk(223,223,223,0)
  Matte color: grey74
  Transparent color: black
  Compose: Over
  Page geometry: 3872x2592+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 80
  Orientation: Undefined
  Properties:
    date:create: 2011-12-23T13:00:23+00:00
    date:modify: 2011-12-23T13:00:23+00:00
    jpeg:colorspace: 4
    jpeg:sampling-factor: 2x2,1x1,1x1,1x1
    signature: 972c47bd4a83e6561f2ddd65c2a5ca217ea06955814815bfb9d35ccd6b83fec2
  Profiles:
    Profile-icc: 1829040 bytes
      ISO Coated v2 (ECI)
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 3.968MB
  Number pixels: 10.04MB
  Pixels per second: 21.35MB
  User time: 0.460u
  Elapsed time: 0:01.469
  Version: ImageMagick 6.6.0-4 2010-10-20 Q16 http://www.imagemagick.org

1
+1 Comme cette méthode donne aux nouveaux utilisateurs une impression des autres informations qui pourraient être interrogées et identifiées
math

5

Sous Mac OS X, vous pouvez utiliser

sips -g space <filename>

Exemple:

$ sips -g space file.jpg 
/path/to/file.jpg
  space: RGB

Ou, en imprimant uniquement les informations pertinentes:

$ sips -g space file.jpg | tail -n1 | awk '{print $2}'
RGB

Merci! Je suis sur Ubuntu. Je ne vois pas de gorgées dans le référentiel apt.
Eric Johnson

@EricJohnson Ubuntu n'est pas Unix. Mais Mac OS X l'est. Je vais garder cette réponse, cela pourrait aider les autres.
Daniel Beck

Juste pour préempter les votes négatifs: lorsque j'ai posté cette réponse à l'origine, la question était très différente et cette réponse était appropriée.
Daniel Beck

2

J'ai pu le faire avec la bibliothèque Image :: Info de Perl . Voici le liner que j'ai utilisé sur la ligne de commande:

perl -MImage::Info -E 'say Image::Info::image_info("foo.jpg")->{color_type};'

(Évidemment, cela nécessite que la bibliothèque soit déjà installée.)

En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.