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

  • SEARCH
  • Home
  • 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 4273220
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:41:00+00:00 2026-05-21T07:41:00+00:00

I have this piece of Code (ruta1 and ruta2 are strings containing the path

  • 0

I have this piece of Code (“ruta1” and “ruta2” are strings containing the path to different images):

   Bitmap pic;
   Bitmap b = new Bitmap(SomeWidth, SomeHeight);
   g = Graphics.FromImage(b);
   g.FillRectangle(new SolidBrush(Color.White), 0, 0, b.Width, b.Height);

   b.Save(ruta2, ImageFormat.Jpeg);
   g.Dispose();
   b.Dispose();

   b = new Bitmap(OtherWidth, OtherHeight);
   pic = new Bitmap(ruta2);
   g = Graphics.FromImage(b);
   g.FillRectangle(new SolidBrush(Color.White), 0, 0, b.Width, b.Height);
   g.DrawImage(pic, 0, 0, pic.Height, pic.Width); 

   pic.Dispose();
   b.Save(ruta2, ImageFormat.Jpeg);
   g.Dispose();
   b.Dispose();

   pic = new Bitmap(ruta1);
   b = new Bitmap(AnotherWidth, AnotherHeight);
   g = Graphics.FromImage(b);
   g.FillRectangle(new SolidBrush(Color.White), 0, 0, b.Width, b.Height);

   int k = 1;

   // I just draw the "pic" in a pattern on "b"
   for (h = 0; h <= b.Height; h += pic.Height)
       for (w = 0; w <= b.Width; w += pic.Width)
            g.DrawImage(pic, w, h, k * pic.Width, k * pic.Height);

   pic.Dispose();            
   GC.Collect();  // If I comment this line, I get a "generic GDI+ Error" Exception
   b.Save(ruta1, ImageFormat.Jpeg);
   g.Dispose();
   b.Dispose();

It doesn’t matter if I set pic = null after disposing it, if I don’t call the Garbage Collector, I got a “Generic GDI+ Error” exception. Only when I call the Garbage Collector, my program goes ok, all times.

Can somebody explain this behavior? Does it depend on the .Net framework version?
I’m using Visual C# Express 2008, with .Net framework 3.5

  • 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-21T07:41:00+00:00Added an answer on May 21, 2026 at 7:41 am

    First, it would be nice if you were using the “using” keyword to scope the use of your disposable objects (like Bitmap and Graphics), instead of calling Dispose() manually on each. Using “using” is better for lots of reasons like cleaning up stuff when an exception is thrown, but it also greatly helps for code readability.

    Second, GDI brushes are also IDisposable objects, so you shouldn’t create-and-forget them. Do this instead:

    using (var brush = new SolidBrush(Color.White))
    {
        g.FillRectangle(brush, 0, 0, width, height)
    }
    

    …or better yet, create your brushes at the start of your application, and hang on to them until the end (but don’t forget to dispose of them too). IIRC, creating/disposing brushes impacts performance quite a lot if done frequently.

    Third, I believe your bug is in the 2nd section:

    1. You open image “ruta2”
    2. You create a new image
    3. You draw the contents of “ruta2” inside that new image
    4. You save that new thing on top of the “ruta2” file, but the original image from step 1 is still loaded, and probably has some handle on the “ruta2” file, so you need to dispose of it before you overwrite the file.

    If you refactor that 2nd section like this, it should work:

    using (var b = new Bitmap(OtherWidth, OtherHeight))
    using (var g = Graphics.FromImage(b))
    {
         using (var brush = new SolidBrush(Color.Red))
         {
             g.FillRectangle(brush, 0, 0, b.Width, b.Height);
         }
         using (var pic = new Bitmap(ruta2))
         {
             g.DrawImage(pic, 0, 0, pic.Height, pic.Width);
         }
         b.Save(ruta2, ImageFormat.Jpeg);
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this piece of code , geocoder = new GClientGeocoder(); var state; function
We have this piece of code: <a class=loadbutton onClick=$('checkout_form').submit(); $(this).update('<img src=\'images/loader/longLoad.gif\' /> Processing'); return
I have this piece of code (summarized)... AnsiString working(AnsiString format,...) { va_list argptr; AnsiString
I have this piece of code #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h>
I have this piece of code: $(#faq).click(function () { var url = $.get(faq, {
I have this piece of code: var myObj = function () { this.complex =
I have this piece of code I'm trying to get to display but no
I have this piece of code that does not work: public CartaoCidadao() { InitializeComponent();
I have this piece of code that works fine in subsonic 2.2, I migrated
I have this piece of code in C++: ihi = y[0]>y[1] ? (inhi=1,0) :

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.