Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

how to convert c# string to pdf

//Create a new PDF documentPdfDocument document = new PdfDocument();//Add a page to the documentPdfPage page = document.Pages.Add();//Create PDF graphics for the pagePdfGraphics graphics = page.Graphics;//set the standard fontPdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12);//Read the text from the text fileStreamReader reader = new StreamReader("input.txt", Encoding.ASCII);string text = reader.ReadToEnd();reader.Close();//Set the formats for the textPdfStringFormat format = new PdfStringFormat();format.Alignment = PdfTextAlignment.Justify;format.LineAlignment = PdfVerticalAlignment.Top;format.ParagraphIndent = 15f;//Draw the textgraphics.DrawString(text, font, PdfBrushes.Black, new RectangleF(new PointF(0,0), page.GetClientSize()), format);//Save the documentdocument.Save("OutputText.pdf");//Close the documentdocument.Close(true);//This will open the PDF file so, the result will be seen in default PDF viewerProcess.Start("OutputText.pdf");Copy
Comment

PREVIOUS NEXT
Code Example
Csharp :: c# download file from url 
Csharp :: c# filesystemwatcher 
Csharp :: Selecting item from listview in C# 
Csharp :: why doesnt the if command work in C# 
Csharp :: C# Bitwise and Bit Shift operator 
Csharp :: how to make the player look around in unity 3d 
Csharp :: Unity inverse kinematics nothing is happening 
Csharp :: unity sword trail 
Csharp :: block nulltarge tpl dataflow 
Csharp :: how to do Employing defensive code in the UI to ensure that the current frame is the most top level window in c# 
Csharp :: C# program to find the longest Palindrome in a string. 
Html :: html yen symbol 
Html :: html tab icon 
Html :: html anchor tag open in new tab 
Html :: how to make a whatsapp hyperlink html 
Html :: html input not editable 
Html :: html entity double quote 
Html :: email anchor tag 
Html :: regex remove html comment 
Html :: bootstrap 5 div center 
Html :: web3 cdn 
Html :: center iframe 
Html :: script src tag in html 
Html :: open new tab html 
Html :: disable autoplay in html iframe 
Html :: how to link a local css file in html 
Html :: bootstrap 5 border shadow 
Html :: ordered list with roman numerals html 
Html :: fa fa copy icons 
Html :: how to add a table in html 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =