Author Topic: Python script to resize jpg's  (Read 2046 times)

Offline peewee_RotA

  • Brobdingnagian Member
  • ***
  • Posts: 4152
  • Hi, I'm from the gov'ment and I'm here to help you
    • View Profile
  • Rated:
Python script to resize jpg's
« on: July 25, 2009, 01:21:10 PM »
I had a dilemma of backing up over 3GB of images on my wife's computer so that she can reinstall. As always, python is the solution. I used the following script to resize all of the jpeg images in a directory proportionally based on size. If you decide to reuse this, then you'll want to alter the sizeMod values.

This was written using Python 2.5 with the Python Imaging Library (PIL)

Code: [Select]
import Image
import sys, os
import string

errorOut = sys.stderr
errorOutput = open('imgresize.log', 'w')
sys.stderr = errorOutput

def resizeImg(imgFile):
    print("PY - resizeImg - " + imgFile)

    myLen = len(imgFile)
    myExt = string.lower(imgFile[myLen - 4:myLen])
    if (myExt != ".jpg"):
        print ("Bad extension: " + myExt)
        return

    img1 = Image.open(imgFile)

    img1Size = img1.size
    if img1Size[0] > 3000:
        sizeMod = 0.25       
    elif img1Size[0] > 2000:
        sizeMod = 0.35
    elif img1Size[0] > 1000:
        sizeMod = 0.5
    else:
        print "File " + imgFile + "Already at size X: " + str(img1Size[0]) + " Y: " + str(img1Size[1])
        return

    sizex = img1Size[0] * sizeMod
    sizey = img1Size[1] * sizeMod

    print "Changing file: " + imgFile + " from X: " + str(img1Size[0])+ " Y: " + str(img1Size[1]) + "To X: " + str(sizex) + " Y: " + str(sizey)

    img2 = img1.resize((int(sizex), int(sizey)), Image.ANTIALIAS)

    img2.save(imgFile)

    print("PY - resizeImgSuccess")

def main():
    for root, dirs, files in os.walk("./"):
        for file in files:
            currentFile = os.path.join(root, file)
            if (os.path.isfile(currentFile)):
                resizeImg(currentFile)
            else:
                print "Does Not Exist: " + currentFile       

main()
« Last Edit: July 25, 2009, 03:34:11 PM by peewee_RotA »
  • Insightful
    Informative
    Funny
    Nice Job / Good Work
    Rock On
    Flawless Logic
    Well-Reasoned Argument and/or Conclusion
    Demonstrates Exceptional Knowlege of the Game
    Appears Not to Comprehend Game Fundamentals
    Frag of the Week
    Frag Hall of Fame
    Jump of the Week
    Jump Hall of Fame
    Best Solution
    Wins The Internet
    Whoosh! You done missed the joke thar Cletus!
    Obvious Troll Is Obvious
    DO YOU EVEN LIFT?
    DEMO OR STFU
    Offtopic
    Flamebait
    Redundant
    Factually Challenged
    Preposterously Irrational Arguments
    Blindingly Obvious Logical Fallacies
    Absurd Misconstrual of Scientific Principles or Evidence
    Amazing Conspiracy Theory Bro
    Racist Ignoramus
GOTO ROTAMODS (rocketgib)
GOTO ROTAMAPS (fireworks)
HappyFriar- q2server.fuzzylogicinc.com
 Tune in to the Tastycast!!!!  http://dna.zeliepa.net

Offline peewee_RotA

  • Brobdingnagian Member
  • ***
  • Posts: 4152
  • Hi, I'm from the gov'ment and I'm here to help you
    • View Profile
  • Rated:
Re: Python script to resize jpg's
« Reply #1 on: July 25, 2009, 03:21:22 PM »
NOTE: This function only works in the base directory. If there are any sub directories then it will blow up as soon as it reaches a file inside of one of them. The fix for this is something along the lines of:
os.path.join(root, file)

but I haven't had sufficient time to make that change.


Anybody that can figure this out please post :D
  • Insightful
    Informative
    Funny
    Nice Job / Good Work
    Rock On
    Flawless Logic
    Well-Reasoned Argument and/or Conclusion
    Demonstrates Exceptional Knowlege of the Game
    Appears Not to Comprehend Game Fundamentals
    Frag of the Week
    Frag Hall of Fame
    Jump of the Week
    Jump Hall of Fame
    Best Solution
    Wins The Internet
    Whoosh! You done missed the joke thar Cletus!
    Obvious Troll Is Obvious
    DO YOU EVEN LIFT?
    DEMO OR STFU
    Offtopic
    Flamebait
    Redundant
    Factually Challenged
    Preposterously Irrational Arguments
    Blindingly Obvious Logical Fallacies
    Absurd Misconstrual of Scientific Principles or Evidence
    Amazing Conspiracy Theory Bro
    Racist Ignoramus
GOTO ROTAMODS (rocketgib)
GOTO ROTAMAPS (fireworks)
HappyFriar- q2server.fuzzylogicinc.com
 Tune in to the Tastycast!!!!  http://dna.zeliepa.net

Offline peewee_RotA

  • Brobdingnagian Member
  • ***
  • Posts: 4152
  • Hi, I'm from the gov'ment and I'm here to help you
    • View Profile
  • Rated:
Re: Python script to resize jpg's
« Reply #2 on: July 25, 2009, 03:33:08 PM »
Fixed it. I was using the wrong function while testing to check if a file exists but I've figured it out now. Updated original post
  • Insightful
    Informative
    Funny
    Nice Job / Good Work
    Rock On
    Flawless Logic
    Well-Reasoned Argument and/or Conclusion
    Demonstrates Exceptional Knowlege of the Game
    Appears Not to Comprehend Game Fundamentals
    Frag of the Week
    Frag Hall of Fame
    Jump of the Week
    Jump Hall of Fame
    Best Solution
    Wins The Internet
    Whoosh! You done missed the joke thar Cletus!
    Obvious Troll Is Obvious
    DO YOU EVEN LIFT?
    DEMO OR STFU
    Offtopic
    Flamebait
    Redundant
    Factually Challenged
    Preposterously Irrational Arguments
    Blindingly Obvious Logical Fallacies
    Absurd Misconstrual of Scientific Principles or Evidence
    Amazing Conspiracy Theory Bro
    Racist Ignoramus
GOTO ROTAMODS (rocketgib)
GOTO ROTAMAPS (fireworks)
HappyFriar- q2server.fuzzylogicinc.com
 Tune in to the Tastycast!!!!  http://dna.zeliepa.net

 

El Box de Shoutamente

Last 10 Shouts:

 

|iR|Focalor

April 02, 2025, 02:47:07 AM
 

Yotematoi

February 14, 2025, 12:41:48 PM
 :-*
 

|iR|Focalor

February 13, 2025, 07:31:24 AM
I was on DM this morning for the first time in a pretty long time. Seemed fine to me.

0rbisson

February 13, 2025, 04:54:21 AM
DM server is fucked. 2 point blank rockets from spawn and lava damage and player survived? WTF?" Also someone has fucked with the spawn points, every single time no matter how big the map you spawn right in front of the person who killed you last
 

rikwad

February 08, 2025, 10:48:18 PM
Seattle FFA now has working HTTP downloads. Thanks Unholy!
 
RIP Pepp   ✟
 
 

-Unh0ly-

February 03, 2025, 01:20:14 AM
vvvALL WEAPS HAVE MUZZLE FLASH vvvv
 

|iR|Focalor

December 25, 2024, 12:15:35 AM
 

|iR|Focalor

December 25, 2024, 12:06:54 AM
 

RailWolf

December 23, 2024, 09:15:50 AM
Fixed the image for you =)
And Die Hard is a great Christmas movie

Show 50 latest
Welcome, Guest. Please login or register.
April 04, 2025, 12:41:03 AM

Login with username, password and session length