SkiaSharp 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 1991645c25
Added Tizen to the list of supported OSes
2018-05-07 02:28:48 +02:00
binding Some changes that were reverted, breaking the code 2018-05-06 20:05:36 +02:00
cake Fix the samples for Tizen 2018-05-03 18:54:52 +02:00
docs Removing the duplicate entry for case-sensitive OSes 2018-04-22 00:40:23 +02:00
externals Properly copy bitmaps. Fixes #497 2018-05-06 02:57:13 +02:00
images Added an icon to the OS X sample 2016-07-29 18:09:17 +02:00
native-builds Made some changes to improve the overall build process 2018-04-17 22:14:02 +02:00
nuget Added Tizen to the list of supported OSes 2018-05-07 02:28:48 +02:00
samples Fix the samples for Tizen 2018-05-03 18:54:52 +02:00
source Make sure to re-create the SkiaSharp context when the texture changes. Fixes #460 2018-05-04 16:39:52 +02:00
tests Properly copy bitmaps. Fixes #497 2018-05-06 02:57:13 +02:00
workbooks Set the version numbers to v1.60.1 2018-03-24 03:08:15 +02:00
.editorconfig Added .editorconfig 2016-03-01 17:51:01 +03:00
.gitignore Reworked the nuget creation logic to be more streamlined and less error prone 2018-02-23 03:25:18 +02:00
.gitmodules Removed the mdoc submodule and use NuGet binary 2018-01-13 17:43:40 +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
External-Dependency-Info.txt Added the licensing information to the nugets 2018-02-23 04:19:30 +02:00
ISSUE_TEMPLATE.md Added an issue template 2018-05-06 23:53:26 +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
Makefile Updates to the documentation bits 2016-10-19 00:50:16 +02:00
README.md Added Tizen to the list of supported OSes 2018-05-07 02:28:48 +02:00
VERSIONS.txt Changing the way docs are generated... 2018-04-21 01:56:38 +02:00
bootstrapper.ps1 Everything now builds again on Windows 2018-03-22 03:12:17 +02:00
bootstrapper.sh Everything now builds again on Windows 2018-03-22 03:12:17 +02:00
build.cake Merge branch 'master' into dev/add-tizen-support 2018-04-21 15:23:33 +02:00
cake.packages.config Changing the way docs are generated... 2018-04-21 01:56:38 +02:00
install-tizen.sh We don't install Java as part of the Tizen install script 2018-05-03 00:00:33 +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 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 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 in the NuGet package, but you can either download our internal Linux binaries attached to the specific release or 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

Compare Code

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

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