14 lines
244 B
C#
14 lines
244 B
C#
using System;
|
|
|
|
using SkiaSharp;
|
|
|
|
namespace SkiaSharpSample
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Platform Color Type: " + SKImageInfo.PlatformColorType);
|
|
}
|
|
}
|
|
}
|