update skia decoding
This commit is contained in:
parent
e318e2ab9f
commit
6eec35ecbd
|
@ -183,8 +183,8 @@ namespace Emby.Drawing.Skia
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private string[] TransparentImageTypes = new string[] { ".png", ".gif", ".webp" };
|
private static string[] TransparentImageTypes = new string[] { ".png", ".gif", ".webp" };
|
||||||
private SKBitmap Decode(string path, bool forceCleanBitmap, out SKCodecOrigin origin)
|
internal static SKBitmap Decode(string path, bool forceCleanBitmap, out SKCodecOrigin origin)
|
||||||
{
|
{
|
||||||
var requiresTransparencyHack = TransparentImageTypes.Contains(Path.GetExtension(path) ?? string.Empty);
|
var requiresTransparencyHack = TransparentImageTypes.Contains(Path.GetExtension(path) ?? string.Empty);
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,8 @@ namespace Emby.Drawing.Skia
|
||||||
|
|
||||||
for (int i = 0; i < 4; i++)
|
for (int i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
using (var currentBitmap = SKBitmap.Decode(paths[imageIndex]))
|
SKCodecOrigin origin;
|
||||||
|
using (var currentBitmap = SkiaEncoder.Decode(paths[imageIndex], false, out origin))
|
||||||
{
|
{
|
||||||
// resize to the same aspect as the original
|
// resize to the same aspect as the original
|
||||||
int iWidth = (int)Math.Abs(iHeight * currentBitmap.Width / currentBitmap.Height);
|
int iWidth = (int)Math.Abs(iHeight * currentBitmap.Width / currentBitmap.Height);
|
||||||
|
@ -163,7 +164,8 @@ namespace Emby.Drawing.Skia
|
||||||
{
|
{
|
||||||
for (var y = 0; y < 2; y++)
|
for (var y = 0; y < 2; y++)
|
||||||
{
|
{
|
||||||
using (var currentBitmap = SKBitmap.Decode(paths[imageIndex]))
|
SKCodecOrigin origin;
|
||||||
|
using (var currentBitmap = SkiaEncoder.Decode(paths[imageIndex], false, out origin))
|
||||||
{
|
{
|
||||||
using (var resizedBitmap = new SKBitmap(cellWidth, cellHeight, currentBitmap.ColorType, currentBitmap.AlphaType))
|
using (var resizedBitmap = new SKBitmap(cellWidth, cellHeight, currentBitmap.ColorType, currentBitmap.AlphaType))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user