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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T22:13:03+00:00 2026-06-02T22:13:03+00:00

I am trying to save a panel (panel1) as an image using DrawToBitmap, and

  • 0

I am trying to save a panel (panel1) as an image using DrawToBitmap, and that I have been able to do. The problem is, that panel1 is inside another panel with panel1 Location not equal to 0, 0. So when the image is captured, it for some reason does not capture at the top left of panel1 but at Location(0, 0) of it’s parent.
Here is the code I have.

Bitmap^ bmp = gcnew Bitmap(panel1->Width, panel1->Height);
panel1->DrawToBitmap(bmp, panel1->Bounds);
bmp->Save("Capture.bmp");
delete bmp;

It is capturing with the width and height of panel1, but that is cutting off the bottom right corner of the panel.
Thanks in advance…

  • 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-06-02T22:13:04+00:00Added an answer on June 2, 2026 at 10:13 pm

    Use panel1->ClientRectangle instead of panel1->Bounds, and panel1->ClientSize rather than panel1->Width and panel1->Height.

    Additionally, don’t use gcnew unless you have to – your code, as-is, is not exception-safe. Use RAII instead, just like normal C++:

    Bitmap bmp(panel1->ClientSize.Width, panel1->ClientSize.Height);
    panel1->DrawToBitmap(%bmp, panel1->ClientRectangle);
    bmp.Save("Capture.bmp");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to save a setting that keeps what background image I'm currently using.
When trying to save the database using boost serialization, I encounter the segfault that
I am trying to create an image of a Panel and save it to
I'm trying to save, and then print a panel in c#. My only problem
I have a form that has 2 panels. I'm trying to save the contents
I am trying to save a date in one activity and then have that
Hello I am trying to save a bitmap image in a basic image editor
I am trying to save images using the following code: - (void)writeData{ if(cacheFileName==nil) return;
So I'm trying to save an array when the app terminates so that I
I have been trying to add an NSString to an NSImage in my application.

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.