开发者

Pb with ImageMagick command

开发者 https://www.devze.com 2023-03-31 07:23 出处:网络
I\'m trying to apply this code in my \"开发者_Go百科.bat\" file and my ASP.net projet: convert checks.png -matte -virtual-pixel transparent -distort Perspective \'0,0,0,00,90,0,9090,0,90,2590,90,90,6

I'm trying to apply this code in my "开发者_Go百科.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


(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
0

精彩评论

暂无评论...
验证码 换一张
取 消