Webenology.blazor.components
Blazor Component Library
Install / Use
/learn @webenology/Webenology.blazor.componentsREADME
webenology.blazor.components
Blazor Component Library
Nuget package: https://www.nuget.org/packages/webenology.blazor.components/
How to Use Generate PDF From Blazor Component
In Startup make sure to add in
services.AddWebenologyHelpers();
On Your component make sure to inject the blazor pdf class
[Inject]
private IBlazorPdf blazorPdf {get;set;}
Then to get the pdf in base64 you will call the following, we are generating the Counter component
The Counter paramaers are added in by x.Add(y=> y.Param, value)
The Css and Js file locations are absolute locations
var fileName = "my file name";
var cssFileLocations = new List<string>();
var jsFileLocations = new List<string>();
_base64Results = blazorPdf.GetBlazorInPdfBase64<Counter>(x => x.Add(y=> y.StartingValue, 2), fileName, cssFileLocations, jsFileLocations);
You can render the results however you want. An easy way to render them is to set the base64 into an embed component
<embed style="width: 100%; height: 650px;" src="data:application/pdf;base64,@_base64Results">
Related Skills
node-connect
341.8kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.6kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
341.8kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.6kCommit, push, and open a PR
