Page 1 of 2

Resolution Unit

Posted: 2019-04-24T07:09:21-07:00
by angi_sfj
Hi all,
is it possible to get an output file with resolution unit in inch?
'cause if i set

Code: Select all

DensityUnit.PixelsPerInch
looking with exiftool results in a Resolution Unit : cm.
I know the size is the same, but i need that reading metadata it says inch. Is it possibile to make it sign as Resolution Unit : inches as the original image is?
thankyou

Re: Resolution Unit

Posted: 2019-04-24T09:22:06-07:00
by fmw42
PNG will only show resolution in pixels per centimeter. Pixelsperinch will be converted automatically. Other formats (TIF, JPG) show it in whichever units you specify.

Re: Resolution Unit

Posted: 2019-04-28T14:19:36-07:00
by angi_sfj
thanks for reply,
my output is in jpg but i get a pixel for centimeter resolution.
here is my code, what's wrong?

Code: Select all

using (MagickImage image = new MagickImage(bmp))
{
   image.Settings.Density = new Density(nBmpPrm.dpi, nBmpPrm.dpi, DensityUnit.PixelsPerInch);
   image.AddProfile(ColorProfile.CoatedFOGRA39);
   image.Format = MagickFormat.Jpg;
   image.Write(fullPath);
}
and this is exiftool infos

File Type : JPEG
File Type Extension : jpg
MIME Type : image/jpeg
JFIF Version : 1.01
Resolution Unit : cm
X Resolution : 59
Y Resolution : 59
Profile CMM Type : Adobe Systems Inc.
Profile Version : 2.1.0
Profile Class : Output Device Profile
Color Space Data : CMYK


thank you

Re: Resolution Unit

Posted: 2019-04-28T17:41:26-07:00
by fmw42
Sorry, but I do not know your API. I only use the command line and when I create a new BMP image as follows with density 100 pixelsperinch, it is converted to pixels per cm and sRGB. I suppose BMP only allows that. So far so good.

Code: Select all

convert -size 100x100 gradient:red-blue -colorspace CMYK -units pixelsperinch -density 100 x.bmp

Code: Select all

Image: x.bmp
  Format: BMP (Microsoft Windows bitmap image)
  Class: DirectClass
  Geometry: 100x100+0+0
  Resolution: 39.37x39.37
  Print size: 2.54001x2.54001
  Units: PixelsPerCentimeter
  Colorspace: sRGB
  Type: Palette
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
When I convert it to JPG and specify density of 100 pixelsperinch as follows:

Code: Select all

convert x.bmp -colorspace CMYK -units pixelsperinch -density 100 x.jpg

Code: Select all

  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 100x100+0+0
  Resolution: 254x254  <----- WRONG, should be 100x100
  Print size: 0.393701x0.393701 <----- WRONG, should be 1x1
  Units: PixelsPerInch  <--- CORRECT
  Colorspace: CMYK
  Type: ColorSeparation
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
This is correct units of pixels per inch, but the density/Resolution value is not correct. It still shows the value of 254 (as per pixelspercm, but the units are now pixelsperinch) rather than the original requested 100 pixelsperinch. This appears to be a bug.

Imagemagick 6.9.10.42 Q16 Mac OSX.

It works properly in IM 7.0.8.42 Q16 Mac OSX.

Code: Select all

magick -size 100x100 gradient:red-blue -colorspace CMYK -units pixelsperinch -density 100 x.bmp

Code: Select all

Image: x.bmp
  Format: BMP (Microsoft Windows bitmap image)
  Class: DirectClass
  Geometry: 100x100+0+0
  Resolution: 39.37x39.37
  Print size: 2.54001x2.54001
  Units: PixelsPerCentimeter
  Colorspace: sRGB
  Type: Palette
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit

Code: Select all

magick x.bmp -colorspace CMYK -units pixelsperinch -density 100 x.jpg

Code: Select all

Image: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 100x100+0+0
  Resolution: 100x100  <--- CORRECT
  Print size: 1x1   <--- CORRECT
  Units: PixelsPerInch  <--- CORRECT
  Colorspace: CMYK
  Type: ColorSeparation
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
So here I do get the proper Resolution 100 pixelsperinch.

Re: Resolution Unit

Posted: 2019-04-29T06:54:42-07:00
by magick
The -units option converts units, -set sets units. Try

Code: Select all

magick x.bmp -colorspace CMYK -set units pixelsperinch -density 100 x.jpg

Re: Resolution Unit

Posted: 2019-04-29T10:37:49-07:00
by fmw42
In my case I used -units and it did not convert properly for IM 6, but did so for IM 7. Please look at my results again.

Re: Resolution Unit

Posted: 2019-04-29T12:06:13-07:00
by angi_sfj
and for .NET api?

Re: Resolution Unit

Posted: 2019-04-29T12:11:25-07:00
by dlemstra
You should set `image.Density` instead of `image.Settings.Density` to change the density of an image.

Re: Resolution Unit

Posted: 2019-04-29T12:18:21-07:00
by angi_sfj
dlemstra wrote: 2019-04-29T12:11:25-07:00 You should set `image.Density` instead of `image.Settings.Density` to change the density of an image.
Y Rock!
many thanks

it work as expected

bye

Re: Resolution Unit

Posted: 2019-04-29T23:32:05-07:00
by angi_sfj
another question..
opening it with photoshop color profile results RGB, whili with exiftool seems to bo CMYK .
any ideas?
thankyou

Re: Resolution Unit

Posted: 2019-04-30T02:40:47-07:00
by angi_sfj
angi_sfj wrote: 2019-04-29T23:32:05-07:00 another question..
opening it with photoshop color profile results RGB, whili with exiftool seems to bo CMYK .
any ideas?
thankyou
it give error in opening embedded icc profile .

Re: Resolution Unit

Posted: 2019-04-30T03:13:39-07:00
by snibgo
Commands shown above create a JPG file encoded as CMYK, either with or without an embedded profile.

Photoshop or any GUI editor might convert the encoding to RGB.

Re: Resolution Unit

Posted: 2019-04-30T03:24:40-07:00
by angi_sfj
yes, is converted to rgb.
how to attach an embedded profile?

in another discussion i see that
Notice in the linked example they're converting from a standard CMYK, which means you don't need to load a custom icc profile - the standard CMYK is already in Magick.net, as ColorProfile.USWebCoatedSWOP.
i try with

Code: Select all

image.AddProfile(ColorProfile.USWebCoatedSWOP);
but same result

Re: Resolution Unit

Posted: 2019-04-30T04:08:43-07:00
by snibgo
angi_sfj wrote:but same result
What result? Please paste here the text output from "magick identify -verbose x.jpg".

Re: Resolution Unit

Posted: 2019-04-30T04:42:10-07:00
by angi_sfj
hi,

here is the result

Code: Select all

Image: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2mage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytesmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:mage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:mage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:mage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.orgmage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a0mage: x.jpg
  Format: JPEG (Joint Photographic Experts Group JFIF format)
  Mime type: image/jpeg
  Class: DirectClass
  Geometry: 590x1712+0+0
  Resolution: 150x150
  Print size: 3.93333x11.4133
  Units: PixelsPerInch
  Colorspace: sRGB
  Type: TrueColor
  Base type: Undefined
  Endianess: Undefined
  Depth: 8-bit
  Channel depth:
    Red: 8-bit
    Green: 8-bit
    Blue: 8-bit
  Channel statistics:
    Pixels: 1010080
    Red:
      min: 19  (0.0745098)
      max: 255 (1)
      mean: 176.683 (0.692874)
      standard deviation: 25.38 (0.0995294)
      kurtosis: 4.35277
      skewness: -1.26904
      entropy: 0.812165
    Green:
      min: 8  (0.0313725)
      max: 255 (1)
      mean: 178.316 (0.699277)
      standard deviation: 27.2094 (0.106704)
      kurtosis: 5.79537
      skewness: -1.71296
      entropy: 0.805119
    Blue:
      min: 0  (0)
      max: 255 (1)
      mean: 173.084 (0.678762)
      standard deviation: 29.0695 (0.113998)
      kurtosis: 6.28505
      skewness: -2.04005
      entropy: 0.799689
  Image statistics:
    Overall:
      min: 0  (0)
      max: 255 (1)
      mean: 176.028 (0.690305)
      standard deviation: 27.2196 (0.106744)
      kurtosis: 5.81298
      skewness: -1.73536
      entropy: 0.805658
  Rendering intent: Perceptual
  Gamma: 0.454545
  Chromaticity:
    red primary: (0.64,0.33)
    green primary: (0.3,0.6)
    blue primary: (0.15,0.06)
    white point: (0.3127,0.329)
  Matte color: grey74
  Background color: white
  Border color: srgb(223,223,223)
  Transparent color: none
  Interlace: None
  Intensity: Undefined
  Compose: Over
  Page geometry: 590x1712+0+0
  Dispose: Undefined
  Iterations: 0
  Compression: JPEG
  Quality: 92
  Orientation: Undefined
  Properties:
    date:create: 2019-04-30T11:40:18+00:00
    date:modify: 2019-04-30T09:46:18+00:00
    icc:copyright: Copyright 2000 Adobe Systems, Inc.
    icc:description: U.S. Web Coated (SWOP) v2
    jpeg:colorspace: 2
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.org36bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.org
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.org
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.org
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.org
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.org
    jpeg:sampling-factor: 1x1,1x1,1x1
    signature: fe3b50e529158fdf66bc7ab1a036bd731778f05c8c100da95e49bb438c2f1b27
  Profiles:
    Profile-icc: 557168 bytes
  Artifacts:
    verbose: true
  Tainted: False
  Filesize: 910465B
  Number pixels: 1010080
  Pixels per second: 41.0078MP
  User time: 0.031u
  Elapsed time: 0:01.024
  Version: ImageMagick 7.0.8-42 Q16 x64 2019-04-24 http://www.imagemagick.org