SkiaSharp fork for the Uno Platform and WebAssembly. Skia is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
Перейти к файлу
Matthew Leibowitz 146fcb3aa4
Add a method to reduce verbosity for multi-delegates (#882)
2019-06-26 01:11:29 +02:00
.github Rename .github/PULL_REQUEST_TEMPLATE/pull_request_template.md to .github/pull_request_template.md 2019-06-25 03:51:26 +02:00
binding Add a method to reduce verbosity for multi-delegates (#882) 2019-06-26 01:11:29 +02:00
cake Make sure to build Debug samples in PRs (#875) 2019-06-22 18:39:32 +02:00
changelogs [harfbuzz] Allow loading face by table data (#862) 2019-06-18 16:33:10 +02:00
docs@e53f15e49f [harfbuzz] Allow loading face by table data (#862) 2019-06-18 16:33:10 +02:00
externals Update HarfBuzz to v2.5.2 (#872) 2019-06-22 21:05:28 +02:00
images
native-builds Update HarfBuzz to v2.5.2 (#872) 2019-06-22 21:05:28 +02:00
nuget Upgrade the macOS bots and software (#884) 2019-06-26 01:11:01 +02:00
samples Update HarfBuzz to v2.5.2 (#872) 2019-06-22 21:05:28 +02:00
scripts Upgrade the macOS bots and software (#884) 2019-06-26 01:11:01 +02:00
source Fix implementation of the iOS canvas (#879) 2019-06-24 10:55:42 +02:00
tests Improve the delegate proxies (#878) 2019-06-24 11:18:11 +02:00
tools Few changes for release (#850) 2019-05-24 07:14:37 +02:00
workbooks Set the version to v1.60.2 for the upcoming release 2018-05-29 23:35:10 +02:00
.editorconfig Removed the use of the debug SaveBitmap 2018-11-15 06:28:27 +02:00
.gitattributes Add a .gitattributes for the bash scripts 2018-07-20 00:00:19 +02:00
.gitignore
.gitmodules Update HarfBuzz to v2.5.2 (#872) 2019-06-22 21:05:28 +02:00
External-Dependency-Info.txt Added the licensing information to the nugets 2018-02-23 04:19:30 +02:00
LICENSE.md updated the license 2018-02-23 04:20:37 +02:00
LICENSE.txt Moving more work into MSBuild 2018-03-20 05:01:37 +02:00
README.md Add the preview feed to the readme 2019-06-25 21:04:58 +02:00
VERSIONS.txt Update HarfBuzz to v2.5.2 (#872) 2019-06-22 21:05:28 +02:00
bootstrapper.ps1 Few changes for release (#850) 2019-05-24 07:14:37 +02:00
bootstrapper.sh Few changes for release (#850) 2019-05-24 07:14:37 +02:00
build.cake Make sure to use the correct .targets name on Linux (#886) 2019-06-25 21:01:47 +02:00
global.json The new 2.x MSBuild.Sdk.Extras do not work without the custom SDK 2019-01-16 04:46:27 +02:00
mono.pub
mono.snk

README.md

SkiaSharp

SkiaSharp SkiaSharp.Views SkiaSharp.Views.Forms
chat API Docs API Docs
Build Status Build Status

SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library (skia.org). It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.

SkiaSharp provides cross-platform bindings for:

  • .NET Standard 1.3
  • .NET Core
  • Tizen
  • Xamarin.Android
  • Xamarin.iOS
  • Xamarin.tvOS
  • Xamarin.watchOS
  • Xamarin.Mac
  • Windows Classic Desktop (Windows.Forms / WPF)
  • Windows UWP (Desktop / Mobile / Xbox / HoloLens)

The API Documentation is available on the web to browse.

Using SkiaSharp

SkiaSharp is available as a convenient NuGet package, to use install the package like this:

nuget install SkiaSharp

Because there are multiple distros of Linux, and we cannot possibly support them all, we have a separate NuGet package that will contain the supported binaries for a few distros: SkiaSharp.NativeAssets.Linux. (distros) (more info)

There is also a early access feed that you can use to get the latest and greatest, before it goes out to the public:

https://nugetized.blob.core.windows.net/skiasharp-eap/index.json

Building SkiaSharp

Before building SkiaSharp:

  • Python 2.7 is available in the PATH environment variable on Windows
  • Android NDK r15 is available in the ANDROID_NDK_HOME environment variable on macOS
  • .NET Core is installed on all platforms
  • C/C++ Compiler (MSVC / "Desktop development" package on Windows)

First, clone the repository:

$ git clone https://github.com/mono/SkiaSharp.git

Next, set up the submodules:

$ cd SkiaSharp
$ git submodule update --init --recursive

Finally, build everything:

Mac/Linux:

$ ./bootstrapper.sh -t everything

Windows:

> .\bootstrapper.ps1 -t everything

Compare Code

Here are some links to show the differences in our code as compared to Google's code.

What version are we on? m68
Are we up-to-date with Google? Compare
What have we added? Compare