An experimental cross-platform native graphics library.
Перейти к файлу
Javier Suárez Ruiz eac24b9027 Removed unused enum 2022-06-21 09:39:29 +02:00
.config [release/6.0.1xx-rc1] Update dependencies from xamarin/xamarin-android (#157) 2021-08-31 00:38:20 +02:00
.github/workflows Format more of the files with POSIX compliance 2021-04-20 19:48:08 -04:00
build Start building with stable SkiaSharp nugets (#430) 2022-05-12 03:49:02 +02:00
eng Update dependencies from https://github.com/xamarin/xamarin-android build 6.0.4xx-052bfb661739066b8598f5b0b066cee5a99a1e15-1 2022-06-03 23:29:50 +00:00
samples Start building with stable SkiaSharp nugets (#430) 2022-05-12 03:49:02 +02:00
src Removed unused enum 2022-06-21 09:39:29 +02:00
tests Add ParseLightGoldenrodYellowWithSpace benchmark 2022-03-10 17:23:25 -06: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
CONTRIBUTING.md Create CONTRIBUTING.md (#169) 2021-09-16 02:29:56 +02:00
Directory.Build.props Try update install workloads 2022-03-23 17:41:54 +00:00
Directory.Build.targets Merge branch 'main' into remove-services 2021-11-25 10:32:36 +02:00
GitInfo.txt Update GitInfo.txt 2022-06-03 09:11:41 -04:00
LICENSE
Microsoft.Maui.Graphics-net6.sln Add Microsoft.Maui.Graphics.Benchmarks 2022-03-09 20:58:25 -06:00
Microsoft.Maui.Graphics.Mac-net6.slnf Net6 portable sample tester 2021-11-25 15:27:01 -05:00
Microsoft.Maui.Graphics.Mac.sln
Microsoft.Maui.Graphics.sln more fixes 2022-01-14 01:44:15 +02:00
Microsoft.Maui.Graphics.sln.DotSettings
NuGet.config Update dependencies from https://github.com/xamarin/xamarin-android build 6.0.4xx-8042e0abd6b9e97d41b0d822cc6f41ee69105dd3-1 2022-06-02 21:11:30 +00:00
README.md Update README.md (#435) 2022-05-31 21:25:00 +02:00
azure-pipelines.yml [Tizen] Remove specifying Tizen sdk version 2022-05-04 12:07:47 +09:00
build.cake Update again 2022-03-24 12:26:19 +00:00
build.cmd Try update install workloads 2022-03-23 17:41:54 +00:00
build.ps1 Try update install workloads 2022-03-23 17:41:54 +00:00
build.sh Try update install workloads 2022-03-23 17:41:54 +00: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 written 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 implementations 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 PDFs 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