GrapeCity.Documents.Imaging.Skia 6.0.5

.NET Standard 2.0 .NET Framework 4.6.1
dotnet add package GrapeCity.Documents.Imaging.Skia --version 6.0.5
NuGet\Install-Package GrapeCity.Documents.Imaging.Skia -Version 6.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GrapeCity.Documents.Imaging.Skia" Version="6.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GrapeCity.Documents.Imaging.Skia --version 6.0.5
#r "nuget: GrapeCity.Documents.Imaging.Skia, 6.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GrapeCity.Documents.Imaging.Skia as a Cake Addin
#addin nuget:?package=GrapeCity.Documents.Imaging.Skia&version=6.0.5

// Install GrapeCity.Documents.Imaging.Skia as a Cake Tool
#tool nuget:?package=GrapeCity.Documents.Imaging.Skia&version=6.0.5

GrapeCity Documents for Imaging - Skia

GrapeCity.Documents.Imaging.Skia (GcImaging.Skia) is a cross-platform rendering engine for drawing text and graphics. It is based on SkiaSharp and exposes an object model similar to, and interoperable with, classes from GcImaging.

The main classes in GcImaging.Skia are GcSkiaBitmap, GcSkiaImage, and GcSkiaGraphics, and can be used instead of their counterparts from GcImaging.

GcSkiaBitmap represents a bitmap in CPU memory. It works similar to GcBitmap, but internally encapsulates an instance of SKBitmap object from SkiaSharp. GcSkiaBitmap can load and save images in JPEG, PNG, and WEBP formats. A GcSkiaBitmap can be converted to a GcBitmap or GcSkiaImage, and vice versa. To draw on a GcSkiaBitmap, call the CreateGraphics() method which returns an instance of the associated GcSkiaGraphics that can be used for drawing.

GcSkiaImage represents an immutable image based on SKImage. It is a lightweight version of GcSkiaBitmap which does not support modifications. A GcSkiaImage can be loaded and saved to the same formats as GcSkiaBitmap. It can also be converted to GcBitmap or GcSkiaBitmap. Both GcSkiaImage and GcSkiaBitmap implement the IImage interface and so can be rendered on an instance of any class derived from GcGraphics.

GcSkiaGraphics is the drawing class derived from GcGraphics. An instance of GcSkiaGraphics can be created directly or from a GcSkiaBitmap. If the GcSkiaGraphics instance was created from a GcSkiaBitmap, it can be disposed when all drawing is done. If the GcSkiaGraphics instance was created directly, ToSkiaImage() or ToGcBitmap() methods can be called on it to get a snapshot of the current drawing.

If drawing text to multiple instances of GcSkiaGraphics make sure to create a single SkiaFontCache object and assign it to the FontCache property of all those instances.

GrapeCity.Documents.Imaging.Skia is compatible with .NET 7, .NET 6, .NET Core 3.1, .NET Standard 2.x, .NET Framework 4.6.1 or higher.

All features are fully supported on Windows, macOS and Linux.

Resources

GrapeCity Document APIs

GrapeCity Document JavsScript Viewers

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.5 125 2/28/2023
6.0.4 150 2/6/2023
6.0.3 174 1/20/2023
6.0.2 176 1/3/2023
6.0.1 166 12/27/2022
6.0.0 189 12/12/2022
5.2.0.805 158 12/9/2022
5.2.0.804 230 11/2/2022
5.2.0.803 403 10/10/2022
5.2.0.802 289 9/16/2022
5.2.0.801 284 8/24/2022
5.2.0.800 277 8/15/2022

# Changes since version 6.0.4:

## Changed
- Synced version with other GrapeCity.Documents packages.