Mercurial > hg > Game > Cerium
view bin/get_xml_image.pl @ 1876:5e17ab506299 draft
change CPU_TYPE SPE_ANY to IO/0 ( cannot running )
author | Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 30 Dec 2013 20:52:21 +0900 |
parents | 3e1caef39798 |
children |
line wrap: on
line source
#!/usr/bin/perl use MIME::Base64; my $image; my $buf; while(<>) { if (/<image name="(.*)">/) { $image= $1; $buf = ''; } elsif (/<\/image>/ ) { open(OUT, ">/tmp/$image") ; print OUT decode_base64($buf); $image = ''; } elsif ($image) { $buf .= $_; } }