Generating a Strip of Malayaalam Characters

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
libin_v

Generating a Strip of Malayaalam Characters

Post by libin_v »

Hi all,

I am trying to generate a strip of Malayalam characters, using Imagemagick

I tried using the following, but I get only "???".

############ uni.pl
#! /usr/bin/perl

binmode(STDOUT, ":utf8");
print "\x{0D10}\x{0D20}\x{0D30}";

###################

$ perl uni.pl | convert -font ML-TTKarthika-Normal label:@- label.gif

Unicode = http://unicode.org/charts/PDF/U0D00.pdf
Font = http://www.deepika.com/font.htm

Please help

--
Regards,
Libin
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Generating a Strip of Malayaalam Characters

Post by anthony »

Question marks usually means the font did NOT understand the unicode.

Are you sure the font is available and has those characters?

As you did not specify the fonts TTF file directly, did you actually add it to the IM configuration files?

Try adding -debug annotate to see how IM is handling the font and character rendering.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply