pdfsharp Questions
1
Solved
I want to write line by line on a pdf document
the code I have is writing the text in the center of the page
how can I write line by line?
// Create a new PDF document
PdfDocument document = new P...
Stinko asked 25/4, 2014 at 15:28
1
I want to apply Trade gothic font to my pdf text using PDFsharp, I have installed the font and use below line of code to apply
XPdfFontOptions options = new XPdfFontOptions(PdfFontEncoding.Unicod...
Donavon asked 3/2, 2014 at 18:41
1
Solved
I have a table of text data and I'd like to indent certain pieces of data by a couple spaces, but everything I try seems to result in my string being automatically trimmed, and the preceding spaces...
1
Solved
Environment - PDFsharp Library, Visual Studio 2012 and C# as the language.
I am trying to:
read Test1.pdf (Width = 17 inches, Height – 11 inches) with 1 page
add some text to it
save it as anoth...
3
Solved
I am trying to combine multiple PDFs into a single PDF. The PDFs come from SSRS, from some LocalReports that I processed. I am using PDFSharp, because it is already used through out the project. Ho...
1
I am trying to fill the fields of pdf form and have the following code:
string filePath = @"c:\test.pdf";
string newPath = @"E\Result";
if(File.Exists(filePath))
{
PdfDocument document = PdfRead...
3
Solved
Is there any way to shift / move the text inside existing pdf page to some other position?
Like there is some text at area x=100, y=100, w=100, h=100 and i want to move it to x=50, y=200, w=100, h...
1
Solved
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 ...
2
Solved
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....
Seditious asked 27/2, 2013 at 20:36
1
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 PdfDocument();
...
3
I try to concatenate 2 PDF data from rdlc report.
The problem is the result is blank pages.
I don't know why, could someone help me please.
here is my code:
private ActionResult ConcatPdf(byte[...
1
Solved
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 book...
Breazeale asked 21/1, 2013 at 13:54
1
Solved
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 form...
Beltane asked 4/1, 2013 at 18:1
4
Solved
1
Solved
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...
1
Solved
Have any way set font style ItalicUnderline or BoldItalicUnderline?
Thanks
Afterworld asked 21/7, 2012 at 7:56
1
Solved
Is there any way to set DPI (dots per inch) in case of PDFsharp?
Thanks
Myriapod asked 14/6, 2012 at 6:31
1
Solved
In my Solution I am using bullet list in PDF files.
It looks something like that:
• Solcellepaneler kræver hverken autoriseret service eller tidskrævende vedligehold.
• Solceller er støjfri, fo...
5
1
Solved
I do not know how to get rid of the bookmarks that are automatically generated when I add a paragraph:
Paragraph inicio = document.LastSection.AddParagraph();
inicio.Style = "Heading1";
inicio.Add...
1
I'm creating a web app that will be used for maintaining PDF documents in our database that come in through an automated system when we receive faxes. Users need to be able to review these document...
1
Solved
I'm using PDFSharp/Migradoc to generate PDFs from my web application, and I've managed to get a background image working for the first page of the document.
I start by creating a single section in...
1
Solved
I want to create a cover page that has text over a background image. Is this possible in MigraDoc / PDFsharp?
3
Solved
I have a program that is manually generating a PDF using PDFsharp in C#. Although it is rather tedious I have to use it and am nearing completion of the task. Only one issue remains.
Problem: I am...
1
How to export a PDF page as an image using PDFsharp .NET library, for pixel level manipulation?
For example, something like, System.Drawing.BitMap.GetPixel()
I am trying to find out empty area (a...
© 2022 - 2024 — McMap. All rights reserved.