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 334821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:05:27+00:00 2026-05-12T10:05:27+00:00

I have written a piece of code which uses the PdfSharp library. The instance

  • 0

I have written a piece of code which uses the PdfSharp library. The instance of PdfSharp.Pdf.PdfDocument created saves to disk as expected. The right content is displayed, but onto the wrong page settings.

The default page settings for PdfSharp are:

  1. PdfSharp.PageSizes.A4
  2. PdfSharp.PageOrientation.Portrait

My problem is that these settings seem to override the required settings.

I create the instance of PdfDocument class and adds a new instance of PdfPage class to its Pages collection property. Then, I setup the page like this:

  1. PdfDocument.Pages[0].Size = PdfSharp.PageSizes.Letter
  2. PdfDocument.Pages[0].Orientation = PdfSharp.PageOrientation.Landscape
  3. I draw the strings (this works fine)
  4. I save the document to disk (this works fine)
  5. Process.Start(myPdfFilename) – then Acrobat Reader opens with my
    document.
  6. The page settings are A4 – Portrait…

I’m quite confused. I know of an option within Acrobat Reader that allows the user to change the page orientation without changing the text direction. No matter whether I check this option or not, still the wrong settings keep going.

Anyone has an idea? Thanks!

  • 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-12T10:05:27+00:00Added an answer on May 12, 2026 at 10:05 am

    For some strange reason, PdfSharp seems not to behave the same with both the following:

    Example 1 – It doesn’t seem to associate the instance of PdfPage class to the PdfDocument even though the page settings are correct while calling and after having called the PdfDocument.Save() method.

    var pdfDoc = new PdfDocument();
    var pdfPage = pdfDoc.AddPage();
    pdfPage.Orientation = PdfSharp.PageOrientation.Landscape;
    pdfPage.Size = PdfSharp.PageSize.Letter;
    pdfPage.Rotate = 0;
    pdfDoc.Save(filename);
    

    Example 2 – The same here…

    var pdfDoc = new PdfDocument();
    pdfDoc.Pages.Add();
    pdfDoc.Pages[0].Orientation = PdfSharp.PageOrientation.Landscape;
    pdfDoc.Pages[0].Size = PdfSharp.PageSize.Letter;
    pdfDoc.Pages[0].Rotate = 0;
    pdfDoc.Save(filename);
    

    Example 3 – This seems to have solved my problem

    var pdfPage = new PdfPage();
    pdfPage.Orientation = PdfSharp.PageOrientation.Landscape;
    pdfPage.Size = PdfSharp.PageSize.Letter;
    pdfPage.Rotate = 0;
    var pdfDoc = new PdfDocument();
    pdfDoc.Pages.Add(pdfPage);
    pdfDoc.Save(filename);
    

    Anyone has any idea of what am I missing here? I seem to do the same in either of these examples, as far as I’m concerned.

    Solution is:

    var pdfPage = new PdfPage();
    pdfPage.Size = PdfSharp.PageSize.Letter;
    pdfPage.Orientation = PdfSharp.PageOrientation.Landscape;
    pdfPage.Rotate = 0;
    var pdfDoc = new PdfDocument();
    pdfDoc.Pages.Add(pdfPage);
    pdfDoc.Save(filename);
    

    Set size first.

    Thanks for any comments and/or answers!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.