Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image resizing with .NET Core? [duplicate]

Is there a libary for image manipulation (mainly resizing and cropping) that works with .NET Core?

I'm aware of ImageResizer and ImageProcessor, but - as far as I can say - those require the full .NET Framework (dnx451) and won't work with .NET Core (dnxcore50) and therefore would only run on Windows.

Is image manipulation already possible with .NET Core?

like image 814
Hannes Sachsenhofer Avatar asked May 29 '15 11:05

Hannes Sachsenhofer


1 Answers

Huge disclaimer before I answer that I am the author of ImageProcessor.

I've been working for the last 6-7 months on a fully managed version of ImageProcessor for .NET Core called I̶m̶a̶g̶e̶P̶r̶o̶c̶e̶s̶s̶o̶r̶C̶o̶r̶e̶. ImageSharp

It's a work in progress but already contains resizing, cropping algorithms as well as filters, edge detection etc.

You can find it on my Github repo

https://github.com/JimBobSquarePants/ImageProcessor

Update: The library has moved to a new home. https://github.com/JimBobSquarePants/ImageSharp

like image 193
James South Avatar answered Dec 17 '22 15:12

James South