Quote in label under windows

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
vav

Quote in label under windows

Post by vav »

I'm trying to convert text with doublequotes using this command:

Code: Select all

convert "label:test\" test" test.png 2>&1
I receive an error:

Code: Select all

convert: no encode delegate for this image format `2>&1'.
I'm using IM 6.2.7 under Windows XP. How should I escape doublequote?
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Post by anthony »

First remove the 2>&1 argument. That is a UNIX shell control, and nothing to do with imageMagick. Now see want it does.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply