Hey all, have an interesting problem here:
Attempting to create a single dynamic image to use as the nav bar on a website. In this navbar, there will be no less than four icons to click on to take the user to different sections of the site.
So, I've gotten to the point where I can construct the entire nav_bar as a .PNG and a .JPG on the fly, according to variables in my database - but now, I want to add links into the navbar.
Is it possible to create an image map from INSIDE the dynamic image generation code? For instance:
header("Content-type: image/png");
//create an image map for the navbar
...
//create the navbar
...
imagePNG($image);
imageDestroy($image);
Any ideas? The object is to get everything stuffed into the img/generator code, so all I would have to call is one single image and it would generate the entire navbar and links. Is this possible?
Take care,
... Christopher @ www.DatingVault.com