From: M. David <davidm1@hotmail.com>
> Perhaps its an overly simple solution- but you could replace the emoji
with
> graphics, .... Has anyone built a conversion table?
If the output is to be viewed thru iMode, conversion to graphics might be
too heavy. However, I am doing an "iMode to Web" project which performs just
such a conversion. It doesn't use a table, but rather (Perl):
$emo_prx = "<img src=/emoji/";
$emo_sux = ".gif width=15 border=0>";
$page =~ s/(?(\d{3})\;?)/$emo_prx$2$emo_sux/g;
which converts 驪 to <img src=/emoji/879.gif width=15 border=0>
You can see it in the "iMode Previewer" (_NOT_ emulator!) at
http://eirmode.com/desktop.html
Rgds
Norman
[ Did you check the archives? http://www.appelsiini.net/keitai-l/ ]
Received on Tue Jan 16 14:16:13 2001