Pb 与 ImageMagick 命令

发布于 2024-12-02 02:48:24 字数 341 浏览 1 评论 0原文

我正在尝试将此代码应用到我的“.bat”文件和我的 ASP.net 项目中:

convert checks.png -matte -virtual-pixel transparent -distort Perspective '0,0,0,0  0,90,0,90  90,0,90,25  90,90,90,65' checks_pers.png

问题是结果与原始结果一样,没有可见的转换,但我想要一个 3D 封面。我还尝试了本教程的许多示例,但它们仅适用于扭曲透视?

我安装了这个版本的ImageMagick:ImageMagick-6.7.2-0-Q16-windows-dll

I'm trying to apply this code in my ".bat" file and my ASP.net projet:

convert checks.png -matte -virtual-pixel transparent -distort Perspective '0,0,0,0  0,90,0,90  90,0,90,25  90,90,90,65' checks_pers.png

The problem is that the result is like the original, no transformation to see, but i want to have a 3D Cover. I also tried many examples of the tutorial and they work only the distort Perspective?

I installed this version of ImageMagick : ImageMagick-6.7.2-0-Q16-windows-dll

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

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

发布评论

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

评论(1

情未る 2024-12-09 02:48:24

(从上面OP的评论中提取答案)

在Windows中我们必须使用双引号:

convert checks.png -matte -virtual-pixel transparent -distort Perspective "0,0,0,0  0,90,0,90  90,0,90,25  90,90,90,65" checks_pers.png

(Answer pulled from OP's comment above)

In Windows we must use double quotes:

convert checks.png -matte -virtual-pixel transparent -distort Perspective "0,0,0,0  0,90,0,90  90,0,90,25  90,90,90,65" checks_pers.png
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文