Articles in this section
Category / Section

How to apply the graphics transformations for particular object in PDF document ?

1 min read

The graphics transformations can be applied for particular object in WinForms PDF document using Save() and Restore() methods.

Please refer to the following code example and sample for the same:

C#:
//Create a new pdf document
PdfDocument document = new PdfDocument();
 
//Add the page
PdfPage page = document.Pages.Add();
 
//Save the current graphics states
PdfGraphicsState state = page.Graphics.Save();
 
//Translate the coordinate system’s to where you want to draw the text position
page.Graphics.TranslateTransform(100, 100);
 
//Rotate the coordinate system’s
page.Graphics.RotateTransform(90);
 
//Draw the string at the origin
page.Graphics.DrawString("Text rotation", new PdfStandardFont(PdfFontFamily.Courier,20), PdfBrushes.DarkBlue, new PointF(0, 0));
 
//Restore the graphics state
page.Graphics.Restore(state);
 
//Save and close the document
document.Save("Output.pdf");
document.Close(true);
 

 

Sample link:

https://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfSample-1636738877

Conclusion

I hope you enjoyed learning about filling data in PDF continuation pages.

You can refer to our WinForms PDF’s feature tour page to know about its other groundbreaking feature representations. You can also explore our  WinForms PDF documentation to understand how to present and manipulate data.

For current customers, you can check out our WinForms components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms PDF and other WinForms components.

If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied