Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Adding Copyright (C) symbol to an image using Image::Magick

by MaxKlokan (Monk)
on Dec 04, 2006 at 11:50 UTC ( [id://587624]=note: print w/replies, xml ) Need Help??


in reply to Adding Copyright (C) symbol to an image using Image::Magick

0xa9 is already an HEX number, you should not try to convert it with hex().
For example:
perl -e "$text=chr(0xa9); print $text"
outputs:
©

while the following:
perl -e "$text=chr(hex(0xa9)); print $text"
outputs:
Wide character in print at -e line 1.
┼©

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://587624]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (7)
As of 2024-03-28 18:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found