[RSS Feed/News] Need to change from ImageMagick to GD

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
I use an extern script to manipulate pictures from my forum.
I get a picture with curl.

Now i need to change the script to use GD instead of ImageMagick.
These are the parts i have to exchange (there is more code, but not neccessary to show here)

Code:

Code:
    $i = new \Imagick();
    $i->readImage($newFile);

    // crop the image
   ... more code ...

    // thumbnail the image
    $i->ThumbnailImage($width,$height,true);

    $i->writeImage($newFile);


Has someone an idea or a site with...

Read more

ادامه مطلب...
 
Status
Not open for further replies.
Back
Top Bottom