Re: Blurred border using Mogrify
Posted: 2010-06-14T23:19:19-07:00
Hi,
i've tried that before.. without success
Thanks
i've tried that before.. without success

Thanks
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://download.imagemagick.org/discourse-server/
https://download.imagemagick.org/discourse-server/viewtopic.php?t=12114
I don't believe that IM supports Lightroom mogrify. The Lightroom people may have cut out part of IM a while ago for the mogrify, but then it was up to them to keep it current. So perhaps they have not kept the Lightroom version of mogrify up to speed with the changes in IM mogrify.dehein2 wrote:no one an idea? i just dont see why it works "stand-alone" but not with Lightroom...
THANKS
Code: Select all
@echo off
echo Processing...
:loop
if "%1"=="" goto endloop
if exist %1 call convert %1 ( +clone -blur 10x4 -fill white -colorize 30% ) ( +clone -gamma 0 -shave 30x30 -bordercolor white -border 30x30 ) -composite ( +clone -gamma 0 -shave 30x30 -bordercolor white -border 1x1 -bordercolor black -border 29x29 ) -compose screen -composite %1
shift
goto loop
:endloop
Code: Select all
@echo off
echo Processing...
:loop
if "%1"=="" goto endloop
if exist %1 call "C:\Program Files\ImageMagick-6.6.2-Q16\convert.exe" ( +clone -blur 10x4 -fill white -colorize 30% ) ( +clone -gamma 0 -shave 30x30 -bordercolor white -border 30x30 ) -composite ( +clone -gamma 0 -shave 30x30 -bordercolor white -border 1x1 -bordercolor black -border 29x29 ) -compose screen -composite %1 %1
shift
goto loop
:endloop