7 Star 0 Fork 0

OpenCloudOS Stream/zinnia

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tomoe2s.pl 711 Bytes
一键复制 编辑 原始数据 按行查看 历史
ocs-bot 提交于 2024-05-06 15:59 . package init
#!/usr/bin/perl
use utf8;
my $value;
my $stroke;
my $strokes;
while (<>) {
if (/<character>/) {
while (<>) {
if (/<utf8>([^<]+)<\/utf8>/) {
$value = $1;
$value =~ s/^&#x//;
$value = pack("U", hex($value));
utf8::encode($value);
$stroke = "";
$strokes = "";
} elsif (/<point x=\"(\d+)\" y=\"(\d+)\"/) {
my $x = $1;
my $y = $2;
# print "$x $y\n";
$stroke .= "($x $y)";
} elsif (/<\/stroke>/) {
$strokes .= "($stroke)";
$stroke = "";
} elsif (/<\/character>/) {
if ($value !~ /[\(\)]/) {
print "(character (value $value)(width 1000)(height 1000)(strokes $strokes))\n";
}
$value = "";
last;
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/opencloudos-stream/zinnia.git
git@gitee.com:opencloudos-stream/zinnia.git
opencloudos-stream
zinnia
zinnia
master

搜索帮助