jaymc Posted September 19, 2006 Share Posted September 19, 2006 I want to use PHP's image functions to manipulate an image, put text on it for example then save that image on the serverHow do you save? Quote Link to comment https://forums.phpfreaks.com/topic/21282-image-how-do-you-save/ Share on other sites More sharing options...
zq29 Posted September 19, 2006 Share Posted September 19, 2006 If your creating a Jpeg for example, you'd do it like so:[code]<?phpimagejpeg($im,"path/to/file/image.jpg");?>[/code]Check the manual page for the imagejpeg() function for more info. Quote Link to comment https://forums.phpfreaks.com/topic/21282-image-how-do-you-save/#findComment-94666 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.