PhotoCamera クラスを使用して、zxing を使用して pre window phone 8.1 で次のコードを使用しました。これがまだあなたの目的に有効かどうかはわかりませんが、ここにLuminanceSource
派生クラスがあります。
internal class PhotoCameraLuminanceSource : LuminanceSource
{
public byte[] PreviewBufferY { get; private set; }
public PhotoCameraLuminanceSource(int width, int height)
: base(width, height)
{
PreviewBufferY = new byte[width * height];
}
public override byte[] Matrix
{
get { return (byte[])(Array)PreviewBufferY; }
}
public override byte[] getRow(int y, byte[] row)
{
if (row == null || row.Length < Width)
{
row = new byte[Width];
}
for (int i = 0; i < Height; i++)
row[i] = (byte)PreviewBufferY[i * Width + y];
return row;
}
}
それは次のように使用されます。
PhotoCamera.GetPreviewBufferY(_luminance.PreviewBufferY);
var binarizer = new HybridBinarizer(_luminance);
var binBitmap = new BinaryBitmap(binarizer);
//Use readers to decode possible barcodes.
var result = _QRCodeReader.decode(binBitmap);
_luminance
タイプはどこですかPhotoCameraLuminanceSource