Hi all,
I coded a small tool.
The tool creates images and writes whatever text the user submits onto those images.
In a nutshell it works like this:
USER enters a text into the <input type="text"> field and submits the form.
my script then creates an image and uses imagettftext() to write the text onto the image.
now the whole page is displayed again, only this time the input field contains the last USER input and of course the image can be downloaded.
Now my problem:
I have to support most of the european languages, and I am totally not into all that unicode/charset/encoding stuff.
I don't even know all the hungarian or spanish letters 😉, but never the less I need to get those letters onto my images.
How can I make sure that every text a user from country XYZ inputs is displayed correctly on the image?
I would really appreciate any advice !
Thanks.