Mobile app version of vmapp.org
Login or Join
Rambettina927

: Batch convert portrait photo to landscape with blurred, extended background - Windows utility needed (NOT Photoshop) For a slideshow I want to extend 82 portrait images to landscape so that the

@Rambettina927

Posted in: #Background #BatchProcessing #Blur #Scale

For a slideshow I want to extend 82 portrait images to landscape so that the image is duplicated as a blurred background, like this:



will be turned into



This is a one-shot-thing that I probably won't need again soon, so I'd need to use some free (or time limited trial) Windows utility for that. (I know that there are ways using Photoshop scripting, but I don't have Photoshop. I do have Corel PhotoPaint, if that's of any use.)

Do you know of any quick and dirty way to achieve this?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Rambettina927

1 Comments

Sorted by latest first Latest Oldest Best

 

@Samaraweera207

@Metasomatism : Your comment lead me to the solution. If you change that to an answer I'll gladly accept it.

The command that does the trick is

for /f "delims=?" %f in ('dir *.jpg /b') do convert -size 1024x768 xc:skyblue "%f" -blur 0x25 -geometry 1024x768 -gravity northwest -composite "%f" -geometry 1024x768 -blur 0x25 -gravity southeast -composite "%f" -geometry 1024x768 -gravity center -composite "new_%f"


The commandline for ImageMagick is essentially this:

convert -size 1024x768 xc:skyblue
in.jpg -geometry 1024x768 -blur 0x25 -gravity northwest -composite
in.jpg -geometry 1024x768 -blur 0x25 -gravity southeast -composite
in.jpg -geometry 1024x768 -gravity center -composite
out.jpg


which first creates an empy (well, light blue) canvas of the desired size (here 1024x768 as the images will be shown on an XGA beamer). Then the picture in.jpg is added three times: once in the topleft corner being heavily blurred, once more in the lower right hand corner, also blurred, and once in the center, this one unblurred. This yields the desired effect. It also handles panorama pictures, i.e. pics that are in wide landscape mode. Here, the blurred image is added to the top and bottom, whereas normal portrait pics the blurred pics are to the left and right.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme