PDFsharp - A .NET library for processing PDF
1
vote
1answer
26 views
How to resize PDF Document to fit a Bitmap
( I am using PDF Sharp )
I am have a few Bitmaps and for each Bitmap I create a new PDF Page. The problem is that my pdf page does not have enough height to contain the entire Bitmap, so I'm losing a ...
1
vote
1answer
22 views
Image Opacity in PdfSharp.NET
I'm using PDFSharp.NET library to watermark a list of PDFs file. Everything works fine, the website has a lot of samples.
http://www.pdfsharp.net/wiki/Graphics-sample.ashx
The last thing I need is ...
1
vote
1answer
49 views
Font adding using PDFsharp
I am using PDFsharp to add text to a pdf. But when I use below code to add the following text with these fonts I am facing problem. After PDF was created using PDFsharp and when it is opened in adobe ...
0
votes
1answer
48 views
find word in PDF with PDFSharp
I using PDFSharp. I need help. Need to check if the document is the word "abc" ...
Example:
11abcee = true
444abcggw = true
778ab = false
I write this code. But it's does not work.
...
0
votes
1answer
22 views
Populating a Dictionary with PdfOutlines
So I am attempting to write a program that combines a PDF from a list of PDF's that are already available. I've got most of it done to this point, but I'm having an issue with one step in particular. ...
0
votes
1answer
126 views
Read PDF annotation content using PDFSharp “Result View” Content C#
I'm trying to read the contents of all annotations in a PDF document using PDFSharp while keeping track of which page they are on. The "contents" that I'm trying to retrieve is in the "Result View" ...
0
votes
1answer
141 views
PDFsharp page size and set margin issue c#
I am converting an image to pdf using PDFsharp lib. I need to set margin & page size so I got a trick from this forum to set page size and margin. From here I got code which I used but getting ...
0
votes
1answer
33 views
View outlines(bookmarks) of a pdf
I created a PDF file with library PDFsharp with this code. I open the file with Adobe Reader and the bookmarks are created. Then I created another program when I read this created PDF file and I want ...
0
votes
0answers
31 views
How to create a label and a textfield on pdf form using pdfSharp
I want to create a label, a button and a textbox field in pdf form using pdfSharp. I download pdfSharp and tried but i could not start with. I didn't find any tutorial to create label and text field ...
0
votes
1answer
75 views
How to bind datatable to pdfsharp?
I have a data table like this:
// create dataset
DataSet ds = new DataSet("myDataset");
// create datatable
DataTable dt = new DataTable("myDatatable");
// add columns
dt.Columns.Add("column1", ...
0
votes
1answer
86 views
Embedding Font in Migradoc
as usual, there are a lot of posts on this in the web, but none of this helped... I use windows and Migradoc Version = "1.32.3885.0"
To generate a pdf i create a document.
var doc = new ...
0
votes
1answer
270 views
PDFSharp: Measuring height of long text with word wrap
PDFSharp supports automatic text wrapping when drawing long text portions:
textFormatter.DrawString(text, font, XBrushes.Black, new XRect(x, y, textAreaWidth, 1000), XStringFormats.TopLeft);
This ...
0
votes
2answers
116 views
MigraDoc - how to avoid line break between paragraphs
I am wondering if there's a way to avoid line breaking between certain paragraphs.
For example:
Paragraph PjourneyTitle = sec.AddParagraph(journeyTitle, "Heading2");
Paragraph Pjourney = ...
0
votes
1answer
107 views
MigraDoc PDFSharp Table overflow text
i am creating a big table with MigraDoc.
I have two issues i dont know how to solve exactly:
If the content (Paragraph) of a cell is too long it breaks and i got 2 lines in my cell. I dont want ...
1
vote
2answers
507 views
How do I display a PDF using PdfSharp in ASP.Net MVC?
we're making an ASP.Net MVC app that needs to be able to generate a PDF and display it to the screen or save it somewhere easy for the user to access. We're using PdfSharp to generate the document. ...
0
votes
2answers
495 views
How to convert Multipage .pdf to Multipage .tiff in c# in window application using PDFSHARP
Can any one help me how to convert Multipage .pdf to Multipage .tiff in c# in window application using PDFSHARP?
What are some methods I can call with buttons or some tutorials to do this?
0
votes
1answer
102 views
Combining PDFs with PDFSharp losing form fields
I am attempting to concatenate two created PDF files to a new PDF using PDFSharp and this code (which I found here):
// Open the output document
PdfDocument outputDocument = new ...
0
votes
1answer
87 views
iTextSharp equivalent of XPdfFontOptions
I'm converting a C# app page which uses PdfSharp to iTextSharp & have found a line of code I can't see an obvious replacement for.
The existing code is
PdfSharp.Drawing.XPdfFontOptions ...
0
votes
1answer
76 views
print pdf in both sides
So, i'm using the PDFSharp lib, and, I whant to print a pdf on both sides....
My printer is a hp2055dn I have tryed all things... btw... my code is that:
using PdfSharp.Pdf.Printing;
using System;
...
0
votes
1answer
92 views
PDFSharp with Chinese characters
I have problem with displaying Chinese characters in PDFSharp in C#. During process of creating the PDF string it's ok, but after creating pdf file it doesn't display it. I found one solution which is ...
0
votes
1answer
121 views
How to get the XGraphics Class in PDFsharp
I am using PDFsharp to generate the pdf but I am not able to use the XGraphics class. Can somebody tell me how can I use the XGraphics class or what is the dll and namespace I need to add in my ...
4
votes
1answer
264 views
How to add an additional page to existing pdf while keeping bookmarks? (PDFSharp etc.)
I have got a PDF, and I would like to add an additional page to it, ideally as the first page. I have been able to achieve this with PDFSharp, but the problem is that the original PDF contains ...
1
vote
1answer
204 views
Retrieving coordinates of PDF graphical elements with PDFSharp
I actually asked this question already Extract graphical Elements and its coordinate from PDF but I was supposed to write the project in Java.... unfortunately there is no function for this. Plse see ...
3
votes
2answers
293 views
How to get path of Properties.Resources.Image in .NET
I included an image as a resource following this post:
How to create and use resources in .NET
I am using PDFSharp library to create a PDF. The method to draw an image, requires the path of the ...
0
votes
1answer
551 views
Programmatically print to a PDF printer [closed]
I am looking for a free open source .Net based, preferably C#, pdf printer such as CutePDF's Custom PDF Writer with programmatic access that will allow me to save a xps document to a pdf format. I ...
0
votes
1answer
436 views
Im using PdfSharp and can't find the class BeginBox where is it?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.IO;
using System.Drawing;
using PdfSharp;
using PdfSharp.Drawing;
using ...
6
votes
4answers
736 views
WPF to XPS to PDF
I have implemented a report in standard WPF controls and have also implemented a DocumentPaginator to take these controls and convert them into a document for printing.
I have also implemented some ...
2
votes
1answer
55 views
How to change the clip area of an XGraphics in pdfsharp?
I'm a little confused about setting clipping area of an XGraphics, pdfSharp only provide a method IntersectClip, which means if I want to change the clipping area, the area would become smaller and ...
0
votes
2answers
238 views
Merging pdf with pdfsharp : exception en the pdfDocument.close()
I would like to create a function with PDFSharp in order to merge some pdf's.
Here is my code
public class PDF_Merge
{
static string [] strTabPdfFiles;
public static string ...
1
vote
2answers
1k views
C# PDF Sharp position in document
Hi I am using PDF sharp to print user input onto positions in a template document.
The data (fields) are collected from user (web page) and written at appropriate positions on the document using ...
2
votes
1answer
341 views
Why is PdfSharp creating borders around web links?
I have the following function to create a weblink using PdfSharp:
public static void AddWebLink(XGraphics gfx, PdfPage page, XFont font, string url, string text, int startX, int startY)
{
...
0
votes
1answer
108 views
Get the PDFPage that contains the PdfTextField
We need to get the PpdfPage that contains an especific PdfTextField, how can we do it?
Code:
PdfDocument document = PdfReader.Open("C:\\filex.pdf", PdfDocumentOpenMode.Modify);
// Get the root ...
0
votes
1answer
436 views
PDFSharp Insert an image in a pdf using a PdfTextField as the position and size reference
We want to insert a png image with a (drawn)signature into a PDF with PDFSharp. The position and size of the image is determined by a invisible PdfTextField that we created previously in the PDF. With ...
0
votes
0answers
166 views
PDFSharp merge with duplicate field names
I am using PDFSharp to programmatically fill out the fields of some existing PDF forms. It's working great, however, I am running stuck on an issue where the PDFs I need to fill have duplicate field ...
0
votes
3answers
435 views
Why is MigraDoc generating a blank pdf in my asp.net application?
I have the following code in my attempts to create a PDF:
public static MemoryStream Test()
{
var document = new Document();
document.Info.Title = "Test Report";
...
0
votes
3answers
1k views
View PdfSharp document in a WPF control
I'm using the companion MigraDoc and PdfSharp libraries to generate a report.
The PdfSharp documentation repeatedly refers to WPF and talks about you can "draw on a PDF page as well as in a window", ...
0
votes
0answers
184 views
Does PDF file contain iref stream?
I still fight with read data from PDF file. I use PDF#, how can I check if file contains iref stream without use method Open. Method Open if file contains iref stream< throw exception.
1
vote
1answer
427 views
Alter the page numbers on a pdf created with PdfSharp/Itextsharp
I am using PdfSharp/Itextsharp to stitch together a number of documents and stamp a page number at the bottom of each page. The first document in the package is the Table of Contents and is not ...
0
votes
1answer
178 views
Rid of sharepoint 2010 metadata from document. PDFSharp issue
I'm uploading pdf to sharepoint 2010 docs library. And when I download the document it reads perfectly with reader. But if i'm trying to read it with PdfReader.Open() I'm getting such an error "Token ...
1
vote
1answer
314 views
Get text width from font migradoc / pdsharp for table columns
I want to create a table in a PDF document which would have variable width of columns depending on the width of its contents.
I am using PDFSharp, MigraDoc
Maybe getting the paragraph width from the ...
1
vote
1answer
581 views
How to convert Windows Form to PDF including values of textboxes
I have created a Windows Application in Visual Studio 2005. In this application, the user is able to export the current active form to a PDF file.
The problem is how do I save it with the values of ...
2
votes
1answer
660 views
How save Windows Form as pdf
I'm creating a Windows Application with several forms in Microsoft Visual Studio 2005. I want the user to be able to export the current open form as a PDF-file. I ran into some answers recommending ...
0
votes
1answer
201 views
(PdfSharp) How do I use pdfsharp to change the page size of an existing pdf file?
I have a pdf file of the Legal page size, how do I change it to Letter size using PdfSharp?
1
vote
1answer
405 views
MigraDoc - Bold certain text in a paragraph
In MigraDoc, if I have a paragraph, how can I only bold some text in the paragraph, not the entire paragraph.
Edit:
Below is the typical code I would use to add a bolded paragraph.
var paragraph = ...
0
votes
2answers
525 views
PdfSharp - Getting started
I have a C# console application and would like to add some of the functionality of PdfSharp to it.
I've downloaded both zip files from Sourceforge ... both the assemblies and the source code.
There ...
0
votes
1answer
154 views
Print control as A4 format
I'm using Control.DrawToBitmap in order to achieve an image snapshot of my winform part .
Successively, I get a pdf file by conversion that image object through free component (pdfsharp).
However, ...
1
vote
1answer
1k views
Create more than one Page with PDFSharp
hi im using PDFSharp for creating PDF-Document for some diagrams. after converting my diagrams in PDF, i should print them on one Page for very small Diagrams, but if i have big-Diagrams then printing ...
0
votes
1answer
118 views
Load jpg then on top of it write some text at a 90 degree angle. then convert to pdf?
Using the pdfsharp.net library -- Im trying to load a big background jpg then on top of it write some text at a 90 degree angle. then save as a pdf
Why does my c# code below not work.
using ...
0
votes
1answer
108 views
Include EMF file in MigraDoc / PDFSharp
How does one include a EMF image in a PDF generated by MigraDoc or PDFSharp?
Thanks.
0
votes
1answer
92 views
“Image could not be read” in MigraDoc
When I specify a path to my image, I get a message saying that the "image could not be read". I wanted to see if I had the wrong path so I changed this path to something made up just to test. After ...




