About 1,290,000 results
Open links in new tab
  1. How to Create QR Code Image in C# - Web Dev Tutor

    Aug 20, 2024 · Creating QR code images in C# is a straightforward process, thanks to libraries like QRCoder. You can easily generate QR codes with custom data and appearance to suit your needs. Start incorporating QR codes into your C# projects to enhance user experience and provide quick access to information.

  2. Add custom image or text to QR code generated by ZXing.Net

    Jun 25, 2015 · I use ZXing.Net library to generate a QR code image - At the top of my class: [System.Runtime.InteropServices.DllImport("gdi32.dll")] public static extern bool DeleteObject(IntPtr hObject);

  3. Create QRCode with C# and save it as an image - Stack Overflow

    Jan 25, 2023 · //create QR code and save to file. using (Bitmap bmp = CreateQrCode(data)) //save to MemoryStream. bmp.Save(ms, imgFormat); return ms.ToArray(); //specify desired options. DecodingOptions options = new DecodingOptions() CharacterSet = "UTF-8" }; //create new instance and set properties.

  4. codebude/QRCoder: A pure C# Open Source QR Code implementation - GitHub

    QRCoder is a simple library, written in C#.NET, which enables you to create QR codes. It hasn't any dependencies to external libraries 1, is available as package on NuGet and supports .NET Framework, .NET Core, .NET Standard and .NET. A full list …

  5. c# - QR-Code generate and export to image file - Stack Overflow

    Aug 11, 2019 · So the solution is to use the GetGraphic() method to work with the Bitmap object. Also check https://github.com/codebude/QRCoder/wiki/How-to-use-QRCoder. Thanks. I have read it quite carefully. But how can I save qrCodeImage ? @Alex With the Save() method. I think code is not recommended to use now.

  6. C#/VB.NET: Generate QR Code with a Custom Logo Image

    Oct 26, 2021 · When you generate a QR code, you might want to add a custom image such as your company’s logo or your personal profile image to it. In this article, I will describe how to achieve this task...

  7. ByteScout QR Code SDK – C# – Make QR Code With Image

    Can embed logo image right into QR Code itself. Batch barcode generation, and many special features like vCard or URL encoding are also supported. The SDK samples like this one below explain how to quickly make your application do make QR code with image in C# with the help of ByteScout QR Code.

  8. How to generate QR code in C# : Full tutorial - DEV Community

    Dec 2, 2021 · How to generate a QR Code in C#: Create or Open a visual studio Project; Install IronQR Library; Write a Code to create QR codes. Style Our QR Code, Add a Logo, Set dimensions, and change the Color; Read the QR Code; Quick Response (QR) codes have become integral to our digital lives, facilitating seamless information sharing and accessibility.

  9. Create a C# QR Code Generator (Easy) + GitHub Repository

    May 20, 2023 · In this guide, we’re going to create a clean and simple C# QR code generator, along with a nice UI using Windows Forms. Buckle up, my fellow C# enthusiasts, and let’s dive into some real-deal programming! 🚀

  10. Dynamically generate and display QR code Image using C# and …

    Aug 28, 2023 · explained with an example, how to dynamically generate and display QR code Image in Windows Forms (WinForms) Application using C# and VB.Net. In this article, I will make use of QRCoder which is an Open Source Library QR code generator.

  11. Some results have been removed
Refresh