在 Ghostscript 上:创建空白 .tif 文档的最快方法

发布于 2024-07-07 08:42:02 字数 139 浏览 7 评论 0原文

旧版后端需要带有 .tif 文档的电子邮件正文,如果没有 tif,则会失败。 所以我需要生成一个空白的 .tif,有没有一种快速的方法可以使用 Ghostscript 来做到这一点?


编辑:在项目安装中制作一次,在我需要时使用。

A legacy backend requires the email body with a .tif document, no tif and it fails. So i need to generate a blank .tif, is there a fast way to do this with ghostscript?


edit: make once in project installation use when i need it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梅倚清风 2024-07-14 08:42:02

以下行将生成 1 像素 Tiff 文件(340 字节)。 这是我能得到的最小的 Tiff 文件。

gswin32c.exe -q -dNOPAUSE -sDEVICE=tiffpack -g1x1 -sOutputFile=small.tif -c newpath 0 0 moveto 1 1 lineto closepath stroke showpage quit

实际上,您甚至可以将命令减少为:

gswin32c.exe -q -dNOPAUSE -sDEVICE=tiffpack -g1x1 -sOutputFile=small.tif -c showpage quit

没有大小增益,唉。

The following line will produce a 1 pixel Tiff file (340 bytes). That's the smallest Tiff file I could get.

gswin32c.exe -q -dNOPAUSE -sDEVICE=tiffpack -g1x1 -sOutputFile=small.tif -c newpath 0 0 moveto 1 1 lineto closepath stroke showpage quit

Actually, you can even reduce the command to:

gswin32c.exe -q -dNOPAUSE -sDEVICE=tiffpack -g1x1 -sOutputFile=small.tif -c showpage quit

without size gain, alas.

场罚期间 2024-07-14 08:42:02

难道您不能制作一次空白 .tif 文件,然后在每次需要时附加相同的文件吗?

Couldn't you make your blank .tif file once and then attach the same file every time it is needed?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文