.Net Core上用于代替System.Drawing的類庫(kù)

目前.Net Core上沒(méi)有System.Drawing這個(gè)類庫(kù),想要在.Net Core上處理圖片得另辟蹊徑。

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

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

ImageProcessor

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

因?yàn)樽髡呱形窗?.0發(fā)布到nuget,安裝需要添加myget的源。
如何添加myget的源可以參考https://www.myget.org/nuget。
添加后使用nuget安裝ImageProcessorCore即可。

CoreCompat

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

如果需要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
這個(gè)類庫(kù)是我在使用CoreCompat后感到不滿意而重新創(chuàng)建的一個(gè)類庫(kù),也是從mono的System.D

網(wǎng)友評(píng)論