Hello DPites, I want to create a website like the following http://www.gifup.com/glitter/ http://www.glittermaker.com/ http://www.glittermakercodes.com/... I knew the task can be accomplished using PHP, JS. But, i want the basic idea .....to begin.....I mean.... 1) If we type the letters in the INPUT FIELD ?? How are the same letters, with space, with hyphens are comming with GLITTER EFFECTS..... 2) How is our image getting saved automatically with a specific URL
I've actually programmed one of these a few years back. If I can recall I accomplished it using the GD library, and a publicly available class for generating GIFs. Basically, I had the user enter some text into a text box. This was passed to my PHP application for basic processing. It would first generate several images of random white dots with a background color of the users choosing. It would then mask each of these images with the users text (and specified font), and then finally would merge all of the images together to create a small animated GIF. Once merged, the random noise appeared to be "glittering". As far as saving, GD has the option to save an image locally on your server. Pretty simple. I can code it for you if you are interested in hiring someone to do the work If not, that's how you would do it!