### Generate QR Code, Barcode, and Decode Image Source: https://www.codeglyphx.com/docs This snippet demonstrates basic usage for generating a QR code, a Code 128 barcode, and decoding a QR code from image bytes. Ensure you have the necessary image data for decoding. ```csharp using CodeGlyphX; // Generate a QR code QR.Save("https://evotec.xyz", "website.png"); // Generate a barcode Barcode.Save(BarcodeType.Code128, "PRODUCT-123", "barcode.png"); // Decode an image if (QrImageDecoder.TryDecodeImage(imageBytes, out var result)) { Console.WriteLine(result.Text); } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.