NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 70 71 72 73 74 … 93 Next »
My Pictures Feature Requests

 
  • 0 Vote(s) - 0 Average
My Pictures Feature Requests
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#21
2005-07-08, 06:02 AM
Quote:- Read about the rotate function and thought if it would be possible to do an automatical rotate (just for display) of jpg images according to their rotation info found in the EXIF info. I just have to many images from my Digicam which are not rotated correctly but that have the info in the EXIF Data.
ill look into this once all the basic are working.

Quote:- And then one more general thing. You said something about a complete redesign of the skin.xml files. Could you insert a possibiliy to deactivate some of the buttons, that can not be used if you have your PC in another room than your TV set (like all the ripping buttons in the myMusic and MyVideo plugins) or for someone like me who is just not interested in using them.
yeah as i slowly update the other plugins ill make the menus configurable (ill put this on the todo list for my pics).

on a side note, just to let everyone know whats working
- zoom ! it works how you would expect it to (big thanks to smeghead and Heyt for their help on this, its a lot trickier than you would expect).
- folder.png are now automatically generated if a folder is missing a folder image. ie the 2x2 image thumbnail, displaying the first 4 images found as the folders image (err just like windows does it), i decided to use .png to keep the transparency.
- panning is working correctly aswell, like you can no longer pan off way to the side so the picture is no longer seen (it will stop you from going past the edges).

whats not working exactly how i would like it
- transistions on larger images, its slow and looks ugly. if anyone has got any knowledge/experience on how to improve the transistion let me know, the current code does a loop from 1.0f to 0.2 with step 0.1f and then 0.2 to 0.5f with a step of 0.05f.

then using that step
Code:
//Set alpha in the ColorMatrix
colorMatrix.Matrix33 = 1.0f - transparency;
// Set color matrix of imageAttributes
imageAttributes.SetColorMatrix(colorMatrix,ColorMatrixFlag.Default,ColorAdjustType.Bitmap);
transparency is what being decreased.

and then the paint method
Code:
Graphics.FromImage(compositeScreenImage).DrawImage(image, ScreenImageRect, srcx, srcy, (int)Math.Round(srcwidth), (int)Math.Round(srcheight), GraphicsUnit.Pixel, imageAttributes);
if you can spot a beginners mistake in that, let me know (never toyed with this stuff before, so pretty much used the first working code i came across).
A_Brass
Offline

Senior Member

Posts: 474
Threads: 22
Joined: Mar 2005
#22
2005-07-08, 12:33 PM
reven Wrote:- transistions on larger images, its slow and looks ugly. if anyone has got any knowledge/experience on how to improve the transistion let me know, the current code does a loop from 1.0f to 0.2 with step 0.1f and then 0.2 to 0.5f with a step of 0.05f.

Glad to hear its moving along. Can't wait to see it.

Are the transistions going to be an on/off item or always-on? Just wondering.
If its going to slow load time on large images I wouldn't use it. My PVR is already over taxed.
GBPVR Server:
AMD Sempron 3300+, 1gb DDR, 100, 200 & 500gb HDDs, DVD -/+RW PVR150 RETAIL, PVR150MCE.
GBPVR 1.0.16, SKIN'S = Default Blue, PLUGIN'S = None
MediaMVP
capone
Offline

Posting Freak

Posts: 1,756
Threads: 190
Joined: Jan 2005
#23
2005-07-08, 01:25 PM
Always been a huge fan of the "My" series.

Don't know if anyone mentioned it, but the only Image improvement would be to error handling/memory management.

I love just turning on the random slide show, but sometimes it hangs on an image, and I don't know which one so I can remove it. It would also be ok to just do some kind of try/pass function where it just skips it.

It would also be cool if it handled large image libraries better in random slide show. If you have a large number, the size of the temp list seems to crash it out after a while.
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#24
2005-07-08, 07:53 PM
Quote:It would also be cool if it handled large image libraries better in random slide show. If you have a large number, the size of the temp list seems to crash it out after a while.
how large are you talking? i tested on about 1000 images, but i dont suppose that is that massive for some.

Quote:Are the transistions going to be an on/off item or always-on? Just wondering.
If its going to slow load time on large images I wouldn't use it. My PVR is already over taxed.
ill make it configurable to be turned on/off.
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#25
2005-07-08, 10:57 PM
im a genius! transitions are working perfect on all image sizes now ! im so happy Smile

i should have an alpha release out in a few days (or even later today).

no new features are really done yet, just want to a few people with large image collections to test it and see how it goes. once the memory probably is solved ill start adding the other new features like "copy" and looking into rotating the EXIF (or whatever it was).
capone
Offline

Posting Freak

Posts: 1,756
Threads: 190
Joined: Jan 2005
#26
2005-07-09, 04:45 AM
looks like I have 3.4k images in my photo dir (daaamn).

I don't think it's a matter of accomodating an ammount, but maybe changing how the temp data is stored. I program in Cold Fusion, and if I were doing it there, I would make a temp table Access and hold the IDs of the images there, and just read from the table (using no mem). I don't know if you're able to do somehting like that.

Otherwise, how about just a random photo show...not creating a random play list, and just doing random numbers and pulling an image?
reven
Offline

Posting Freak

Posts: 5,782
Threads: 396
Joined: Sep 2004
#27
2005-07-09, 05:35 AM
yeah but i still need to make a list of the images, i do this via a recursive directory search. then i (well in new version) shuffle that list about 10 times, and then just go through that list, im sure .net shouldnt have a problem with an arraylist of 3500 (or any size really). i think the next version should handle things like this a lot better, try the alpha when it comes out and tell me how it goes, im sure i could fix it.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): « Previous 1 2 3


Possibly Related Threads…
Thread Author Replies Views Last Post
  Handling simultaneous HTTP requests bgowland 8 3,248 2012-01-29, 12:51 AM
Last Post: bgowland
  A few requests imilne 10 3,924 2011-08-07, 07:53 AM
Last Post: imilne
  videoarchive feature request Koenie 3 1,951 2007-04-06, 05:09 PM
Last Post: Jeff
  Music Albums 2 - Feature request to the author smelcher 8 2,610 2006-12-16, 05:42 PM
Last Post: mcfrojd
  "Skin Engine" requests MixMan 0 1,560 2006-05-13, 06:30 PM
Last Post: MixMan
  Web Admin suggested feature babybob 0 1,131 2006-01-31, 10:12 PM
Last Post: babybob
  My Pictures - number of colours displayed hasso 2 1,391 2006-01-17, 04:15 AM
Last Post: hasso
  My Pictures 3.0.1 beta fix reven 29 8,121 2005-11-11, 07:15 PM
Last Post: deepak
  My Pictures 3 beta reven 47 11,857 2005-10-11, 01:31 AM
Last Post: reven
  My Pictures and music playlists reven 8 2,815 2005-09-13, 11:41 AM
Last Post: reven

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode