使用非交互式命令反转 PNG 图形文件

发布于 2025-01-02 22:23:20 字数 558 浏览 0 评论 0原文

我正在使用 DruTex,它是一个用于嵌入 Latex 方程的 Drupal 模块。方程的上下文被标记,Latex 解释器将生成一个 PNG 文件:

dvipng -o [IMG_FILE] -D [DPI] -T tight [TMP_DIR]/[HASH].dvi

dvipng 实用程序用于从 Latex 的 DVI 文件生成 PNG。到目前为止,这很好,但我可能需要这些方程的黑色背景和白色前景,因为否则它们很难阅读,因为它们以黑暗主题的方式出现。

convert(来自 Imagemagick)没有 -invert 标志。 dvipng 也没有。那么有没有办法反转png文件呢?我可以在该例程中添加一些内容,例如:

batch_invert -input [IMG_FILE] -out [IMG_FILE]

但是我不知道如何实现它。

I'm using DruTex, which is a Drupal module to embed Latex equations. The context of the equation is marked, and a Latex interpreter will generate a PNG file:

dvipng -o [IMG_FILE] -D [DPI] -T tight [TMP_DIR]/[HASH].dvi

The dvipng utility is used to generate a PNG from Latex's DVI file. That's good so far, but I could need black background and white foreground for these equations, since otherwise they are hard to read, because they appear in a dark-themed way.

convert (from Imagemagick) doesn't have an -invert flag. Neither does dvipng. So is there a way to invert a png file? I can add something to that routine like:

batch_invert -input [IMG_FILE] -out [IMG_FILE]

However I do not know how I can implement that.

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

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

发布评论

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

评论(1

舟遥客 2025-01-09 22:23:20

convert 有一个有效的 -negate 选项。

示例:

convert -negate input.png output.png

convert has a -negate option that works.

Example:

convert -negate input.png output.png

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