I would like to turn a .txt file into image like png.
How to make it possible by gd in php? Would you kindly show me how this would be achieved
I would like to turn a .txt file into image like png.
How to make it possible by gd in php? Would you kindly show me how this would be achieved
There is no one-shot-kill function to do this.
PHP GD is a big library. You have to go through a few steps:
The tricky part I previously referenced is calculating the size of the needed image based on the amount of text in the *.txt file and on the font sizes per letter, per row etc..
The second tricky part is calculating the positioning of the text in the image so as to not overflow the image boundaries.