initial commit
This commit is contained in:
19
data/QRCodeImage.cs
Normal file
19
data/QRCodeImage.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace ThoughtWorks.QRCode.Codec.Data
|
||||
{
|
||||
public interface QRCodeImage
|
||||
{
|
||||
int Width
|
||||
{
|
||||
get;
|
||||
|
||||
}
|
||||
int Height
|
||||
{
|
||||
get;
|
||||
|
||||
}
|
||||
int getPixel(int x, int y);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user