19 lines
244 B
C#
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);
|
|
}
|
|
} |