Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7648137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:38:22+00:00 2026-05-31T10:38:22+00:00

I convert small html strings to pdf like this: // set a path to

  • 0

I convert small html strings to pdf like this:

// set a path to where you want to write the PDF to.
string sPathToWritePdfTo = @"path\new_pdf.pdf";

System.Text.StringBuilder sbHtml = new System.Text.StringBuilder();
sbHtml.Append("<html>");
sbHtml.Append("<html>");
sbHtml.Append("<body>");
sbHtml.Append("<font size='14'> my first pdf</font>");
sbHtml.Append("<br />");
sbHtml.Append("this is my pdf!!!!");
sbHtml.Append("</body>");
sbHtml.Append("</html>");

// create file stream to PDF file to write to
using (System.IO.Stream stream = new System.IO.FileStream
            (sPathToWritePdfTo, System.IO.FileMode.OpenOrCreate))
{
    // create new instance of Pdfizer
    Pdfizer.HtmlToPdfConverter htmlToPdf = new Pdfizer.HtmlToPdfConverter();

    // open stream to write Pdf to to
    htmlToPdf.Open(stream);

    // write the HTML to the component
    htmlToPdf.Run(sbHtml);

    // close the write operation and complete the PDF file
    htmlToPdf.Close();

I wonder i can make the above conversion for big html strings,without using the append method.I tried this line:

string sbHtml=File.ReadAllText("mypath/pdf.html"); 

Instead of this line:

System.Text.StringBuilder sbHtml = new System.Text.StringBuilder();  

but it didn’t work:I had an exception in line:

     htmlToPdf.Run(sbHtml);

“xmlexception was unhandled bu user code

I also have to mention that the path i read the html file is from my pc!!
It’s not from a server or anything else.I would like to get asnwers for both paths.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T10:38:23+00:00Added an answer on May 31, 2026 at 10:38 am

    If the converter has an overload for string, you can simply use:

      htmlToPdf.Run(File.ReadAllText(@"mypath/pdf.html"));
    

    If not and accepts only StringBuilder:

      System.Text.StringBuilder sbHtml = new System.Text.StringBuilder();
        sbHtml.Append(File.ReadAllText(@"mypath/pdf.html"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

since i'm poor with javascript I would like someone to convert this small function
I am new to Python and want convert this small JavaScript code to Python.
I'm trying to create a small web service to convert PDF files to a
public string DefString { set; private get; } private string path = http://someuri.org/search?Par1=15&Par2=55; public
I'm trying to convert my HTML to Wordpress theme. So my navigation is like
I want to convert a small win-form app to WPF App. I am using
I'm attempting to write a small library which will convert Java objects, through reflection,
How do I convert this small script to Prototype: Basically I need to check
I have a small application to convert several file formats, with a main windows
is it possible to convert their method to scrum in a small concern

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.