The two images are identical in pixel data.
Code: Select all
compare -metric rmse logosrc.png sample.png null:
0 (0)
Code: Select all
identify logosrc.png sample.png
logosrc.png PNG 197x201 197x201+0+0 8-bit sRGB 16.3KB 0.000u 0:00.000
sample.png PNG 197x201 197x201+0+0 8-bit sRGB 14.7KB 0.000u 0:00.000
The IM converted file may be slightly smaller size, because its zip compression may more efficient than the result from whatever tool you used
The IM converted file has three extra PNG meta tags:
Code: Select all
png:bKGD: chunk was found (see Background color, above)
png:cHRM: chunk was found (see Chromaticity, above)
png:gAMA: gamma=0.45454544 (See Gamma, above)
So perhaps a different version of libpng was used. What tool created your original PNG?
Try adding an sRGB profile to each and see if they view the same. When I do:
Code: Select all
convert logosrc.png -profile /Users/fred/images/profiles/sRGB.icc logosrc_prof.png
convert sample.png -profile /Users/fred/images/profiles/sRGB.icc sample_prof.png
then they view the same.