At the command line, the following creates a white image in PNG format with the desired bit depth and color type for my application: convert -size 500x500 -type TrueColor -define png:color-type=2 canvas:white ick.png How do I do the same with PerlMagick? The following doesn't work, because libpng ...