Hi All,
I'm trying to generate an image from the command line using various key, value pairs and I can't for the life of me get it to take in the values needed.
I have a file called image.php that takes in three images plus a text string and merges them together to form one big image and then saves it to disk. So at the command line i have something like:
c:\php\php image.php?img1=img1.png&img2=img2.png&img3=img3.png&text=some text
Now this works in a html/php page just setting the src in the img tag but when using it at the command line I get no results at all!
I've tried hard coding the variables in to the image.php file and this does work but the problem is I don't want hard coded values, just dynamic ones...
I'm doing this because I'm trying to get the image generated from php to a com component.
Cheers
WeeB