Search found 4 matches

by zajic
2017-12-01T09:45:03-07:00
Forum: Magick.NET
Topic: Making tif file with jpeg compression
Replies: 3
Views: 12295

Re: Making tif file with jpeg compression

I am not using command line at all. The code you see is all I am doing. Here is even simpler version of it: (the input, in the sourcePath, is a jpeg file) MagickImage mgck = new MagickImage(sourcePath); mgck.CompressionMethod = CompressionMethod.JPEG; mgck.Write(outputPath + fileName + ".tif&qu...
by zajic
2017-11-24T09:18:52-07:00
Forum: Magick.NET
Topic: Making tif file with jpeg compression
Replies: 3
Views: 12295

Making tif file with jpeg compression

Hi, This may be a simple task, but I can't find a solution for it in Magick.NET I have an image and I want to compress it with JPEG compression and add it into a TIF file. This is my code: MagickImage mgckImgTif = new MagickImage(new Bitmap(firstImageFromScanner)); mgckImgTif.CompressionMethod = Com...
by zajic
2017-10-04T08:35:04-07:00
Forum: Magick.NET
Topic: How to write this ImageMagick command in Magick.NET?
Replies: 2
Views: 11985

Re: How to write this ImageMagick command in Magick.NET?

Thanks for the help!
by zajic
2017-09-26T10:34:08-07:00
Forum: Magick.NET
Topic: How to write this ImageMagick command in Magick.NET?
Replies: 2
Views: 11985

How to write this ImageMagick command in Magick.NET?

Hi, I need to write this convert in C#, but I just can't wrap my head around it. I can't find any equivalent for +swap, minus has two options in Magick.NET (minusDst, minusSrc), etc. Can someone please help me with this? Here is the convert command: convert pic.jpg cloneBlur.jpg +swap -compose minus...