Dallon Xu
Results
2
comments of
Dallon Xu
I used the latest version 1.8.6.
@xtuzy Just use `SKData` to wrap the `stream`, the `stream` will not be closed after `SKBitmap.Decode`. ```cs using(var stream = ***) { var skData = SKData.Create(stream); var bitmap = SKBitmap.Decode(skData);...