Cropping multiple images with Gimp and script-fu
I recently had a series of video screenshots from a Gotomeeting screencapture. The presenter screen had resolution 1366×768; the meeting organiser 1920×1080.
The result was that all the images were surrounded with a black border. In turning the screencapture into a set of stills to represent as narrated video, I used the following in Gimp
- Start Gimp and enter Filters | Script-fu | Console
- In the console that comes up, paste the following to define the batch-resize function
(define (batch-resize pattern new-width new-height offx offy) (let* ((filelist (cadr (file-glob pattern 1)))) (while (not (null? filelist)) (let* ((filename (car filelist)) (image (car (gimp-file-load RUN-NONINTERACTIVE filename filename))) (drawable (car (gimp-image-get-active-layer image)))) (gimp-layer-resize drawable new-width new-height offx offy) (gimp-image-resize-to-layers image) (gimp-file-save RUN-NONINTERACTIVE image drawable filename filename) (gimp-image-delete image)) (set! filelist (cdr filelist)))))
- Then in the same console you can run the following
(batch-resize "/path/to/screenshots/*png" 1366 768 -272 -157)
Note that this was on a windows system – and the format of the filesystem path is still with forward slash. Note also, this will replace existing files with modified versions.
If you want to perform some other form of processing on each file, the key function to replace is (gimp-layer-resize …)
Form more information, see the Script-fu Tutorial or the Gimp scripting manualIT