The Skia 2D Graphics library from Google exposed to .NET languages and runtimes across the board
Перейти к файлу
Matthew Leibowitz c78d3bbc2e Added some TODOs for future features 2017-08-24 16:51:39 +02:00
binding Added some TODOs for future features 2017-08-24 16:51:39 +02:00
cake tvOS also needs some adjustments 2017-07-11 20:19:51 +02:00
docs Added the docs 2017-07-15 00:02:39 +02:00
externals Updated depot_tools 2017-08-22 04:07:39 +02:00
images Added an icon to the OS X sample 2016-07-29 18:09:17 +02:00
native-builds Added bindings for SkManagedPixelSerializer 2017-08-21 21:58:39 +02:00
nuget added tags to the .nuspec 2017-07-19 00:24:10 +02:00
samples Updating the version to v1.59.1 2017-07-17 21:39:20 +02:00
source Making sure the managed objects match the native 2017-08-16 23:49:35 +02:00
tests Added some color table tests 2017-08-23 01:00:13 +02:00
workbooks Re-applied some of the changes that were not specific to MSBuild 2017-06-24 02:02:42 +02:00
.editorconfig Added .editorconfig 2016-03-01 17:51:01 +03:00
.gitignore updated the build scripts 2017-06-06 04:10:52 +02:00
.gitmodules Use mdoc from source, instead of the binary 2017-05-20 07:23:47 +02:00
Binding.md Create Binding.md 2016-02-22 13:42:32 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2016-03-01 19:18:14 +02:00
LICENSE.md Adding MIT license file 2016-02-22 11:46:04 -05:00
Makefile Updates to the documentation bits 2016-10-19 00:50:16 +02:00
README.md update the readme to link to m59 2017-07-11 22:26:05 +02:00
bootstrapper.ps1 we always want to use our own nuget.exe 2017-06-23 05:34:56 +02:00
bootstrapper.sh wrong variable 2017-06-05 21:36:37 -05:00
build.cake Updating the version to v1.59.1 2017-07-17 21:39:20 +02:00
cake.packages.config Re-applied some of the changes that were not specific to MSBuild 2017-06-24 02:02:42 +02:00
mono.pub Added strong name signing #92 2016-08-12 00:11:33 +02:00
mono.snk Added strong name signing #92 2016-08-12 00:11:33 +02:00

README.md

SkiaSharp

SkiaSharp SkiaSharp.Views SkiaSharp.Views.Forms
Gitter.im Xamarin Forums
API Docs API Docs
Windows Build Status Linux Build Status Mac Build Status

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

SkiaSharp provides a PCL and platform-specific bindings for:

  • .NET Core / .NET Standard 1.3
  • Xamarin.Android
  • Xamarin.iOS
  • Xamarin.tvOS
  • 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 convenience NuGet package, to use install the package like this:

nuget install SkiaSharp

Make sure the Visual C++ Redistributable for Visual Studio 2015 is installed if this error occurs on Windows:

Unable to load DLL 'libSkiaSharp.dll': The specified module could not be found.

At this point in time, we do not ship a native Linux binary, but you can build your own using the directions below.

Building SkiaSharp

Before building SkiaSharp:

  • Python 2.7 is available in the PATH environment variable on Windows
  • Android NDK r14 is available in the ANDROID_NDK_HOME environment variable on macOS
  • .NET Core is installed on all platforms

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 -Target everything

If you are updating the source using a previous checkout, make sure to run the clean target before building.

New Skia Features Roadmap

Google has created a nice doc with a collection of high level items they have on tap the next 6-12 months. Note it is a living document that changes based on the requirements of the library's users.

Compare Code

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

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