Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: how to speed up image file loading with gtk2 iconview?

by zentara (Archbishop)
on Sep 30, 2008 at 16:54 UTC ( [id://714595]=note: print w/replies, xml ) Need Help??


in reply to how to speed up image file loading with gtk2 iconview?

About the only thing I can think of is to have a thread reading the images ahead of time and stuffing the pixbufs into a hash. Of course, with alot of images, that hash can get huge. Using it with iconview seems to be the hassle.

If the images are relatively constant, why not use a separate script that reads all the images, puts them into pixbufs, stashes them into a hash, then saves it as a Storable db. You can even store the thumbnail for the image too. Then when you run your program, it will just slurp in all the pixbufs from the Storable db.

If you want speed, I think displaying alot of images in a Liststore is not the right way to go. I faced the same problem in Gtk2-thumbnail-previewer. If I wsan't so lazy ( or was getting paid :-)) I would work out a way to preload with Storable, or if the images changed alot, use a thread to be making the pixbufs, and after it made the first subdir, continue on with others. But there is one catch, what if the user clicks on a subdir that hasn't been processed yet, you may need 2 threads...one for background work, and one for an unexpected click.

All in all, I think preloading them with Storable, will be the fastest. That way you only read the files once from disk, and combine them all into one big Storable db. The Storable db will load very fast, as it is only a single file.


I'm not really a human, but I play one on earth Remember How Lucky You Are
  • Comment on Re: how to speed up image file loading with gtk2 iconview?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-19 05:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found