Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PDFsharp Documentation

Tags:

c#

pdfsharp

Is it possible to find good documentation for the PDFsharp library?

I searched on Google but I didn't find any reference documentation.

I don't know how XGraphics.RotateAtTransform and XGraphics.TranslateTransform work.

like image 547
Albirex Avatar asked Jul 23 '14 15:07

Albirex


2 Answers

The PDFsharp documentation is included in the source code.

Help files created from the source code can be found here:
http://pdfsharp.codeplex.com/releases

The XGraphics class implements the same functions as the Graphics class from GDI+.

So for further information about the two methods given in the question, search information about Graphics.RotateAtTransform and Graphics.TranslateTransform from System.Drawing.

like image 76
I liked the old Stack Overflow Avatar answered Oct 03 '22 04:10

I liked the old Stack Overflow


API documentation for PdfSharp and MigraDoc (GDI+ version) is available at http://www.nudoq.org/#!/Projects/PDFsharp-MigraDoc-GDI

Enter "xgraphics" into the search box to find information about the XGraphics class.

like image 39
Kidquick Avatar answered Oct 03 '22 05:10

Kidquick