PSD 规范帮助
我正在编写一个程序(目前用Python)来读取PSD 文件。我正在使用此规范: http://www.fileformat.info/format/psd/ .htm 这里说
字节名称[]; /* 偶数长度 Pascal 格式字符串,2 个字节或更长 */
嗯,2 个字节或更长?我怎样才能知道它是多少?我也不知道“帕斯卡格式字符串”是什么意思。 提前致谢。
编辑:这是官方 PSD 规范 (pdf) 的直接链接: http://forums.adobe.com/servlet/JiveServlet/download/2923119-45984/Photoshop%20File%20Formats.pdf;jsessionid=21F2DBA32AB9E56882065663C10A1EBF.node0 请参阅第 9 页,“图像资源块”下,
请帮忙。
I'm writing a program (in Python for now) for reading PSD files. I'm using this specification: http://www.fileformat.info/format/psd/egff.htm
Here it says
BYTE Name[]; /* Even-length Pascal-format string, 2 bytes or longer
*/
Um, 2 bytes or longer? How am I supposed to find out how ling it is? I don't know what "Pascal-format string" means either.
Thanks in advance.
EDIT: Heres a direct link to the official PSD specification (pdf): http://forums.adobe.com/servlet/JiveServlet/download/2923119-45984/Photoshop%20File%20Formats.pdf;jsessionid=21F2DBA32AB9E56882065663C10A1EBF.node0
Look in page 9, under "Image Resource Blocks"
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“Pascal 格式字符串”可以表示在第一个位置 IIRC 上编码长度的字符串。
"Pascal-format string" could mean string that have length encoded on first position IIRC.