I'm trying to take a QR code that I'm using http://fukuchi.org/works/qrencode/index.html.en to create. The encoder creates a black and white PNG, with no alpha layers.
I'm running IM on two different Linux machines, and on one of the boxes (IM version 6.2.8.0),
Code: Select all
convert image.png image.pclCode: Select all
convert image.png image.pclI've tried adding the following options, to no avail.
Code: Select all
convert image.png -monochrome image.pclCode: Select all
convert image.png -background #FFFFFF image.pclCode: Select all
convert image.png -background #FFFFFF00 image.pclCode: Select all
convert image.png -opaque #FFFFFF image.pclCode: Select all
convert image.png -opaque #FFFFFF00 image.pclCode: Select all
convert image.png -fill #FFFFFF image.pclCode: Select all
convert image.png -fill #FFFFFF00 image.pcl