Search found 3 matches
- 2016-08-10T01:03:20-07:00
- Forum: Magick.NET
- Topic: Reducing a JPGs resolution without losing quality
- Replies: 6
- Views: 21606
Re: Reducing a JPGs resolution without losing quality
The arguments definitely match, it'd be the unsharp mask which might raise questions, but I double checked and they definitely match to your command line command. Even so, with the command you posted, I get a really dark image. I wonder if the .NET library does something different, or maybe a ...
- 2016-08-09T09:17:18-07:00
- Forum: Magick.NET
- Topic: Reducing a JPGs resolution without losing quality
- Replies: 6
- Views: 21606
Re: Reducing a JPGs resolution without losing quality
Hmm, how strange, using that in .NET is making the image really dark for some reason, so I guess those commands don't really translate directly in to .NET? using (MagickImage mImage = new MagickImage(@"c:\users\craig\desktop\orig.jpg")) { mImage.UnsharpMask(0, 2, 1, 0); mImage.Resize(400, 0); mImage ...
- 2016-08-09T05:03:58-07:00
- Forum: Magick.NET
- Topic: Reducing a JPGs resolution without losing quality
- Replies: 6
- Views: 21606
Reducing a JPGs resolution without losing quality
Hi, I'm giving ImageMagick a go as no matter what I do, the standard C# image functions are useless and will lose image quality. ImageMagick is giving a slightly better output, but I'm still having trouble. Original Image: removed, problem solved Resized: removed, problem solved Perfect Photoshop ...