Images with glowing ends

Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
robertkjr3d
Posts: 13
Joined: 2015-03-30T13:18:25-07:00
Authentication code: 6789

Re: Images with glowing ends

Post by robertkjr3d »

And again:
I only have a foggy idea of how to duplicate creating foot_t.png with Magick.NET... The tools don't seem to have the same functionality, or enough options.

How would I do this part? Even without the triangulation.
%IM%convert ^
%SRC% ^
( +clone -crop 50x50+100+100 +repage -scale 1x1 +write txt: +delete ) ^

ImageMagick.MagickImage c = image.Clone();
ImageMagick.MagickGeometry mg = new ImageMagick.MagickGeometry(100, 100, 50, 50);
c.Crop(mg);
c.RePage();
c.Scale(1, 1);
c.Write ?? At which point this begins to not make sense.
Post Reply