+ Post New Thread
Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
Web Development Thread, Mass Image Resize in Coding and Web Development; Try this - Thumb-Nail-It Quick and easy...
  1. #16
    alan-d's Avatar
    Join Date
    Aug 2005
    Location
    Sutton Coldfield
    Posts
    2,272
    Thank Post
    296
    Thanked 204 Times in 152 Posts
    Rep Power
    62

    Re: Mass Image Resize

    Try this - Thumb-Nail-It

    Quick and easy


  2. IDG Tech News

  3. #17

    Join Date
    Mar 2006
    Location
    Kent
    Posts
    33
    Thank Post
    1
    Thanked 1 Time in 1 Post
    Rep Power
    0

    Re: Mass Image Resize

    For a quick job of about 10 images (it crashes if it has to do too many, but I'm sure it'll get better) try this one - PLiska Image Resizer, from here PLISKA. I like the ease of use.

    Ian R

  4. #18
    OverWorked's Avatar
    Join Date
    Jul 2005
    Location
    N. Yorks
    Posts
    944
    Thank Post
    180
    Thanked 39 Times in 32 Posts
    Rep Power
    23

    Re: Mass Image Resize

    Unidream PowerBatch

    It looks very powerful, but I only used ot for one job.

    I used it a couple of years ago to produce a CD of images for our school's anniversary. I resized hundreds of images to fit on one CD.

  5. #19


    Join Date
    Jan 2006
    Posts
    6,457
    Thank Post
    324
    Thanked 740 Times in 557 Posts
    Rep Power
    201

    Re: Mass Image Resize

    Code:
    for image in *.jpg; do target=`echo $image | sed s/.jpg/_small.jpg/`;
    convert $image -quality 25 -size 300x100 $target; rm -rf $image;  done

  6. #20

    SimpleSi's Avatar
    Join Date
    Jun 2005
    Location
    Lancashire
    Posts
    4,965
    Thank Post
    1,188
    Thanked 445 Times in 348 Posts
    Rep Power
    136

    Re: Mass Image Resize

    for image in *.jpg; do target=`echo $image | sed s/.jpg/_small.jpg/`;
    convert $image -quality 25 -size 300x100 $target; rm -rf $image; done
    mm- I think right-click - resize works better for teachers and pupils

    regards

    Simon

  7. #21
    linkazoid's Avatar
    Join Date
    May 2007
    Location
    London
    Posts
    550
    Thank Post
    89
    Thanked 81 Times in 65 Posts
    Rep Power
    55

    Re: Mass Image Resize

    Have you tried Microsoft Image resizer does exactly what it says on the tin!

    .Link

  8. #22
    PEO
    PEO is offline
    PEO's Avatar
    Join Date
    Oct 2007
    Posts
    2,050
    Thank Post
    422
    Thanked 147 Times in 92 Posts
    Rep Power
    66
    Never tried the ms photo resize till now. used couple of mentioned tools but this seemed more handy for rewriting over origionals without any problems.

    Cheers

  9. #23
    zag
    zag is offline
    zag's Avatar
    Join Date
    Mar 2007
    Location
    Reading, UK
    Posts
    2,130
    Blog Entries
    10
    Thank Post
    273
    Thanked 176 Times in 149 Posts
    Rep Power
    43
    I use the XP powertoy to secretly resize staff photos on our network, works great

  10. #24

    RabbieBurns's Avatar
    Join Date
    Apr 2008
    Location
    Sydney
    Posts
    4,747
    Blog Entries
    6
    Thank Post
    1,015
    Thanked 427 Times in 272 Posts
    Rep Power
    141
    Im trying to use the MS image resizer, but as there is so many thousands of pictures, the right click doesnt appear, it just hangs.

    Is there any way to use the image resizer by cli instead?

    Or is there one i can use that will trawl the whole share and resize ?

    Cybernerds command would be ideal, is there a windows equivelent command?

  11. #25

    Ric_'s Avatar
    Join Date
    Jun 2005
    Location
    London
    Posts
    7,623
    Thank Post
    96
    Thanked 685 Times in 528 Posts
    Rep Power
    158
    @RabbieBurns: CygWin can be used for this I think (see Cygwin Information and Installation ). I think you can also use GIMP (see GIMP - Batch Mode )

  12. #26


    Join Date
    Jan 2006
    Posts
    6,457
    Thank Post
    324
    Thanked 740 Times in 557 Posts
    Rep Power
    201
    The imagemagick commands do run on windows already, you'd just need to write a batch file or use ric's cygwin suggestion
    ImageMagick: Install from Binary Distribution

  13. #27
    ChrisH's Avatar
    Join Date
    Jun 2005
    Location
    East Lancs
    Posts
    4,810
    Thank Post
    89
    Thanked 212 Times in 195 Posts
    Rep Power
    83
    Check this thread for the script I wrote a few years ago to to back to convert between formats. You can alter this to do the functions you require.

    Batch image convert...

  14. #28

    RabbieBurns's Avatar
    Join Date
    Apr 2008
    Location
    Sydney
    Posts
    4,747
    Blog Entries
    6
    Thank Post
    1,015
    Thanked 427 Times in 272 Posts
    Rep Power
    141
    Thanks for the replies. ChrisH, Ill give it a go, thanks.

  15. #29

    RabbieBurns's Avatar
    Join Date
    Apr 2008
    Location
    Sydney
    Posts
    4,747
    Blog Entries
    6
    Thank Post
    1,015
    Thanked 427 Times in 272 Posts
    Rep Power
    141
    OK, I have no clue what Im looking at, vbs is not something ive ever dabbled with heh

    What would I edit to change this to resize large JPGs to 1024x768?

    Cheers

SHARE:
+ Post New Thread
Page 2 of 2 FirstFirst 12

Similar Threads

  1. User shares on mass
    By edie209 in forum Windows
    Replies: 4
    Last Post: 5th November 2007, 03:50 PM
  2. Mass Logon
    By FN-GM in forum Network and Classroom Management
    Replies: 28
    Last Post: 18th August 2007, 07:45 PM
  3. mass remote logon.
    By starscream in forum Windows
    Replies: 3
    Last Post: 26th July 2007, 07:55 PM
  4. Mass search and replace
    By Fletcher_Bravo in forum Windows
    Replies: 2
    Last Post: 5th July 2006, 03:44 PM
  5. Replies: 15
    Last Post: 15th February 2006, 10:22 AM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •