mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
2cdb5d26db
rename things to be a little more consistent in naming conventions
27 lines
No EOL
955 B
C#
27 lines
No EOL
955 B
C#
using System.Drawing;
|
|
using PKHeX.Core;
|
|
using QRCoder;
|
|
|
|
namespace PKHeX.Drawing
|
|
{
|
|
public static class QREncode
|
|
{
|
|
public static Image GenerateQRCode(DataMysteryGift mg) => GenerateQRCode(QRMessageUtil.GetMessage(mg));
|
|
public static Image GenerateQRCode(PKM pkm) => GenerateQRCode(QRMessageUtil.GetMessage(pkm));
|
|
|
|
public static Image GenerateQRCode7(PK7 pk7, int box = 0, int slot = 0, int copies = 1)
|
|
{
|
|
byte[] data = QR7.GenerateQRData(pk7, box, slot, copies);
|
|
var msg = QRMessageUtil.GetMessage(data);
|
|
return GenerateQRCode(msg, ppm: 4);
|
|
}
|
|
|
|
private static Image GenerateQRCode(string msg, int ppm = 4)
|
|
{
|
|
using var generator = new QRCodeGenerator();
|
|
using var data = generator.CreateQrCode(msg, QRCodeGenerator.ECCLevel.Q);
|
|
using var code = new QRCode(data);
|
|
return code.GetGraphic(ppm);
|
|
}
|
|
}
|
|
} |