Montage in c#

Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
Post Reply
architektura
Posts: 21
Joined: 2016-10-03T05:11:21-07:00
Authentication code: 1151

Montage in c#

Post by architektura »

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... )
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: Montage in c#

Post by dlemstra »

Why does that code example not help you? What have you tried sofar and at which part are you stuck?
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
architektura
Posts: 21
Joined: 2016-10-03T05:11:21-07:00
Authentication code: 1151

Re: Montage in c#

Post by architektura »

I cant use this code in c# - I dont know how to convert this code into magick.net instructions ;/
architektura
Posts: 21
Joined: 2016-10-03T05:11:21-07:00
Authentication code: 1151

Re: Montage in c#

Post by architektura »

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
architektura
Posts: 21
Joined: 2016-10-03T05:11:21-07:00
Authentication code: 1151

Re: Montage in c#

Post by architektura »

anybody?
Post Reply