thank you, I've found same solution in 1 min ago.
Thanks for you help, my script is ready)
Search found 6 matches
- 2015-06-22T07:16:14-07:00
- Forum: Users
- Topic: tilt shift on windows mashine
- Replies: 8
- Views: 5819
- 2015-06-22T07:08:46-07:00
- Forum: Users
- Topic: tilt shift on windows mashine
- Replies: 8
- Views: 5819
Re: tilt shift on windows mashine
i think problem is not in
"0,0 black 0,%%h gray80"
I tested, and it works well with double %
I think problem is in ()
here is full command
if %tilt%==true (
MD "%pyt1%Def\small"
FOR %%a in (%pyt1%Def\*.JPG) DO c:\imagemagick\convert.exe %%a -sigmoidal-contrast 15x30%% ( +clone -sparse-color ...
"0,0 black 0,%%h gray80"
I tested, and it works well with double %
I think problem is in ()
here is full command
if %tilt%==true (
MD "%pyt1%Def\small"
FOR %%a in (%pyt1%Def\*.JPG) DO c:\imagemagick\convert.exe %%a -sigmoidal-contrast 15x30%% ( +clone -sparse-color ...
- 2015-06-22T06:18:58-07:00
- Forum: Users
- Topic: tilt shift on windows mashine
- Replies: 8
- Views: 5819
Re: tilt shift on windows mashine
thanks, it's start working in cmd.
But when I put it into bat it stops workink.
I have path to files in %pyt1%\Def
MD "%pyt1%Def\small"
FOR %%a in (%pyt1%Def\*.JPG) DO c:\imagemagick\convert.exe %%a -sigmoidal-contrast 15x30%% ( +clone -sparse-color Barycentric "0,0 black 0,%h gray80" -solarize 50 ...
But when I put it into bat it stops workink.
I have path to files in %pyt1%\Def
MD "%pyt1%Def\small"
FOR %%a in (%pyt1%Def\*.JPG) DO c:\imagemagick\convert.exe %%a -sigmoidal-contrast 15x30%% ( +clone -sparse-color Barycentric "0,0 black 0,%h gray80" -solarize 50 ...
- 2015-06-22T03:38:21-07:00
- Forum: Users
- Topic: tilt shift on windows mashine
- Replies: 8
- Views: 5819
Re: tilt shift on windows mashine
using in cmd, no BAT.
Trying threre(with space), no effect, same error
convert c:\del\00000001.JPG -sigmoidal-contrast 15x30% ( +clone -sparse-color Barycentric '0,0 black 0,%h gray80' -solarize 50% -level 50%,0 -write mpr:blur_map ) -compose Blur -set option:compose:args 10x0 -composite mpr:blur ...
Trying threre(with space), no effect, same error
convert c:\del\00000001.JPG -sigmoidal-contrast 15x30% ( +clone -sparse-color Barycentric '0,0 black 0,%h gray80' -solarize 50% -level 50%,0 -write mpr:blur_map ) -compose Blur -set option:compose:args 10x0 -composite mpr:blur ...
- 2015-06-22T02:48:54-07:00
- Forum: Users
- Topic: tilt shift on windows mashine
- Replies: 8
- Views: 5819
tilt shift on windows mashine
Hi there.
I am trying to use tilt-shift script:
convert beijing_md.jpg -sigmoidal-contrast 15x30% \
\( +clone -sparse-color Barycentric '0,0 black 0,%h gray80' \
-solarize 50% -level 50%,0 -write mpr:blur_map \) \
-compose Blur -set option:compose:args 10x0 -composite \
mpr:blur_map \
-compose ...
I am trying to use tilt-shift script:
convert beijing_md.jpg -sigmoidal-contrast 15x30% \
\( +clone -sparse-color Barycentric '0,0 black 0,%h gray80' \
-solarize 50% -level 50%,0 -write mpr:blur_map \) \
-compose Blur -set option:compose:args 10x0 -composite \
mpr:blur_map \
-compose ...
- 2015-06-22T01:47:39-07:00
- Forum: PerlMagick
- Topic: tilt-shiftin via PerlMagick
- Replies: 0
- Views: 12851
tilt-shiftin via PerlMagick
Hi.
how use these effect:
http://www.imagemagick.org/Usage/photos/#tilt_shift
in perlmagick?
I succesfully use simple command like
$image->Set('gamma'=>'0.75');
$image->Modulate(100,300);
$image->Contrast();
$new=$image->Clone();
but, how i can use these command?
-sparse-color Barycentric ...
how use these effect:
http://www.imagemagick.org/Usage/photos/#tilt_shift
in perlmagick?
I succesfully use simple command like
$image->Set('gamma'=>'0.75');
$image->Modulate(100,300);
$image->Contrast();
$new=$image->Clone();
but, how i can use these command?
-sparse-color Barycentric ...