CrossGraphics aims to deliver a simple immediate mode interface for drawing graphics on a variety of platforms running .NET.
Currently the following platforms are supported:
- iOS and macOS using CoreGraphicsGraphics.cs
- Android using AndroidGraphics.cs
- Cross-platform SkiaSharp using SkiaSharpGraphics.cs
- Cross-platform SVG using SvgGraphics.cs
dotnet add package CrossGraphics
The interface CrossGraphics.IGraphics
is the recipient of all drawing commands.
You should now code your objects to be able to draw themselves by being passed and IGraphics
object.
Drawing commands include:
- Rectangles using
FillRect
andDrawRect
- Rounded Rectangles using
FillRoundedRect
andDrawRoundedRect
- Ovals using
FillOval
andDrawOval
- Lines using
DrawLine
and the optionBeginLine
andEndLine
primitives - Images using
DrawImage
- Text using
DrawString
and the associated font functions
The code is copyright Frank A. Krueger and is released under the MIT license.