An experimental cross-platform native graphics library.
Перейти к файлу
dotnet-maestro[bot] a187cf24dc Update dependencies from https://github.com/xamarin/xamarin-android build main-7dacdd751dd0bd7b02ac443c32824f353a6da380-1
Microsoft.Android.Sdk.Windows
 From Version 30.0.100-preview.6.62 -> To Version 30.0.100-ci.main.83

Dependency coherency updates

Microsoft.Dotnet.Sdk.Internal
 From Version 6.0.100-preview.6.21355.2 -> To Version 6.0.100-preview.7.21327.2 (parent: Microsoft.Android.Sdk.Windows
2021-07-16 12:27:49 +00:00
.config Update and build SkiaSharp bits 2021-07-09 15:30:57 +02:00
.github/workflows Format more of the files with POSIX compliance 2021-04-20 19:48:08 -04:00
build Build classic solution as well 2021-07-13 04:44:37 +02:00
eng Update dependencies from https://github.com/xamarin/xamarin-android build main-7dacdd751dd0bd7b02ac443c32824f353a6da380-1 2021-07-16 12:27:49 +00:00
samples Update SkiaSharp 2021-07-12 03:10:58 +02:00
src Merge pull request #112 from lytico/lytico/pullrequests/Gtk.GetPathBounds 2021-07-12 19:25:59 -04:00
tests/Microsoft.Maui.Graphics.Tests Format C# files for POSIX compliance 2021-04-20 16:48:32 -04:00
.editorconfig Format more of the files with POSIX compliance 2021-04-20 19:48:08 -04:00
.gitattributes Format C# files for POSIX compliance 2021-04-20 16:48:32 -04:00
.gitignore More fixes 2021-05-27 09:55:53 +01:00
CODE-OF-CONDUCT.md Adding code of conduct 2021-02-08 10:51:46 -08:00
Directory.Build.props Merge pull request #90 from dotnet/fix-winui-net6 2021-05-27 16:50:12 -07:00
Directory.Build.targets Update and build SkiaSharp bits 2021-07-09 15:30:57 +02:00
GitInfo.txt Bump GitInfo 2021-06-21 14:50:24 +01:00
LICENSE Initial commit 2020-10-27 13:14:16 -07:00
Microsoft.Maui.Graphics-net6.sln Update and build SkiaSharp bits 2021-07-09 15:30:57 +02:00
Microsoft.Maui.Graphics.Mac.sln Initial pass at rename 2021-03-11 11:12:48 -09:00
Microsoft.Maui.Graphics.sln Merge branch 'main' into lytico/pullrequests/Gtk.Initial.1 2021-05-14 07:49:39 -07:00
Microsoft.Maui.Graphics.sln.DotSettings Initial pass at rename 2021-03-11 11:12:48 -09:00
NuGet.config no more preview feeds 2021-07-12 23:23:39 +02:00
README.md Update README.md 2021-05-25 11:56:23 -04:00
azure-pipelines.yml X( 2021-07-13 05:25:52 +02:00
build.cake Missing methods 2021-05-26 19:24:03 +01:00
global.json Update dependencies from https://github.com/xamarin/xamarin-android build 6.0.1xx-preview5-c527d1e1a177459420452be2e49d1cb1cd94e033-1 2021-05-31 16:48:48 +00:00

README.md

Microsoft.Maui.Graphics

NuGet

Microsoft.Maui.Graphics is a cross-platform graphics library for iOS, Android, Windows, macOS, Tizen and Linux completely in C#. With this library you can use a common API to target multiple abstractions allowing you to share your drawing code between platforms, or mix and match graphics implentations within a singular application.

Applications

Any dotnet projects needing a multi-platform graphics abstraction that is backed by native APIs can use Microsoft.Maui.Graphics.

.NET MAUI is an example of a project using Microsoft.Maui.Graphics.

Note: Microsoft.Maui.Graphics does not have a MAUI dependency and can be used on any of the supported platforms listed below.

Goals

  • No dependencies on System.Drawing
  • Support all graphics operations within an abstraction that the underlying abstraction supports.

Status

This is an experimental library; however it's based on code that's been in use in production applications for over 10 years. Because it was refactored out of another code base, some things may have been broken in that process.

Disclaimer

There is no official support. Use at your own Risk.

Supported Platforms

Platform Supported Abstractions
Xamarin.iOS CoreGraphics & SkiaSharp
Xamarin.Android Android.Graphics & SkiaSharp
Xamarin.Mac CoreGraphics & SkiaSharp
WPF SharpDX, SkiaSharp, Xaml & GDI
UWP SharpDX, Win2D, Xaml, SkiaSharp
WinForms SharpDX, SkiaSharp & GDI
Tizen SkiaSharp
Linux SkiaSharp
Xamarin.Forms Dependent on native platform support (noted above)

Main Abstractions

  • Canvas - You can draw to a any of the supported abstractions with a common drawing canvas API and a support of common operations and primitives
    • Rectangle, Point and Color primitives
    • Shapes (Rectangles, Rounded Rectangles, Ellipses, Arcs)
    • Paths
    • Images
    • Fonts
    • Shadows
    • Image and pattern fills
    • Clipping
    • etc...
  • Fonts - You can access fonts with a common API
  • Attributed text - You can draw attributed text with a common API
  • Bitmaps - You can create and draw on bitmap images with a common API
  • PDF - You can create PDF's using a common API

Known Limitations

  • Attributed text is not currently supported with SkiaSharp
  • The included Blazor (Canvas) implementation no longer compiles, but is included as a reminder to get it working again