mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-04 17:26:19 +00:00
Address comments
This commit is contained in:
@@ -230,7 +230,7 @@ namespace Emby.Drawing.Skia
|
||||
return tempPath;
|
||||
}
|
||||
|
||||
private static SKEncodedOrigin GetSKCodecOrigin(ImageOrientation? orientation)
|
||||
private static SKEncodedOrigin GetSKEncodedOrigin(ImageOrientation? orientation)
|
||||
{
|
||||
if (!orientation.HasValue)
|
||||
{
|
||||
@@ -275,7 +275,7 @@ namespace Emby.Drawing.Skia
|
||||
{
|
||||
if (codec == null)
|
||||
{
|
||||
origin = GetSKCodecOrigin(orientation);
|
||||
origin = GetSKEncodedOrigin(orientation);
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -291,7 +291,7 @@ namespace Emby.Drawing.Skia
|
||||
}
|
||||
else
|
||||
{
|
||||
origin = GetSKCodecOrigin(orientation);
|
||||
origin = GetSKEncodedOrigin(orientation);
|
||||
}
|
||||
|
||||
return bitmap;
|
||||
@@ -594,7 +594,10 @@ namespace Emby.Drawing.Skia
|
||||
if (hasForegroundColor)
|
||||
{
|
||||
Double opacity;
|
||||
if (!Double.TryParse(options.ForegroundLayer, out opacity)) opacity = .4;
|
||||
if (!Double.TryParse(options.ForegroundLayer, out opacity))
|
||||
{
|
||||
opacity = .4;
|
||||
}
|
||||
|
||||
canvas.DrawColor(new SKColor(0, 0, 0, (Byte)((1 - opacity) * 0xFF)), SKBlendMode.SrcOver);
|
||||
}
|
||||
@@ -676,4 +679,4 @@ namespace Emby.Drawing.Skia
|
||||
get { return true; }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -76,4 +76,4 @@ namespace Rssdp
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user