Hi,
how to convert simple montage code from cmd line to c#
montage balloon.gif medical.gif present.gif shading.gif -tile 2x2 -label %t montage_array.jpg
for example
i use collection of images and i found this https://stackoverflow.com/questions/401 ... magick-net
but this is not help me ;/
(any link code... )
Montage in c#
-
- Posts: 21
- Joined: 2016-10-03T05:11:21-07:00
- Authentication code: 1151
Re: Montage in c#
Why does that code example not help you? What have you tried sofar and at which part are you stuck?
-
- Posts: 21
- Joined: 2016-10-03T05:11:21-07:00
- Authentication code: 1151
Re: Montage in c#
I cant use this code in c# - I dont know how to convert this code into magick.net instructions ;/
-
- Posts: 21
- Joined: 2016-10-03T05:11:21-07:00
- Authentication code: 1151
Re: Montage in c#
how set up montage into c#
-label %t - from c#
-geometry 300x200+2+2 -> Geometry = new MagickGeometry(string.Format("{300}x{200}", 2, 2)) ?
-tile 5x5 -bordercolor -> TileGeometry = new MagickGeometry(string.Format("{5}x{5}")) ?
-rotate "90<" -> ?
-page 842x595 -> ?
thx
-label %t - from c#
-geometry 300x200+2+2 -> Geometry = new MagickGeometry(string.Format("{300}x{200}", 2, 2)) ?
-tile 5x5 -bordercolor -> TileGeometry = new MagickGeometry(string.Format("{5}x{5}")) ?
-rotate "90<" -> ?
-page 842x595 -> ?
thx
-
- Posts: 21
- Joined: 2016-10-03T05:11:21-07:00
- Authentication code: 1151