mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
257 B
C#
12 lines
257 B
C#
using SkiaSharp;
|
|
|
|
namespace Immense.RemoteControl.Desktop.Shared.Extensions;
|
|
|
|
public static class SKBitmapExtensions
|
|
{
|
|
public static SKRect ToRectangle(this SKBitmap bitmap)
|
|
{
|
|
return new SKRect(0, 0, bitmap.Width, bitmap.Height);
|
|
}
|
|
}
|