BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Ljubomir,
Thank you for your interest in Syncfusion Products.
Yes, we can able to print the text vertically using RotateTransform, please use the below code snippet.
page.Graphics.RotateTransform(-90);
page.Graphics.DrawString("Syncfusion", font, PdfBrushes.Black, new PointF(-150, 150));
Below is the Online sample link for stamping the text with inclined.
Please let us know if you need further assistance.
Thanks,
Karthikeyan.C
Hi Eric,
Thank you for your update.
Please find the coordinate system after applying RotateTransform below.
Rotate Transformation |
Coordinate System |
Code Snippet |
RotateTransform(0) |
X= 150; Y=150 |
page.Graphics.RotateTransform(0); page.Graphics.DrawString("Syncfusion", font, PdfBrushes.Black, new PointF(150, 150));
|
RotateTransform(-90) |
X= -150; Y=150 |
page.Graphics.RotateTransform(-90); page.Graphics.DrawString("Syncfusion", font, PdfBrushes.Black, new PointF(-150, 150));
|
RotateTransform(90) |
X= 150; Y= -150 |
page.Graphics.RotateTransform(90); page.Graphics.DrawString("Syncfusion", font, PdfBrushes.Black, new PointF(150, -150));
|
RotateTransform(180) |
X= -150; Y= -150 |
page.Graphics.RotateTransform(180); page.Graphics.DrawString("Syncfusion", font, PdfBrushes.Black, new PointF(-150, -150));
|
Please let us know if you need any further assistance.
Thanks,
Karthikeyan.C