Forum Moderators: coopster
One of the hardest problems I am having right now is finding an efficient way to create dynamic images on my PHP/MySQL website that will be easy to create ( I want to create images on the fly) and cross-browser compatible.
Of course, dealing with images is always a good thing, because any browser can support it, so I believe I should do this instead of SVG or sIFR, which are not widely supported.
I am aware that if I use PNG images with alpha transparency (which I will! =) ) it will look weird in IE 6 because of the PNG bug, but I can fix this with a javaScript file that can fix it for IE6 users.
I was wondering if any of you know how I can accomplish this? Do you know any good script out there that will let me, for instance, take a font file, store on my server and then deliver to the user the dynamic text in the format of an image (PNG, probably), so that he can see it?
Thank you for your support. Any help is highly appreciated!
Cosmoyoda
But, however, if you want something more advances a quick google search will probably yield someone's already coded solution for you to fiddle with. If you'd like help on a specific image manipulation problem, don't be shy and ask :)
I made several functions such as transparent rounded corners, the only problem I had was the fact that large PNG pictures generated with alpha transparency were very very heavy, too heavy to my taste...
eelixduppy, I wonder how you could do nice transparent rounded corners only using GD images. If you could share a link with a good tutorial or something or let me know if it was too hard to accomplish this it would be a big help! It would be wonderful to stop using Photoshop to create many many images for my site, that would save a lot of time if I could create them dynamically.
Thanks a lot!
This extension is EXPERIMENTAL
When you see those big WARNINGS, you need to take heed. You are correct in that these functions are not well documented or possibly even stable yet, but the WARNING tells you so right off the bat. The best way to employ the functions today is to (carefully) use system commands to manipulate your images. And the best documentation is the Imagick web site itself.
Happy New Year!
[webmasterworld.com...]
[webmasterworld.com...]
Thank you so much for those links. Now I think I have everything I need to start learning PHP with ImageMagick. Thank you!