Pysar.Avalonia
0.1.44
dotnet add package Pysar.Avalonia --version 0.1.44
NuGet\Install-Package Pysar.Avalonia -Version 0.1.44
<PackageReference Include="Pysar.Avalonia" Version="0.1.44" />
<PackageVersion Include="Pysar.Avalonia" Version="0.1.44" />
<PackageReference Include="Pysar.Avalonia" />
paket add Pysar.Avalonia --version 0.1.44
#r "nuget: Pysar.Avalonia, 0.1.44"
#:package Pysar.Avalonia@0.1.44
#addin nuget:?package=Pysar.Avalonia&version=0.1.44
#tool nuget:?package=Pysar.Avalonia&version=0.1.44
Pysar.Avalonia
Avalonia integration for Pysar, a cross-platform report engine
for .NET: avares:// application asset access, font registration and a scrollable, zoomable
ReportView. It installs an AvaloniaReportPlatformHandler for file and font access.
Setup
Assets are AvaloniaResource items read through avares://:
AppBuilder.Configure<App>()
.UsePlatformDetect()
.UsePysar(pysar => pysar
.AddFont("Fonts/Ubuntu-Regular.ttf", "Ubuntu")
.AddFont("Fonts/Ubuntu-Bold.ttf", "Ubuntu", FontStyle.Bold));
Showing a report
<pysar:ReportView Report="{Binding Report}"
ZoomMode="FitWidth"
Zoom="{Binding Zoom}"
EffectiveZoom="{Binding EffectiveZoom}"
CurrentPage="{Binding CurrentPage}"
PageSpacing="24" />
On the desktop, Ctrl or Cmd with the wheel zooms around the pointer, a plain wheel scrolls, and a
double click magnifies and returns. PageBorderColor and PageBorderThickness frame each page;
PageSpacing is the gap between pages and does not scale with the zoom. Bind EffectiveZoom to show
the zoom percentage — Zoom holds what was asked for, not what the view settled on.
Trackpad pinch on macOS is handled natively, in MacPinchMonitor. Avalonia delivers no pinch gesture
on that platform, so the zoom comes from an AppKit local event monitor for NSEventTypeMagnify,
reached through the Objective-C runtime. It is a no-op everywhere else.
Printing
Printing uses the same vector PDF pipeline as export:
var printer = new AvaloniaReportPrinter(PysarAvalonia.Renderer);
await printer.PrintAsync(builtReport);
The report must already have Build() called.
Documentation
License
MIT — see LICENSE.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Avalonia (>= 12.1.1)
- HarfBuzzSharp (>= 14.2.1.1)
- HarfBuzzSharp.NativeAssets.Linux (>= 14.2.1.1)
- HarfBuzzSharp.NativeAssets.macOS (>= 14.2.1.1)
- HarfBuzzSharp.NativeAssets.Win32 (>= 14.2.1.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.11)
- Pysar.Viewer (>= 0.1.44)
- SkiaSharp (>= 4.151.2)
- SkiaSharp.NativeAssets.Linux (>= 4.151.2)
- SkiaSharp.NativeAssets.macOS (>= 4.151.2)
- SkiaSharp.NativeAssets.Win32 (>= 4.151.2)
- Svg.Skia (>= 5.2.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
## Highlights
### Content assets under `Assets/`
Packaged Uno `Content` lives under `Assets/`. Report code still asks for `Fonts/`, `Images/`, and `Styles/`. `UsePysarAsync` preloads `ms-appx:///Assets/...` at startup so later reads stay synchronous.
### Report sharing
`PysarUno.Sharer` (`UnoReportSharer`) offers exported bytes to the host: a file download on WebAssembly, and open/share on desktop, Android, and iOS.
```csharp
var pdf = await PysarUno.ExportService.ExportAsync(builtReport, ExportFormat.Pdf);
await PysarUno.Sharer.ShareAsync(pdf, "report.pdf");