Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php wrapper class for gd

Tags:

php

wrapper

gd

Can anyone recommend a wrapper class for the gd library?

I've found a few, but they just have basic image manipulation functions, such as flipping, reversing, etc.

I am really drawing here, so I want all the line, point, geometric figure, and color functions. And a basic palette, so I don't have to go through the hassle of defining basic colors all the time :Þ

Edit: My webhost doesn't have 5.3 available. Surely there must be a class that doesn't rely on 5.3 features?

like image 386
user151841 Avatar asked Mar 02 '11 01:03

user151841


1 Answers

Imagine is an OO wrapper for GD and Imagick. It abstracts out the need for GD or Imagick specific image manipulation code for alot of the basic (and some advanced) functions.

like image 177
Kendall Hopkins Avatar answered Sep 26 '22 02:09

Kendall Hopkins