{"id":19746581,"url":"https://github.com/xevilmaxx/qrcodegenerator","last_synced_at":"2026-06-09T06:32:11.010Z","repository":{"id":144156027,"uuid":"613282717","full_name":"xevilmaxx/QrCodeGenerator","owner":"xevilmaxx","description":"Cross plafrom C# Qr code image generator","archived":false,"fork":false,"pushed_at":"2023-03-13T10:47:40.000Z","size":205,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T07:57:04.398Z","etag":null,"topics":["cross-platform","crossplatform","csharp","net7","net70","qr","qrcode","qrcode-generator"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xevilmaxx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-13T09:14:27.000Z","updated_at":"2023-03-13T09:31:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"4a4c7b31-c1a5-4b01-972e-44a2bdd43506","html_url":"https://github.com/xevilmaxx/QrCodeGenerator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xevilmaxx/QrCodeGenerator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xevilmaxx%2FQrCodeGenerator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xevilmaxx%2FQrCodeGenerator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xevilmaxx%2FQrCodeGenerator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xevilmaxx%2FQrCodeGenerator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xevilmaxx","download_url":"https://codeload.github.com/xevilmaxx/QrCodeGenerator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xevilmaxx%2FQrCodeGenerator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34095244,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cross-platform","crossplatform","csharp","net7","net70","qr","qrcode","qrcode-generator"],"created_at":"2024-11-12T02:14:55.021Z","updated_at":"2026-06-09T06:32:11.005Z","avatar_url":"https://github.com/xevilmaxx.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QrCodeGenerator\nCross plafrom C# Qr code image generator\n\n# Simple wrapper around:\nhttps://github.com/manuelbl/QrCodeGenerator\n\n## Advantages\n* Select Driver even on runtime\n* Robustness in case on some platforms, some drawing libraries are having problems\n* Modern Fluent API initialization (surely improvable)\n* Added ready to use Payloads (allows generation of specific QrCodes)\n* You can expand easily to support more advanced features exposed by original Library\n* Added usage sample in Blazor\n\n## Example Syntax\n\n```csharp\n\nvar qr = new QrDrawerFactory().GetDriver(DrawDriverType.SkiaSharp)\n                .SetQr(\"Hello World\")\n                .SetImageFormat(CommonImageFormat.Png)\n                .GetBytes();\n\n//------------------------------------------------------------------------------------\n\nvar msg = new PayloadGenerator.ContactData(\n                PayloadGenerator.ContactData.ContactOutputType.VCard4,\n                \"Name\",\n                \"Surname\",\n                \"EvilMax\"\n                ).ToString();\n\nvar qr2 = new QrDrawerFactory().GetDriver(DrawDriverType.ImageSharp)\n                .SetQr(msg)\n                .SetImageFormat(CommonImageFormat.Png)\n                .Save(\"./Test.png\");\n\n```\n\n### Interface:\n\n```csharp\n\npublic abstract GenericDrawer SetQr(QrCode QrCode);\npublic GenericDrawer SetQr(string QrText);\n\npublic abstract GenericDrawer SetScale(int Scale);\npublic abstract GenericDrawer SetBorder(int Border);\npublic abstract GenericDrawer SetForegroundColor(string Color);\npublic abstract GenericDrawer SetBackgroundColor(string Color);\npublic abstract GenericDrawer SetImageFormat(CommonImageFormat ImageFormat);\n\npublic abstract byte[] GetBytes();\npublic abstract bool Save(string Path);\n\n```\n\n### Drivers Support: \n* SkiaSharp\n* ImageSharp\n* Open to expansions...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxevilmaxx%2Fqrcodegenerator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxevilmaxx%2Fqrcodegenerator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxevilmaxx%2Fqrcodegenerator/lists"}