Search found 2 matches

by Stepo
2012-10-18T10:33:11-07:00
Forum: Developers
Topic: Error with resizing content of folder
Replies: 2
Views: 5591

Re: Error with resizing content of folder

Hi man!
I wish I could invite you for a beer! Oh gosh, you live in Valley, I want visit Valley at least once in my life ;) But before my trip to Valley, I must do what Lenin said: "Study, study, study!" :lol:
It works very well, thanks! :)
Stepo
by Stepo
2012-10-17T11:00:53-07:00
Forum: Developers
Topic: Error with resizing content of folder
Replies: 2
Views: 5591

Error with resizing content of folder

Hello,
I have a bash script operating with ImageMagick and I can't get resized image.

#!/bin/bash
FILES=/srv/www/vhosts/detsky-pokoj.biz/httpdocs/components/com_virtuemart/shop_image/product/*
for f in $FILES
do
if [[ $f == *.jpg ]]; then
convert -resize 175x175 $f
fi
done;

When I execute ...