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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:20:07+00:00 2026-05-18T00:20:07+00:00

Ok, I’m having to make a PDF that has some styles to it. It’s

  • 0

Ok, I’m having to make a PDF that has some styles to it. It’s for labels. I have the following code:

Document doc = new Document(PageSize.A4);

    int labelHeight = 394;
    int labelWidth = 556;

    float labelTop = doc.PageSize.Height - 2;
    float labelBottom = doc.PageSize.Height - labelHeight;

    MemoryStream ms = new MemoryStream();
    PdfWriter writer = PdfWriter.GetInstance(doc, ms);
    doc.Open();

    PdfContentByte cb = writer.DirectContent;

    // Generate Boxes For Content

    cb.SetColorStroke(new CMYKColor(207, 115, 255, 133));
    cb.SetLineWidth(4);
    cb.SetColorFill(new CMYKColor(207, 71, 255, 38));

    cb.MoveTo(2, labelBottom);
    cb.LineTo(labelWidth - 2, labelBottom);
    cb.LineTo(labelWidth - 2, labelTop);
    cb.LineTo(2, labelTop);

    cb.ClosePathFillStroke(); // Draw Main Green Box

    cb.SetColorStroke(new CMYKColor(0, 0, 0, 0));
    cb.SetLineWidth(1);
    cb.SetColorFill(new CMYKColor(0, 0, 0, 0));

    int whiteBoxTop = 100;
    int whiteBoxHeight = 260;

    cb.MoveTo(5, labelTop - (whiteBoxTop + whiteBoxHeight));
    cb.LineTo(labelWidth - 5, labelTop - (whiteBoxTop + whiteBoxHeight));
    cb.LineTo(labelWidth - 5, labelTop - whiteBoxTop);
    cb.LineTo(5, labelTop - whiteBoxTop);

    cb.ClosePathFillStroke(); // Draw Inner White Content Box

    cb.SetColorStroke(new CMYKColor(20, 15, 41, 0));
    cb.SetLineWidth(0);
    cb.SetColorFill(new CMYKColor(20, 15, 41, 0));

    cb.MoveTo(labelWidth / 2, labelTop - ((whiteBoxTop + whiteBoxHeight) - 4));
    cb.LineTo(labelWidth - 9, labelTop - ((whiteBoxTop + whiteBoxHeight) - 4));
    cb.LineTo(labelWidth - 9, labelTop - (whiteBoxTop + 4));
    cb.LineTo(labelWidth / 2, labelTop - (whiteBoxTop + 4));

    cb.ClosePathFillStroke();

    string logoPath = Server.MapPath(".") + "/pdf_logo.jpg";

    iTextSharp.text.Image logo = iTextSharp.text.Image.GetInstance(logoPath);

    logo.SetAbsolutePosition(labelWidth / 4, labelTop - (whiteBoxTop + whiteBoxHeight) + 25);
    logo.ScaleToFit(150, 30);


    doc.Add(logo);    

    doc.Close();

The issue lies in the added logo. If I add it and I show it below the boxes I’m creating it shows up, but when I put the absolute position to where the boxes are it disappears behind the drawn boxes. What do I need to do to bring the image above the boxes I’ve drawn? This same issue is happening as well for any text I try to add on top of the boxes.

  • 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-18T00:20:07+00:00Added an answer on May 18, 2026 at 12:20 am

    Try adding the logo to your PdfContentByte object rather than your Document.

    Replace this:

    doc.Add(logo);
    

    with this:

    cb.AddImage(logo);
    
    • 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.