Skip to content

Easy to use library for creating QR codes and exporting them as .svg, written in C#

Notifications You must be signed in to change notification settings

vellxalization/QuaRCSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QuaRCSharp

QuaRCSharp is a small and simple library that includes a QR code generator and .svg exporter. It is written in pure C# and does not depend on any other libraries.

Usage

var generator = new QRCodeGenerator();
var export = new SvgExporter();
var settings = new GeneratorSettings(CorrectionLevel.H, true, MaskingOptions.Auto);

QRCanvas canvas = gen.Generate("Hello World", settings);
export.Export(canvas, @"path:\qrcode.svg", 300);

About

Easy to use library for creating QR codes and exporting them as .svg, written in C#

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages