Photoshop 自动化非常有限,我想到以保留图层和文本的方式导出 PDF,然后激活 PDF 本身的字符回退。 但我找不到任何关于如何做到这一点的文档,你认为这可能吗? PDF 文本是否作为真实文本存在,或者只是带有一些元数据的图像? 我最好修改 Photoshop 使用的字体来添加 UTF-8 表的所有字形吗?
它基本上涉及查看每个字符并查看它是 � 还是 □。 这个脚本可能会有所帮助:
function is_text_a_replacement(s)
{
var m = s.match( /[\u25A0-\u25A1-\u25B6-\u25C0-\u25B2-\u25BC-\uFFFD]/);
if (m != undefined) return true;
return false;
}
alert(is_text_a_replacement("Some text")); // false
alert(is_text_a_replacement("Rectangle char here: □")); // true
alert(is_text_a_replacement("Some text with an unknown char: �")); // true
alert(is_text_a_replacement("Some text with arrows or squares: ▀▲")); // true