.Net Core上用于代替System.Drawing的類庫

目前.Net Core上沒有System.Drawing這個類庫,想要在.Net Core上處理圖片得另辟蹊徑。

微軟給出了將來取代System.Drawing的方案,偏向于使用一個單獨(dú)的服務(wù)端進(jìn)行各種圖片處理
https://github.com/dotnet/corefx/issues/2020
https://github.com/imazen/Graphics-vNext
但目前仍然沒有一個可用的實現(xiàn)。

下面我介紹一些目前確實可用于代替System.Drawing的類庫,包括我發(fā)布的ZKWeb.System.Drawing

ImageProcessor

地址: https://github.com/JimBobSquarePants/ImageProcessor/
從3.0開始支持了.Net Core。
支持的很全面,如果只用于轉(zhuǎn)換縮放圖片,或手動處理像素的話可以最優(yōu)先考慮這個類庫。
但是不支持描畫驗證碼等描畫類的功能,在將來會支持,可見https://github.com/JimBobSquarePants/ImageProcessor/issues/264。

因為作者尚未把3.0發(fā)布到nuget,安裝需要添加myget的源。
如何添加myget的源可以參考https://www.myget.org/nuget。
添加后使用nuget安裝ImageProcessorCore即可。

CoreCompat

地址: https://github.com/CoreCompat/CoreCompat
這個類庫使用了mono的System.Drawing實現(xiàn),只要安裝了之前使用System.Drawing的代碼完全不用修改。
也支持描畫驗證碼等描畫類的功能。

如果需要linux或osx支持,可以安裝runtime.linux.CoreCompat.System.Drawingruntime.osx.10.10-x64.CoreCompat.System.Drawing

ZKWeb.System.Drawing

地址: https://github.com/zkweb-framework/zkweb.system.drawing
這個類庫是我在使用CoreCompat后感到不滿意而重新創(chuàng)建的一個類庫,也是從mono的System.D