Results 1 to 4 of 4

Thread: Dispose of Image

  1. #1
    Join Date
    Nov 2009
    Posts
    60

    Dispose of Image

    Hello.

    I am developing a program using the C# WPF with BitmapImage (System.Windows.Media.Imaging.BitmapImage) as well as Image (System.Windows.Controls.Image). The problem is that when I try to release that images. All of the images are being contained WrapPanel and whenever I am deleting then form the panel the memory isn't free. Please help me i need it to solve urgently because my project has been stopped in midways.

    Thanks in advance

  2. #2
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Dispose of Image

    I think that you are not using outstanding rooted references for the BitmapImage objects. The CLR when need it, will automatically reclaim the memory. You do not have to insert a destructor to know whether the images are being freed. A method of tracking lifetime which is live on maintaining weak references for the objects. I hope this much will help you to resolve you issue.

    Thanks

  3. #3
    Join Date
    Apr 2008
    Posts
    4,642

    Re: Dispose of Image

    Calling the Dispose method allows the resources used by this Image to be reallocated for other purposes.Call Dispose when you are finished using the Image. The Dispose method leaves the Image in an unusable state. After calling Dispose, you must release all references to the Image so the garbage collector can reclaim the memory that the Image was occupying. For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.

    Thank you

  4. #4
    Join Date
    May 2008
    Posts
    4,831

    Re: Dispose of Image

    These are the method to initialize the same. These method will provide the functionality to solve your issue. So use this to solve your problem.
    Code:
    Visual Basic (Declaration)
    Public Sub Dispose
    
    Visual Basic (Usage)
    Dim instance As Image
    instance.Dispose()
    Say thanks if it works.
    For more info Click here

Similar Threads

  1. Replies: 4
    Last Post: 24-08-2013, 12:34 PM
  2. Replies: 7
    Last Post: 15-02-2012, 05:29 AM
  3. How do I dispose off Too much NY cash in Mafia Wars
    By Visitator in forum Video Games
    Replies: 4
    Last Post: 31-01-2011, 07:20 AM
  4. NY Bank Account is full, How to dispose in Mafia Wars
    By Gonercase in forum Video Games
    Replies: 3
    Last Post: 29-01-2011, 03:30 AM
  5. How to dispose Old Hard Disk Drive
    By Raveroy in forum Portable Devices
    Replies: 3
    Last Post: 08-11-2010, 05:17 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,561,067.83466 seconds with 16 queries