I've been scratching my head over this all day. I need to dynamically create an image that contains a string provided by the client. The only problem is, the string needs to be drawn along a curve like the image below. I would also like to specify the angle of the curve because this text needs to be displayed on a number of products, and the curve varies on each product.
I've attempted to loop through the string and display each character and give each one a specific coordinate to resemble a parabola, but in order for that to be useful, each character needs to be rotated to fit the curve. Does anyone have any suggestions from the System.Drawing library that may be of use to me?