Files
QRCodeLib/data/QRCodeImage.cs
2019-05-04 06:53:50 +09:00

19 lines
244 B
C#

using System;
namespace ThoughtWorks.QRCode.Codec.Data
{
public interface QRCodeImage
{
int Width
{
get;
}
int Height
{
get;
}
int getPixel(int x, int y);
}
}