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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T00:41:49+00:00 2026-05-19T00:41:49+00:00

I want to work with iTextSharp 5.0.5. But did not find any tutorial on

  • 0

I want to work with iTextSharp 5.0.5. But did not find any tutorial on this version. I downloaded some previous version tutorials but giving error. I just want to stitch some images into a pdf file by iTextSharp. Can anyone please give me code for that ?

EDIT: After some time spending on it I finally figured it out how to add image. But the problem is that image is too big. Now my problem is how to shrink image or I want to see the image in page in normal format. Now how can I do it ?

  • 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-19T00:41:49+00:00Added an answer on May 19, 2026 at 12:41 am

    First, the examples. They’re all a part of “iText in Action, 2nd edition”. Fortunately, the book’s examples are all available on line. They’re tagged with the various classes and topics they cover to help you find whatever you might be looking for. Good Stuff.

    Many of the old examples were, as you point out, No Longer Helpful. That’s why they’re no longer on the web site. The book’s examples are all as up to date as Bruno could manage (and he’s keeping them current).

    On one hand, The Book is very useful, but not required. On the other hand, money spent on the book is money given to support iText. I do not personally benefit from you buying the book, but consider Bruno a friend. Help out my friend.

    Or else. Grr.

    😉


    If you’re using Image with a Document, you have a number of options:

    image.scaleAbsolute(xScale, yScale); // 1.0f == same size
    
    image.scalePercent(percent); // 100.0f == same size
    
    image.scaleToFit(desiredX, desiredY); // in points, always maintains aspect ratio
    

    Take your pick.

    On the other hand, if you’re adding the image to a content stream, PdfContentByte, directly, you have the above, plus:

    // scale/position the image Right Here.
    contentByte.addImage(image, desiredX, 0, 0, desiredY, xLoc, yLoc );
    // will NOT maintain aspect ratio.  That's a "2d transformation matrix".  Google it.
    

    When adding an image to a PdfContentByte (or its subclasses), you can either use the matrix technique above, or set the image’s scale (first set of calls) and its position. You are required to use absolute positioning when you use the following:

    image.setAbsolutePosition(xLoc, yLoc);
    contentByte.addImage(image);
    

    If you don’t, addImage will throw a DocumentException with the message “The image must have absolute positioning.” (or whatever your localized version of that string happens to be).

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

Sidebar

Related Questions

No related questions found

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.