alexus
February 22nd, 2006, 01:16 PM
I need to resize all the images from my digital camera to thumbnails, and I kind of got it working with this:
find . -iname "*.jpg" | xargs -l -i convert -resize 50% -gravity center -crop 150x170+0+0 {} /home/alexis/forsite/thumbs{}
of course I'm running that in my forsite directoy -- these are photos getting uploaded to my directory. I like how it makes the thumbnails and it works fine, but I'm just wondering why in the terminal it says
convert: unable to open image 'home/alexis/forsite/thumbs/./.cache/1.jpg': No such file or directory.
I probably shouldn't be nitpicking but I'm interested -- I just started with linux a few days ago and love it! thanks :grin: Alexis
find . -iname "*.jpg" | xargs -l -i convert -resize 50% -gravity center -crop 150x170+0+0 {} /home/alexis/forsite/thumbs{}
of course I'm running that in my forsite directoy -- these are photos getting uploaded to my directory. I like how it makes the thumbnails and it works fine, but I'm just wondering why in the terminal it says
convert: unable to open image 'home/alexis/forsite/thumbs/./.cache/1.jpg': No such file or directory.
I probably shouldn't be nitpicking but I'm interested -- I just started with linux a few days ago and love it! thanks :grin: Alexis