Code: Select all
convert main.png +repage -write mpr:XX -filter spline -resize 2080x1430 +dither -remap mpr:XX m.png
Code: Select all
convert main.png +repage -write mpr:XX -filter spline -resize 2080x1430 +dither -remap mpr:XX m.png
That is the same as the previous file. It has only two colours. The bottom-right is entirely black. It cannot make your result mWrongArea.pngguillaumech wrote:Apology, the main.png file was wrong on my server, this is the true file
Code: Select all
convert ^
main4.png +repage ^
-fill Black -filter spline +dither ^
( -clone 0 +opaque rgb(34,34,34) -write mpr:X1 -resize "2080x1430^!" -remap mpr:X1 +transparent rgb(34,34,34) ) ^
( -clone 0 +opaque rgb(68,68,68) -write mpr:X2 -resize "2080x1430^!" -remap mpr:X2 +transparent rgb(68,68,68) ) ^
-background Black ^
-delete 0 ^
-layers flatten ^
mout.png
Code: Select all
convert main.png +repage -write mpr:XX -filter Cubic -resize 2080x1430 +dither -remap mpr:XX spline.png;
Code: Select all
convert spline.png g2.png -interpolate nearestneighbor -clut spline.png;
Code: Select all
convert xc:#FFFFFF xc:#6EA1FF xc:#3770DF xc:#0040BF xc:#FC85F8 xc:#FD42F7 xc:#FF00F7 xc:#FA8484 +append g2.png
Code: Select all
convert ./processing/map/main.png +repage -filter Cubic -resize 2080x1430 ./processing/map/spline.png;
Code: Select all
convert ./processing/map/main.png +repage -filter Box -resize 2080x1430 ./processing/map/spline.png;
Code: Select all
convert main.png +repage -filter Spline -resize 2080x1430 Spline.png;
Code: Select all
convert main.png +repage -filter Box -resize 2080x1430 Box.png;
I don't recall and it is not listed in the changelog.anthony wrote:vectormagick has a free to use online version, but otherwise it isn't free
autotracer.org (not to be confused with "autotrace" software package) seems to be online only.
I did not know magnifier has now implementing the ScaleX algorithm! What version of IM added it?