Question on Convert + Montage
Posted: 2012-10-12T21:31:00-07:00
I tried to create a thumbnail image:
But the result is obviously wrong:
What's wrong with the command lines I used?
Code: Select all
set DOUSM=-unsharp 0x0.75+0.75+0.008
set RESIZE=83x61! -alpha off +repage
convert wizard: -set colorspace sRGB -colorspace RGB ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -define filter:window=Quadratic -define filter:lobes=3 -distort resize %RESIZE% -set caption "E/QuadraticJinc" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
^( -clone 0 -define filter:window=Quadratic -define filter:lobes=3 -distort resize %RESIZE% %DOUSM% -set caption "E/QuadraticJinc/U" ^) ^
^( -clone 0 -filter Point -resize %RESIZE% -set caption "Point" ^) ^
-delete 0 -colorspace sRGB temp.miff
montage -label "%[caption]" temp.miff -geometry "120x75^>+2+2" -tile 5x ^
-background lightgrey -fill black -title "Downsampling Test" ^
-depth 8 -quality 95% downsamplingtest.png
What's wrong with the command lines I used?