01-21-2024, 09:38 AM
@PixLab - The great thing about Gimp, always many options.
@rinaldop Although this is a Gimp forum, so this is off topic, but I mentioned before ImageMagick (IM).
For a single image it might be this, looks a bit daunting at first
where:
-gravity center works in the middle of the image (keeps those rounded ends)
-chop "width"x0 is the size of the strip to remove (7 pixels )
-background none ensures transparency
-compose copy -gravity east pushes to the right side
-extent 420x37 restores the canvas size.
Of course you need to put that in a loop. (Using AIDA64 ? Long time since I used that, so assuming Windows) and I am not much use with Windows batch files, but in linux it looks like this.
https://i.imgur.com/WptLwHo.mp4
@rinaldop Although this is a Gimp forum, so this is off topic, but I mentioned before ImageMagick (IM).
For a single image it might be this, looks a bit daunting at first
Code:
magick base.png -gravity center -chop "width"x0 -background none -compose Copy -gravity east -extent 420x37 out.png
where:
-gravity center works in the middle of the image (keeps those rounded ends)
-chop "width"x0 is the size of the strip to remove (7 pixels )
-background none ensures transparency
-compose copy -gravity east pushes to the right side
-extent 420x37 restores the canvas size.
Of course you need to put that in a loop. (Using AIDA64 ? Long time since I used that, so assuming Windows) and I am not much use with Windows batch files, but in linux it looks like this.
https://i.imgur.com/WptLwHo.mp4