in reply to Re: Outputting Unicode to DOS
in thread Outputting Unicode to DOS
The console (now) correctly outputs the string I want to the console...use utf8; use Encode 'encode'; my $str = "convert -size 100x25 -background white -fill black -pointsi +ze 25 label:ÄÖÜß ÄÖÜß.gif\n"; print encode cp850 => $str; system encode cp850 => $str;
convert -size 100x25 -background white -fill black -pointsize 25 label +:ÄÖÜß ÄÖÜß.gif
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Outputting Unicode to DOS
by aitap (Curate) on Aug 29, 2015 at 13:49 UTC | |
Re^3: Outputting Unicode to DOS
by BrowserUk (Patriarch) on Aug 28, 2015 at 12:35 UTC |