在一行中运行多个 inkscape 命令

发布于 2024-11-27 02:10:56 字数 486 浏览 0 评论 0原文

是否可以在一个 exec 命令中运行多个命令?我需要从 SVG 文件中获取一些图像,而这个变体太慢了:

exec('inkscape file.svg --export-id=g123 --export-png=img1.png');
exec('inkscape file.svg --export-id=g124 --export-png=img2.png');
exec('inkscape file.svg --export-id=g125 --export-png=img3.png');

所以我需要在一行中完成所有操作。我已经尝试过这个:

exec('inkscape file.svg --export-id=g125 --export-png=img3.png inkscape file.svg --export-id=g123 --export-png=img1.png');

但这只提取最后一张图像。

Is it possible to run multiple commands in one exec command? I need to grab some images from SVG files and this variant is too slow:

exec('inkscape file.svg --export-id=g123 --export-png=img1.png');
exec('inkscape file.svg --export-id=g124 --export-png=img2.png');
exec('inkscape file.svg --export-id=g125 --export-png=img3.png');

So I need to do everything in one line. I've already tried this:

exec('inkscape file.svg --export-id=g125 --export-png=img3.png inkscape file.svg --export-id=g123 --export-png=img1.png');

But this extracts only the last image.

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

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

发布评论

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

评论(3

谁人与我共长歌 2024-12-04 02:10:56

exec() 本身并不慢。但每次调用时,您首先启动 Inkscape,执行操作并再次关闭它。也就是说,需要这么长时间。

不幸的是,Inkscape 没有批处理模式。但是你可以使用Gimp,它可以批量执行相同的操作。

exec() itself is not slow. But with each call, you first start Inkscape, perform the operation and close it again. That is, what takes so long.

Unfortunately, Inkscape doesn't have a batch mode. Bu you could use Gimp, which can do the same operation in batch.

妳是的陽光 2024-12-04 02:10:56

您可以在 shell 模式下运行 Inkscape,并通过向其标准输入写入命令来与其通信。如果您不想在 PHP 中实现它,您可以编写一个简单的 shell 包装器来实现它
为你,例如:

#!/bin/bash
SVG="$1"
shift
(
while [ "$1" != "" ] ; do
  echo "\"--file=$SVG\" \"--export-id=$1\" \"--export-png=$2\""
  shift 2
done
echo "quit"
) | \
  /path/to/inkscape --shell 2>/dev/null

然后像这样使用它

exec("/path/to/wrapper file.svg g123 img1.png g124 img2.png g125 img3.png");

You can run Inkscape in shell mode and communicate with it by writing commands to its stdin. If you don't want to implement it in PHP you could write a simple shell wrapper that does it
for you, e.g:

#!/bin/bash
SVG="$1"
shift
(
while [ "$1" != "" ] ; do
  echo "\"--file=$SVG\" \"--export-id=$1\" \"--export-png=$2\""
  shift 2
done
echo "quit"
) | \
  /path/to/inkscape --shell 2>/dev/null

And then use it like this

exec("/path/to/wrapper file.svg g123 img1.png g124 img2.png g125 img3.png");
十二 2024-12-04 02:10:56

exec() 可能并不慢。服务器/inkscape 很慢。

exec() is probably not slow. Server/inkscape is slow.

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