What is the equivalent of this command for PHP?

IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Post Reply
krasho
Posts: 1
Joined: 2016-02-04T12:51:21-07:00
Authentication code: 1151

What is the equivalent of this command for PHP?

Post by krasho »

Hello, my name is Jose Luis.

I have this command:

Code: Select all

convert P1020592.jpg -resize "600x" -unsharp 2x0.5+0.7+0 -quality 98 iseran_s.jpg

And I want to use it from PHP. I am using Imagick Library.

thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: What is the equivalent of this command for PHP?

Post by fmw42 »

You should be able to find equivalent commands at http://us3.php.net/manual/en/book.imagick.php

See:
resizeImage()
unsharpMaskImage()
setImageFormat()
setCompressionQuality
Post Reply