【Photoshop JS脚本】jsx如何读取二进制

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

 


(0)

相关推荐