mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
37 lines
905 B
C#
37 lines
905 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
// From: https://github.com/codebude/QRCoder
|
||
|
namespace QRCoder
|
||
|
{
|
||
|
using System;
|
||
|
|
||
|
public class QRCodeData : IDisposable
|
||
|
{
|
||
|
public List<BitArray> ModuleMatrix { get; set; }
|
||
|
|
||
|
public QRCodeData(int version)
|
||
|
{
|
||
|
this.Version = version;
|
||
|
var size = ModulesPerSideFromVersion(version);
|
||
|
this.ModuleMatrix = new List<BitArray>();
|
||
|
for (var i = 0; i < size; i++)
|
||
|
this.ModuleMatrix.Add(new BitArray(size));
|
||
|
}
|
||
|
|
||
|
public int Version { get; private set; }
|
||
|
|
||
|
private static int ModulesPerSideFromVersion(int version)
|
||
|
{
|
||
|
return 21 + (version - 1) * 4;
|
||
|
}
|
||
|
|
||
|
public void Dispose()
|
||
|
{
|
||
|
this.ModuleMatrix = null;
|
||
|
this.Version = 0;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|