This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#9124 - Pictures gallery plugin (photogallery)
Attached to Project:
Rockbox
Opened by Clément Pit--Claudel (CFP) - Thursday, 26 June 2008, 21:08 GMT+2
Last edited by Nicolas Pennequin (nicolas_p) - Friday, 27 June 2008, 00:28 GMT+2
Opened by Clément Pit--Claudel (CFP) - Thursday, 26 June 2008, 21:08 GMT+2
Last edited by Nicolas Pennequin (nicolas_p) - Friday, 27 June 2008, 00:28 GMT+2
|
DetailsThis is a gallery plug-in for all rockbox players with color LCDs. It displays a set of x*y pictures, through which the user browses.
Photogallery plug-in uses bitmap files, for both thumbnails and full screen views. Thus, you'll need to first generate a gallery, i.e. resize all your pictures to your DAP screen size, and then generate thumbnails for all those pictures, which will be placed in a '.thumbnails' directory, which itself should be created for each folder containing images that you intend to view in the gallery. Creating a list of pictures to display in the gallery is also necessary, although photogallery can do this for you (still buggy in some cases though). I have coded a soft to do all this automatically. Therefore, the user’s part of the job is just to specify where to take the pictures from, and where to save them. The soft will also generate the list of all pictures to display in the gallery, labeled pictures_list.pic (more details on my website), as well as the config file. Then, when the plug-in loads, it will read from photogallery.config file where to get thumbnails and will then load thumbnails listed in pictures_list.pic, and finally display the gallery. I've attached the diff file for this plug-in, and screenshots as well as additional information are avaliable on my website (http://cfpcreators.free.fr/?ref=software&id=photogallery). Although the process of generating a gallery sounds quite complicated, it is rather simple. Everything is automated if you use this program: http://cfpcreators.free.fr/?ref=software&id=rbtools, although it only works for windows users. Feel free to comment on this plug-in. CFP. |
This task depends upon
CFP.
what compiler to which path ?
i get some error related to the home/ path only, what am i supposed to do
im compiling for the h10[20GB]
And there is no "h10 compiler". The correct compiler for the h10 is arm-elf-gcc.
im attaching the synced patch just a change of one line, the file was modified recently to alphabetical order
2.bluebrother stop being so judgemental & chill, during compiling there is an error with credits.elf & photogallery.elf
thats what my first comment meant, that the patch does not compile
Still, I don't understand your problem at all. I really have no problem building from a clean SVN. And I understood that the patch did not compile, but if you don't give me any precisions, I'll have a hard time helping you.
-- Script --
#!/bin/bash
export PATH=$PATH:/usr/local/arm-elf/bin
mkdir ~/Documents/Rockbox
cd ~/Documents/Rockbox
svn co svn://svn.rockbox.org/rockbox/trunk source
cd source
mkdir build
cd build
../tools/configure
cd ~/Documents/Rockbox/source/build
make
-- End of script --
Any details about the error you get ?
* Smoothed browsing.
* Added possibility to load a gallery by opening the .pic file from browser.
* If the dir specified in the config file does not exist, or parameters can't be correctly read, exit.
* In case no config file is found, a new one is created including a path to the default directory /Pictures and a display of 1 per 1 to avoid segfaulting.
* Removed unused parameter "top_offset".
* (sorted entries in CATEGORIES)