On Thu, Apr 14, 2011 at 23:44, Ankur Gupta <[email protected]> wrote:

> Hi all,
> >Please tell me that how facebook compresses the images before
> >uploading to the server?
>

Facebook doesn't show images at a higher resolution than 610x610 so if you
feel like compressing it.

<code>

    #!/bin/bash
    for image in `ls *.JPG`
    do
        convert $image -resize 610x610 $image;
    done
</code>


Arjun S R <[email protected]>
College Of Engineering,Trivandrum <http://www.cet.ac.in/home.php>
Facebook : http://www.facebook.com/Arjun.S.R
Twitter: http://twitter.com/Arjun_S_R

-- 
LUG@IITD - http://lug-iitd.org/Footer

Reply via email to