Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^3: Losing my memory

by kcott (Archbishop)
on Feb 06, 2021 at 00:12 UTC ( [id://11127960]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Losing my memory
in thread Losing my memory

There's an awful lot of problems with that post which you should fix up.

  • You should not be posting huge swathes of code like that.
  • You've actually posted the same code twice.
  • You didn't close the first <code> tag, so you're comment about "just for fun" is lost amongst all the code.
  • You should use <spoiler> or <readmore> tags for any large tracts of code or data. See "Writeup Formatting Tips".
  • The code you post should reproduce your problem. It should also be presented in a way that we can also run it to try to help you. Absolute pathnames on your machine (e.g. C:\\pb\\test\\images\\2018.06.15_EC_and_MP.jpg) are of no use to us. See SSCCE.
  • You should remove all of the ASCII-art banners. If you think the information they convey is essential, replace with a one-line comment.
  • Please read "How do I post a question effectively?".
  • Finally, read "How do I change/delete my post?" and then make appropriate modifications.

— Ken

Replies are listed 'Best First'.
Re^4: Losing my memory
by nzsvz9 (Sexton) on Feb 09, 2021 at 06:44 UTC
    Ken and all who posted,

    I wanted to post what eventually worked - a combination of several items put forward.

    Creating the initial Photo image with no reference, then immediately loading the image from the file.

    # Start with a blank image - somehow this causes memory cleanup $TK{'image-'.$NVP{'Id'}}=$TK{'canvas-'.$NVP{'Id'}}->Photo(-file => + "" ); # Create an image object for the image file of the correct format $TK{'image-'.$NVP{'Id'}}=$TK{'canvas-'.$NVP{'Id'}}->Photo($NVP{'Id +'}, -file +=> $NVP{'File'}, -format +=> $image{'extension'});
    Adding a trap for catching the closure of the popup window ...
    # Create a "catch" for closing the window $TK{'pw-'.$NVP{'Id'}}->protocol('WM_DELETE_WINDOW' => [\&CleanUpOn +Exit, $NVP{'Id'}]);
    And a subroutine to delete the images on the canvas as well as the images on exit ... using the magic delete -> delete(); thing
    sub CleanUpOnExit { # Get the id my $ID=shift(@_); # Delete images on the canvas $TK{'canvas-' . $ID}->delete("all"); # Delete the original image (delete $TK{'image-' . $ID})->delete(); # Destroy the popup window $TK{'pw-' . $ID}->destroy(); # Exit the Tk window Tk::exit; }
    It no longer chews up memory and even returns memory when the images are closed.

    So I wanted to say thanks.

    nzsvz9 - formerly known as the mad memory monger of my own creation

Re^4: Losing my memory
by nzsvz9 (Sexton) on Feb 06, 2021 at 13:43 UTC
    Thanks for the tips. This is what happens when you post after your daily sleep deprivation time ...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11127960]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (1)
As of 2024-04-25 04:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found