目前.Net Core上沒有System.Drawing這個類庫,想要在.Net Core上處理圖片得另闢蹊徑。 微軟給出了將來取代System.Drawing的方案,偏向於使用一個單獨的服務端進行各種圖片處理 "https://github.com/dotnet/corefx/issues/202 ...
目前.Net Core上沒有System.Drawing這個類庫,想要在.Net Core上處理圖片得另闢蹊徑。
微軟給出了將來取代System.Drawing的方案,偏向於使用一個單獨的服務端進行各種圖片處理
https://github.com/dotnet/corefx/issues/2020
https://github.com/imazen/Graphics-vNext
但目前仍然沒有一個可用的實現。
下麵我介紹一些目前確實可用於代替System.Drawing的類庫,包括我發佈的ZKWeb.System.Drawing
ImageProcessor
地址: https://github.com/JimBobSquarePants/ImageProcessor/
從3.0開始支持了.Net Core。
支持的很全面,如果只用於轉換縮放圖片,或手動處理像素的話可以最優先考慮這個類庫。
但是不支持描畫驗證碼等描畫類的功能,在將來會支持,可見https://github.com/JimBobSquarePants/ImageProcessor/issues/264。
因為作者尚未把3.0發佈到nuget,安裝需要添加myget的源。
如何添加myget的源可以參考https://www.myget.org/nuget。
添加後使用nuget安裝ImageProcessorCore
即可。
CoreCompat
地址: https://github.com/CoreCompat/CoreCompat
這個類庫使用了mono的System.Drawing實現,只要安裝了之前使用System.Drawing的代碼完全不用修改。
也支持描畫驗證碼等描畫類的功能。
如果需要linux或osx支持,可以安裝runtime.linux.CoreCompat.System.Drawing
和runtime.osx.10.10-x64.CoreCompat.System.Drawing
。
ZKWeb.System.Drawing
地址: https://github.com/zkweb-framework/zkweb.system.drawing
這個類庫是我在使用CoreCompat後感到不滿意而重新創建的一個類庫,也是從mono的System.Drawing修改得來。
這個類庫和CoreCompat的不同點如下
- 沒有使用強名稱,CoreCompat為了讓程式集名稱一樣使用了一個偽造的簽名,但是導致Asp.Net和Owin等會檢查簽名的舊項目啟動失敗
- CoreCompat的項目如果直接下載編譯會出現100多個錯誤,大多是類型找不到的錯誤,我也不知道作者是怎麼編譯過去的
這個項目從mono 4.6.1.13複製了所有需要的文件並修改,直接下載編譯就可以通過 - 可以使用dotnet test跑單元測試,目前通過率約為80%
- 實際在linux上測試過並且給出了各個發行版安裝libgdiplus的命令,目前已測試
- Ubuntu Server 16.04 LTS 64bit
- Fedora 24 64bit
- CentOS 7.2 64bit
- 不引用System.Drawing.Primitive,因為System.Drawing.Primitive在.Net Framework下同時引用了原來的System.Drawing,有可能導致編譯時類型衝突(實測只有警告)
ZKWeb.System.Drawing這個類庫在有更好的代替方案之前將會一直維護,如果使用中遇到問題或錯誤歡迎到項目地址提出issue。