PDFsharp Documentation
Asked Answered
A

2

23

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.

Aramen answered 23/7, 2014 at 15:39 Comment(3)
Here, I searched google for you pdfsharp.net/wiki/XForms-sample.ashx?HL=rotateDowling
@Dowling There they used it. But what it does it's not explained!Aramen
Play around with it then, figure out what it does. Give it different inputs, see what it outputs.Dowling
S
12

The PDFsharp documentation is included in the source code.

Help files created 2009 from the source code can be found here:
https://sourceforge.net/projects/pdfsharp/files/pdfsharp/PDFsharp%201.31/

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.

Selfassertion answered 24/7, 2014 at 19:19 Comment(2)
This link is now dead.Kingdom
@Kingdom Fixed the link, but help files are from 2009. But there were only minor API changes.Selfassertion
J
8

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.

Jacalynjacamar answered 18/6, 2015 at 21:0 Comment(2)
The link is now dead.Selfassertion
This appears to be the new home for PdfSharp, specifically for the XGraphics class linkJacalynjacamar

© 2022 - 2024 — McMap. All rights reserved.