GrapeCity.Documents.Imaging.Skia
6.0.4
See the version list below for details.
dotnet add package GrapeCity.Documents.Imaging.Skia --version 6.0.4
NuGet\Install-Package GrapeCity.Documents.Imaging.Skia -Version 6.0.4
<PackageReference Include="GrapeCity.Documents.Imaging.Skia" Version="6.0.4" />
paket add GrapeCity.Documents.Imaging.Skia --version 6.0.4
#r "nuget: GrapeCity.Documents.Imaging.Skia, 6.0.4"
// Install GrapeCity.Documents.Imaging.Skia as a Cake Addin
#addin nuget:?package=GrapeCity.Documents.Imaging.Skia&version=6.0.4
// Install GrapeCity.Documents.Imaging.Skia as a Cake Tool
#tool nuget:?package=GrapeCity.Documents.Imaging.Skia&version=6.0.4
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
- GcImaging Live Demos
- Getting Started
- License Information
- Licensing FAQ
- How to get Trial Keys
- Online Documentation
- Offline Documentation (PDF)
GrapeCity Document APIs
- Documents for PDF
- Documents for Word
- Documents for Imaging
- Documents for Excel, .NET
- Documents for Excel, Java
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 |
-
.NETFramework 4.6.1
- GrapeCity.Documents.Imaging (= 6.0.4)
- SkiaSharp (>= 2.88.3)
- SkiaSharp.NativeAssets.Linux (>= 2.88.3)
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.4)
- System.Numerics.Vectors (>= 4.5.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
.NETStandard 2.0
- GrapeCity.Documents.Imaging (= 6.0.4)
- SkiaSharp (>= 2.88.3)
- SkiaSharp.NativeAssets.Linux (>= 2.88.3)
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.4)
- System.Numerics.Vectors (>= 4.4.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
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.6 | 58 | 3/23/2023 |
6.0.5 | 135 | 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 | 408 | 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.3:
## Changed
- Synced version with other GrapeCity.Documents packages.