Hi Folks,
Has anyone here used PHP to manipulate large vector graphics?
Basically, what I want is to create a PHP function as follows:
drawImage (filename, x, y, width, height, hres, vres)
This will open the image stored in filename, it will then create a "slice" of that image of widthxheight pixels, centred on x,y. The resolution of this image will be as dictated by hres and vres.
Thus, by adding to / subtracting from x and y, I can scroll about the image. And by adding to / subtracting from hres and vres, I can zoom in or out of the image.
I could do this using a gif image, but obviously, zooming would be a problem. So, I'd like to use a vector-based format.
Any ideas? tips? leads?
Thanks in advance,
Jack