NetImageLibrary icon indicating copy to clipboard operation
NetImageLibrary copied to clipboard

Library to help with image handling such as resizing, cropping, applying filters (brightess, contrast, unsharpen mask, chroma key etc), watermarking, thumbnail creation, opening/saving files or stream...

Results 10 NetImageLibrary issues
Sort by recently updated
recently updated
newest added

Is there a plan to upgrade this library to Net Core? I got a warning. ![image](https://user-images.githubusercontent.com/3822009/167004317-f8b4a7d2-5394-4cf4-9e8e-fdbf404c24e1.png)

Hello Frederik, I am curently trying to upgrade my CineFilm digitization tools from Home to WPF. I got the following warnings when I do the debugg compilation using .NET 5.08...

Hello, is this library compatible with xamarin android or iOS ?

Hello Fredrik, you can probably remember me, the person which coded the CineStripScanner probably one of the very first users of the the Kaliko Image Library FastFilters to apply Unsharpmask...

my png's bit depth is 24, but `SavePng` method is 32, which increase the size of the image

enhancement

What is the most efficient way to get the contents of KalikoImage into a PictureBox.Image? Many thanks

Hi Fredrik, I am a developer of [DotImaging](https://github.com/dajuric/dot-imaging), minimalist .NET imaging platform. I have seen your library and I am open for a possible collaboration. If you are interested, or...

Do you have any doc on how to use the new chroma key filter (preferably c#).

documentation

``` MemoryStream memstream = new MemoryStream(); bitmap2.Save(memstream, System.Drawing.Imaging.ImageFormat.Png); KalikoImage imgklk = new KalikoImage(memstream); imgklk.ApplyFilter(new UnsharpMaskFilter(150f, 100f, 200)); imgklk.SavePng(memstream); Bitmap bitmap3 = new Bitmap(memstream); ``` This is my code for filtering...