This one is the original image
http://www.fotoporto.de/imagemagick/search.png
identify -verbose shows this
Code: Select all
Format: PNG (Portable Network Graphics)
Class: DirectClass
Geometry: 17x17+0+0
Resolution: 72x72
Print size: 0.236111x0.236111
Units: Undefined
Type: Bilevel
Base type: Bilevel
Endianess: Undefined
Colorspace: RGB
Depth: 8-bit
...
This one comes out, when i use rgba(68,68,68,0.0)
http://www.fotoporto.de/imagemagick/search_gray.png
identify -verbose shows this
Code: Select all
Format: PNG (Portable Network Graphics)
Class: DirectClass
Geometry: 17x17+0+0
Resolution: 72x72
Print size: 0.236111x0.236111
Units: Undefined
Type: GrayscaleMatte
Base type: GrayscaleMatte
Endianess: Undefined
Colorspace: Gray
Depth: 8-bit
...
This one is a grayscaled graphic, when i open it in Photoshop. In Browser it looks right.
And finally this one comes out, when i use rgba(156,222,250,0.0)
http://www.fotoporto.de/imagemagick/sea ... htblue.png
identify -verbose shows this
Code: Select all
Format: PNG (Portable Network Graphics)
Class: DirectClass
Geometry: 17x17+0+0
Resolution: 72x72
Print size: 0.236111x0.236111
Units: Undefined
Type: Bilevel
Base type: Bilevel
Endianess: Undefined
Colorspace: Gray
Depth: 8-bit
...
This one is an indexed graphic with no antialiasing, when i open it in Photoshop. In Browser it looks right.
It looks like this
http://www.fotoporto.de/imagemagick/sea ... toshop.png
Both should be PNG 24 RGB not grayscaled and not indexed.