I hope this belongs in this section - I couldn't find one which was more fitting.
I was looking for an app which would convert my Images I took to smaller ones for my website. I searched 2 days and found 1 program which seamed to be to one I searched for but unfortunately it didn't worked.
The app shall:
- ask for the folder where the to be converted images are
- ask for the max width and hight of the new image and the jpg quality
- ask for the output path
- generate the new images and save them in the output path
- (optional) write a javascript file like this:
- Code: Select all
var bilder = new Array();
bilder[0] = new Array();
bilder[0][0] ="Bild-1"; //filename
bilder[0][1] =64; //hight of small version
bilder[0][2] =45; //width of small version
bilder[0][3] =512; //height of medium version
bilder[0][4] =362; //width of medium version
bilder[0][5] =864; //height of big version
bilder[0][6] =611; //width of big version
bilder[0][7] =35; //position in the gallery (to configure this would be awesome)
bilder[0][8] =7; //position in the mini-gallery (to configure this would be awesome)
bilder[0][9] =false; //loading state
bilder[1] = new Array();
bilder[1][0] ="Bild-2";
bilder[1][1] =45;
bilder[1][2] =64;
bilder[1][3] =356;
bilder[1][4] =512;
bilder[1][5] =802;
bilder[1][6] =1152;
bilder[1][7] =432;
bilder[1][8] =59;
bilder[1][9] =false;
...
I hope someone can create this app

Thanks,
Snorfes


