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

The Archive Base Latest Questions

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

I need to draw a line one inch long on any device given a

  • 0

I need to draw a line one inch long on any device given a Graphics reference to it. I need it to be an inch long regardless of what Transform is set to. Let’s assume that the scaling factor of the transform is given by scale in both horizontal and vertical directions.

Some C++/CLI code:

g->DrawLine(Pens::Black, 50.0f, 50.0f, 50.0f + oneInchEquivalent / scale, 50.0f);

Now that was not difficult at all! Now all we need to do is calculate oneInchEquivalent.

g->DpiX gives me a distance of what looks like one inch on screen but not on the printer. It seems that on printers, drawing a line of 100 units with g->PageUnit set to GraphicsUnit::Display will give me a line one inch long. But, I really need this to work regardless of the PageUnit setting. In fact, changing PageUnit will change the width of the pen!!

Edit: I have tentatively accepted the only answer here as it’s pretty close to what I am looking for.

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

    The answer became rather long after a couple of edits, so here is the final result:

    Setting the PageUnit property of the Graphics object to GraphicsUnit.Pixel and taking in multiplying coordinates with the DpiX and DpiY values will render the expected result on both display and printer devices.

    private static void DrawInchLine(Graphics g, Color color, Point start, Point end)
    {
        GraphicsUnit originalUnit = g.PageUnit;
        g.PageUnit = GraphicsUnit.Pixel;
        using (Pen pen = new Pen(color, 1))
        {
            g.DrawLine(pen,
                start.X * g.DpiX,
                start.Y * g.DpiY,
                end.X * g.DpiX,
                end.Y * g.DpiY);
        }
        g.PageUnit = originalUnit;
    }
    

    You can have it paint on a Form (or some control):

    using (Graphics g = this.CreateGraphics())
    {
        Point start = new Point(1, 1);
        Point end = new Point(2, 1);
        DrawInchLine(g, Color.Black, start, end);
    }
    

    …or send the output to a printer:

    PrintDialog dialog = new PrintDialog();
    if (dialog.ShowDialog() == DialogResult.OK)
    {
        PrintDocument pd = new PrintDocument();
        pd.PrinterSettings = dialog.PrinterSettings;
        pd.PrintPage += (psender, pe) =>
        {
            Point start = new Point(1, 1);
            Point end = new Point(2, 1);
            DrawInchLine(pe.Graphics, Color.Black, start, end);
            pe.HasMorePages = false;
        };
    
        pd.Print();
    }
    

    This does, however, rely on setting the PageUnit.

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

Sidebar

Ask A Question

Stats

  • Questions 256k
  • Answers 256k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer For every PHP-based web-application I've worked on for the past… May 13, 2026 at 10:29 am
  • Editorial Team
    Editorial Team added an answer Aside from restarting / reloading Apache there's a few other… May 13, 2026 at 10:29 am
  • Editorial Team
    Editorial Team added an answer For types for which such cast is permitted (e.g. if… May 13, 2026 at 10:29 am

Related Questions

How do you determine the width of the text in a WPF TreeViewItem at
As the background for one of the views in my app, I'd like to
Is it possible to draw a line using a graduated colour? I want to
I've read a bunch of tutorials involving XNA (and it's various versions) and I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.