I was not sure how to describe what was going on in this site but I am looking for direction to do what this web page is doing. I need to be able to have a customer type characters into a text field and then for it to appear on a straight or curved line. Then, if the customer likes it, they can add that info to their order.
Im not looking for any shopping cart info, just the form field to a type on a curve function. Any direction would be greatly appreciated. Anyone interested in doing the program is welcome to email me with a price to do so as well.
I am very poor at math when it comes to writing function for circles etc, so hope you dont need help on that part.
here a very crude sample to give you an idea what to look for. The idea is you have a basic image that your draw letters on. Save it as some temp image and show to the user. If you have a fixed number or maximum number of letters the math gets easy though. So if you could be more specific about your specific need I can come up with something a little more sophisticated. This link is about creating an analog clock. it could also help you further:
Bitmap myBitmap = new Bitmap(Server.MapPath("~/image.jpg"));
Graphics g = Graphics.FromImage(myBitmap);
string s = "s,o,m,e,l,e,t,t,e,r,s";
g.TranslateTransform(100,100, MatrixOrder.Append);
int rotate = 0;
foreach (string letter in s.Split(",".ToCharArray()))
{
g.RotateTransform(rotate);
g.DrawString(letter, new Font("Tahoma", 40), Brushes.Black, new PointF(10, 10));
rotate = rotate + 10;
}
myBitmap.Save(Server.MapPath("~/image4.jpg"));
__________________
Feel free to thank people if they help you by clicking thanks at a post.
=================================
Make it idiot proof and someone will make a better idiot.
=================================
Realise the impotence of proof reading everything you publish