PHP code for combining images and text and make animation or video
User Ask Questions:
Need PHP script for creating video or gif images, that combine images and text also.
What is the best PHP script for making videos with photos and texts?
I need to make a birthday wishes script. That contains friends' photos and text combine with some animations into a single image or video.
Free Birthday wishes script : Combine photos with text into single image HTML and CSS code below here.
<div style="position:relative; text-align: center;color: blue;"> <p id="borderimg1"> <img width="100%" heght="300" src="photo1.jpg " /> </p> <div style="position:absolute; top:20px; left:20px;"> <img src="bal2.png" /></div> <div style="position:absolute; bottom:20px; right:20px;"> <img src="cake.gif" width="200px" height="150px" /></div> <div style="position:absolute; bottom:5px; right:20px; font-size: 25px"> Happy Birthday Lalith Kumar</div> </div>
and CSS code of above
see below
#borderimg1 {
border: 20px solid transparent;
padding: 1px;
-webkit-border-image: url(RollingBorder.gif) 50 round; /* Safari 3.1-5 */
-o-border-image: url(RollingBorder.gif) 50 round; /* Opera 11-12.1 */
border-image: url(RollingBorder.gif) 50 round;
}
The output of the above code is
In the above image combine 3 images with one text (Happy Birthday Lalith Kumar).
0 Comments:
Post a Comment