Search found 12 matches

by Defacta
2018-08-08T07:21:43-07:00
Forum: IMagick
Topic: Transform image perspective
Replies: 2
Views: 42223

Re: Transform image perspective

Wonderful! Thanks, didn't know this website.
:-D
by Defacta
2018-08-08T05:33:43-07:00
Forum: IMagick
Topic: Transform image perspective
Replies: 2
Views: 42223

Transform image perspective

Hello,

How to transform a flat image through perspective like this:
Image

Which function should I use ?

Thanks,
Vincent.
by Defacta
2018-01-16T05:53:42-07:00
Forum: IMagick
Topic: Ubuntu 16, upgrade 6.8.9-9 to 6.9.3-10
Replies: 0
Views: 19805

Ubuntu 16, upgrade 6.8.9-9 to 6.9.3-10

Hello, I installed imagemagick on my Ubuntu 16.04 server with this easy command: apt-get install php-imagick Everything is installed with good dependencies. But I would like to install the version 6.9.3. I can't do that with apt and I tried to do it with dpk by downloading files here: https://www.ub...
by Defacta
2017-04-26T10:38:22-07:00
Forum: IMagick
Topic: Imagick not working any more after a reboot of Windows 10
Replies: 5
Views: 25394

Re: Imagick not working any more after a reboot of Windows 10

Ok, found and well stay close on your seat! :shock: It was because of GraphicsMagick http://www.graphicsmagick.org/ which I installed last week after php Imagick, I didn't restarted Apache from this GraphicsMagick installation. So what I did is : I uninstalled GraphicsMagick, Imagemagick and I reins...
by Defacta
2017-04-26T10:03:38-07:00
Forum: IMagick
Topic: Imagick not working any more after a reboot of Windows 10
Replies: 5
Views: 25394

Re: Imagick not working any more after a reboot of Windows 10

Yes, Imagemagick is working fine, this convert command worked: convert canvas1.png -resize 1000x1000 here.png I tried to download another php_imagick.dll which is in the folder C:\xampp\php\ext and now I have another error message: the procedure entry point PixelGetAlphaQuantum could not be located ...
by Defacta
2017-04-26T09:41:26-07:00
Forum: IMagick
Topic: Imagick not working any more after a reboot of Windows 10
Replies: 5
Views: 25394

Imagick not working any more after a reboot of Windows 10

Hello, Pretty strange, everything was working fine for my installation of Imagick and after a reboot of my computer I now have the error when I start Apache from xampp: the procedure entry point PixelGetFuzz could not be located in the dynamic link library c:\xampp\php\ext\php_imagick.dll I don't kn...
by Defacta
2017-04-20T12:34:27-07:00
Forum: IMagick
Topic: Equivalent of ImageMagick gradient for php Imagick
Replies: 5
Views: 19211

Re: Equivalent of ImageMagick gradient for php Imagick

Yes, by rotating it. Thanks for the help :)
by Defacta
2017-04-20T11:40:10-07:00
Forum: IMagick
Topic: Equivalent of ImageMagick gradient for php Imagick
Replies: 5
Views: 19211

Re: Equivalent of ImageMagick gradient for php Imagick

Oh, ok thanks. It's working for: $imgLine->newPseudoImage(500, 500, 'gradient:#cbcbcb-#94938f'); But not for: $imgLine->newPseudoImage(500, 500, 'gradient:direction=east gradient:#cbcbcb-#94938f'); Same code with direction from https://www.imagemagick.org/script/gradient.php I get the error message:...
by Defacta
2017-04-20T11:02:21-07:00
Forum: IMagick
Topic: Equivalent of ImageMagick gradient for php Imagick
Replies: 5
Views: 19211

Equivalent of ImageMagick gradient for php Imagick

Hello, I looked for the equivalent of gradient for Imagick at http://php.net/manual/en/class.imagickpixel.php and at http://php.net/manual/en/class.imagick.php with no success. What is the equivalent of convert -size 128x128 gradient:"rgba(255,0,0,0)-rgba(255,0,0,1)" 1.png for php Imagick?...
by Defacta
2017-04-19T16:29:53-07:00
Forum: Users
Topic: Using clone instead of created temp images
Replies: 4
Views: 9420

Re: Using clone instead of created temp images

Ok, much more rapid without creating any temp image it generates frames in less than 1 sec. I didn't get the shadow I wish on the top left. I have to check how to cover the white corner : http://www.cjoint.com/doc/17_04/GDtxCegggde_10.jpg Here is the code, maybe it will help someone: $timeStart = mi...
by Defacta
2017-04-19T14:59:20-07:00
Forum: Users
Topic: Using clone instead of created temp images
Replies: 4
Views: 9420

Re: Using clone instead of created temp images

Thanks for your help,
I thought I can't do what I did with php Imagick but apparently each step I did is possible through php Imagick objects.
by Defacta
2017-04-19T11:14:44-07:00
Forum: Users
Topic: Using clone instead of created temp images
Replies: 4
Views: 9420

Using clone instead of created temp images

Hello, I am new to Imagemagick, just installed it yesterday and I find it a little bit complicated. :) I have cut with Gimp a frame into 8 pieces : - top-left.png - top-middle.png - top-right.png - right-middle.png - bottom-right.png - bottom-middle.png - bottom-left.png - left-middle.png You may fi...