Reputation: 134
i want to know how can i generate image dynamically from content and also from existing image
as i know we can add sting to dynamically generated image in php
so actually i want to make image that contains existing image as well as content.
Upvotes: 0
Views: 125
Reputation: 40794
Read through the manual pages about the GD extension to learn how to use it to create and manipulate images.
But basically, to copy an image onto another, load it using one of the imagecreatefrom*()
functions, such as imagecreatefromjpeg()
or imagecreatefromgif()
, and use the imagecopy()
function.
Upvotes: 1