Click here to Skip to main content
15,867,956 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a form in jpeg format. I create a form using html. now I want to put the valu of html form to the jpeg image format form on their exact position of the jpeg image format.

What I have tried:

example
suppose I want to create a school marksheet. the markshet is in jpeg format which I insert to an html page. now I have created a html form which only have the value of subject. now when i click submit button of the form it redirect that html page and the valu of the form put on the marksheet on their correct position. how can I create this. Please help me.
Posted
Updated 30-Jun-16 17:47pm
Comments
Beginner Luck 30-Jun-16 20:45pm    
use CSS call Background-image and CSS background Property

1 solution

In HTML if you want to put some content on a specific position then you need to use CSS property like:
CSS
position:absolute; 

and then the find the left and top coordinates of the content in the picture. I assume some coordinates like:
CSS
left:20px;
top:50px;


In this way you can get the results..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900