UNSOLVED: Dynamically changing colors and resizing image
Well, here's my problem. I have a GIF image that has black and white.
I need to be able to use $_GET['black'] and $_GET['white'] (or something like that) to get two user-submitted hex triplets (with leading #).
Then replace all black in the image with $_GET['black'] and all white with $_GET['white'].
Then I have to resize the image to predefined (larger) dimensions using a bicubic method (as to create a gradient).
Finally, I have to send the finished image to the user as a GIF.
Then I have to repeat the process for multiple users (at once?).
I know I'll probably have to install some sort of image library, like ImageMagick or GD.
I don't know how to do this. I have very little experience with PHP, let alone PHP extensions.
Is there any way to do this on a remote server? If so, how? If not, now what?