【Photoshop JS脚本】jsx如何读取二进制
分类专栏: # Photoshop 脚本
最后发布:2020-11-04 11:52:59首次发布:2020-11-04 11:52:59
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
版权
main()
function main()
{
var tmp_file = new File(Folder.desktop+ "/" + "~tmp.psd");
var s = "";
if (!tmp_file.open("r")) { throw("tmp file open error"); }
tmp_file.encoding = "BINARY";
tmp_file.seek(1, 0); //从开始偏移1位
s = tmp_file.read(1); // 读取一位 =B
alert(s)
var x= s.charCodeAt(0); // 获得第0位的字符=B
alert(x)
s = tmp_file.read(4); // 读取4位=PS..
alert(s)
var x= s.charCodeAt(1);// 获得第1位的字符 =S
alert(x)
tmp_file.close();
}
赞 (0)