Solved How to automatically delete/filter images which are smaller than X

robin77

New member
Member
VIP
Local time
5:20 AM
Messages
93
As the title says. I need a script or program which can check images inside a folder for their size and delete/filter everything below a certain threshold.

by size I mean of course the image dimensions - not the file size.


for example - keep only images which are wider than 640 pixels.

Any ideas? ; )
 

My Computer My Computer

At a glance

Windows7
OS
Windows7
You don't need any special software for that. The Search in windows explorer can be used for that.
All you have to do is specify the tags for Height and Width

Code:
width:<800 height:<600
This will list all the images in the folder with dimensions less than 800x600

Code:
width:800 height:=600
This will list all the images in the folder with dimensions exactly 800x600 (The = is optional)

Search.PNG

You can use <, >, = and AND, OR in the search. By default AND is the operator used, if you have multiple tags in the search.

Check this link for more...
Advanced tips for searching in Windows
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64 (XP, 98SE, 95, 3.11, D...Intel Core 2 Duo Processor P8600 (2.40 GHz, 3...4GB 800 MHz DDR2 SDRAMATI Mobility FireGL V5700 with 256 MB
Computer type
Laptop
Computer Manufacturer/Model Number
HP EliteBook 8530w Mobile Workstation
OS
Windows 7 Ultimate x64 (XP, 98SE, 95, 3.11, DOS 7.10 on VM) + Ubuntu 10.04 LTS Lucid Lynx
CPU
Intel Core 2 Duo Processor P8600 (2.40 GHz, 3 MB L2 cache)
Motherboard
Mobile Intel PM45 Express Chipset ICH9M-Enhanced
Memory
4GB 800 MHz DDR2 SDRAM
Graphics Card(s)
ATI Mobility FireGL V5700 with 256 MB
Sound Card
SoundMAX Integrated Digital HD Audio
Monitor(s) Displays
15.4-inch WXGA anti-glare (1280 x 800 resolution)
Screen Resolution
1280 x 800
Hard Drives
500GB + 1TB
Mouse
Synaptics PS/2 Port Touchpad, USB Mouse
Internet Speed
4 Mbps
Antivirus
MSE
Browser
Firefox, Chrome, IE
Other Info
Authentec AES2810 Fingerprint Reader
Excellent Solution.
THANK YOU!
 

My Computer My Computer

At a glance

Windows7
OS
Windows7
Back
Top