Convert to PCL

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
rangelmp
Posts: 3
Joined: 2009-08-19T06:51:18-07:00
Authentication code: 8675309

Convert to PCL

Post by rangelmp »

Hi, I try to convert a jpg color image to PCL using:

Code: Select all

convert img.jpg img.pcl
convert img.jpg -colorspace gray imgGray.pcl
convert img.jpg -monochrome imgMono.pcl
All works like a charm to my lexmark and HP printer, but dosen't work to Canon ir5000.

When i send a monochrome pcl file to canon the print invert the colors (black/white).
If I send a color pcl or a color gray pcl file the Canon ir 5000 print a blakc square.

I thinks it's about PCL version, can i change the pcl version when convert a file?

If i send a

Someone have any tip?

Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Convert to PCL

Post by fmw42 »

User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Convert to PCL

Post by magick »

Do you have a recent version of ImageMagick? The latest is 6.5.4-10. Perhaps compression is causing a problem for your Canon printer. Try:
  • convert img.jpg -compress none img.pcl
rangelmp
Posts: 3
Joined: 2009-08-19T06:51:18-07:00
Authentication code: 8675309

Re: Convert to PCL

Post by rangelmp »

Thanks. But i think it's a printer problem i try:

Using monochrome and when i print inver the colors (black/white)

Code: Select all

convert image.png -monochrome image.pcl
Using compress dosen't change anything

Code: Select all

convert img.jpg -compress none img.pcl
If i print in HP or lexmark it's ok, just in canon i have problem so i think it's a printer problem.

Thanks.
Post Reply