<?xml version="1.0"?>
<doc>
<assembly>
<name>zxing</name>
</assembly>
<members>
<member name="T:ZXing.ResultPointCallback">
<summary> Callback which is invoked when a possible result point (significant
point in the barcode image such as a corner) is found.
</summary>
<seealso cref="F:ZXing.DecodeHintType.NEED_RESULT_POINT_CALLBACK">
</seealso>
</member>
<member name="T:ZXing.PDF417.PDF417Writer">
<summary>
<author>Jacob Haynes</author>
<author>qwandor@google.com (Andrew Walbran)</author>
</summary>
</member>
<member name="T:ZXing.Writer">
<summary> The base class for all objects which encode/generate a barcode image.
</summary>
<author> dswitkin@google.com (Daniel Switkin)
</author>
<author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source
</author>
</member>
<member name="M:ZXing.Writer.encode(System.String,ZXing.BarcodeFormat,System.Int32,System.Int32)">
<summary>
Encode a barcode using the default settings.
</summary>
<param name="contents">The contents to encode in the barcode</param>
<param name="format">The barcode format to generate</param>
<param name="width">The preferred width in pixels</param>
<param name="height">The preferred height in pixels</param>
<returns> The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)</returns>
</member>
<member name="M:ZXing.Writer.encode(System.String,ZXing.BarcodeFormat,System.Int32,System.Int32,System.Collections.Generic.IDictionary{ZXing.EncodeHintType,System.Object})">
<summary> </summary>
<param name="contents">The contents to encode in the barcode</param>
<param name="format">The barcode format to generate</param>
<param name="width">The preferred width in pixels</param>
<param name="height">The preferred height in pixels</param>
<param name="hints">Additional parameters to supply to the encoder</param>
<returns> The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)</returns>
</member>
<member name="F:ZXing.PDF417.PDF417Writer.WHITE_SPACE">
<summary>
default white space (margin) around the code
</summary>
</member>
<member name="M:ZXing.PDF417.PDF417Writer.encode(System.String,ZXing.BarcodeFormat,System.Int32,System.Int32,System.Collections.Generic.IDictionary{ZXing.EncodeHintType,System.Object})">
<summary>
</summary>
<param name="contents">The contents to encode in the barcode</param>
<param name="format">The barcode format to generate</param>
<param name="width">The preferred width in pixels</param>
<param name="height">The preferred height in pixels</param>
<param name="hints">Additional parameters to supply to the encoder</param>
<returns>
The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)
</returns>
</member>
<member name="M:ZXing.PDF417.PDF417Writer.encode(System.String,ZXing.BarcodeFormat,System.Int32,System.Int32)">
<summary>
Encode a barcode using the default settings.
</summary>
<param name="contents">The contents to encode in the barcode</param>
<param name="format">The barcode format to generate</param>
<param name="width">The preferred width in pixels</param>
<param name="height">The preferred height in pixels</param>
<returns>
The generated barcode as a Matrix of unsigned bytes (0 == black, 255 == white)
</returns>
</member>
<member name="M:ZXing.PDF417.PDF417Writer.bitMatrixFromEncoder(ZXing.PDF417.Internal.PDF417,System.String,System.Int32,System.Int32,System.Int32)">
<summary>
Takes encoder, accounts for width/height, and retrieves bit matrix
</summary>
</member>
<member name="M:ZXing.PDF417.PDF417Writer.bitMatrixFrombitArray(System.SByte[][],System.Int32)">
<summary>
This takes an array holding the values of the PDF 417
</summary>
<param name="input">a byte array of information with 0 is black, and 1 is white</param>
<param name="margin">border around the barcode</param>
<returns>BitMatrix of the input</returns>
</member>
<member name="M:ZXing.PDF417.PDF417Writer.rotateArray(System.SByte[][])">
<summary>
Takes and rotates the it 90 degrees
</summary>
</member>
<member name="T:ZXing.PDF417.PDF417ResultMetadata">
<summary>
PDF 417 result meta data.
<author>Guenther Grau</author>
</summary>
</member>
<member name="T:ZXing.PDF417.PDF417Reader">
<summary>
This implementation can detect and decode PDF417 codes in an image.
<author>SITA Lab (kevin.osullivan@sita.aero)</author>
<author>Guenther Grau</author>
</summary>
</member>
<member name="T:ZXing.Reader">
<summary>
Implementations of this interface can decode an image of a barcode in some format into
the String it encodes. For example, <see cref="T:ZXing.QrCode.QRCodeReader"/> can
decode a QR code. The decoder may optionally receive hints from the caller which may help
it decode more quickly or accurately.
See <see cref="T:ZXing.MultiFormatReader"/>, which attempts to determine what barcode
format is present within the image as well, and then decodes it accordingly.
</summary>
<author>Sean Owen</author>
<author>dswitkin@google.com (Daniel Switkin)</author>
</member>
<member name="M:ZXing.Reader.decode(ZXing.BinaryBitmap)">
<summary>
Locates and decodes a barcode in some format within an image.
</summary>
<param name="image">image of barcode to decode</param>
<returns>String which the barcode encodes</returns>
</member>
<member name="M:ZXing.Reader.decode(ZXing.BinaryBitmap,System.Collections.Generic.IDictionary{ZXing.DecodeHintType,System.Object})">
<summary> Locates and decodes a barcode in some format within an image. This method also accepts
hints, each possibly associated to some data, which may help the implementation decode.
</summary>
<param name="image">image of barcode to decode</param>
<param name="hints">passed as a <see cref="T:System.Collections.Generic.IDictionary`2"/> from <see cref="T:ZXing.DecodeHintType"/>
to arbitrary data. The
meaning of the data depends upon the hint type. The implementation may or may not do
anything with these hints.
</param>
<returns>String which the barcode encodes</returns>
</member>
<member name="M:ZXing.Reader.reset">
<summary>
Resets any internal state the implementation has after a decode, to prepare it
for reuse.
</summary>
</member>
<member name="T:ZXing.Multi.MultipleBarcodeReader">
<summary>
Implementation of this interface attempt to read several
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
开源的.net二维码识别库,从ZXing移植过来。 // create a barcode reader instance IBarcodeReader reader = new BarcodeReader(); // load a bitmap var barcodeBitmap = (Bitmap)Bitmap.LoadFrom("C:\\sample-barcode-image.png"); // detect and decode the barcode inside the bitmap var result = reader.Decode(barcodeBitmap); // do something with the result if (result != null) { txtDecoderType.Text = result.BarcodeFormat.ToString(); txtDecoderContent.Text = result.Text; }
资源推荐
资源详情
资源评论
收起资源包目录
ZXing.Net.0.12.0.zip (75个子文件)
ZXing.Net.0.12.0.0
wp8.0
zxing.wp8.0.pdb 1.12MB
zxing.wp8.0.dll 415KB
zxing.wp8.0.XML 518KB
THANKS 732B
portable
zxing.portable.dll 412KB
zxing.portable.pdb 1.11MB
zxing.portable.XML 511KB
-ZXing.Net.0.12.0.0.zip 10.11MB
net4.5
zxing.dll 404KB
zxing.XML 476KB
zxing.pdb 1.08MB
wp7.0
zxing.wp7.0.pdb 1.12MB
zxing.wp7.0.dll 415KB
zxing.wp7.0.XML 518KB
ce2.0
zxing.ce2.0.pdb 1.12MB
zxing.ce2.0.xml 519KB
zxing.ce2.0.dll 413KB
appdata.zip 83.51MB
sl4
zxing.sl4.XML 518KB
zxing.sl4.pdb 1.12MB
zxing.sl4.dll 416KB
kinect
zxing.kinect.dll 8KB
zxing.dll 416KB
zxing.kinect.XML 4KB
zxing.kinect.pdb 16KB
zxing.xml 477KB
zxing.pdb 1.08MB
wp7.1
zxing.wp7.1.XML 518KB
zxing.wp7.1.dll 415KB
zxing.wp7.1.pdb 1.12MB
winmd
ZXing.pdb 1.15MB
ARM
ZXing.pdb 1.15MB
zxing.XML 470KB
ZXing.winmd 426KB
ZXing.pri 1KB
zxing.XML 470KB
ZXing.winmd 427KB
x86
ZXing.pdb 1.15MB
zxing.XML 470KB
ZXing.winmd 427KB
ZXing.pri 1KB
x64
ZXing.pdb 1.15MB
zxing.XML 470KB
ZXing.winmd 426KB
ZXing.pri 1KB
ZXing.pri 1KB
ce3.5
zxing.ce3.5.XML 515KB
zxing.ce3.5.pdb 1.12MB
zxing.ce3.5.dll 415KB
sl5
zxing.sl5.XML 478KB
zxing.sl5.dll 404KB
zxing.sl5.pdb 1.08MB
net3.5
zxing.dll 417KB
zxing.xml 517KB
zxing.pdb 1.12MB
unity
zxing.unity.xml 517KB
zxing.unity.pdb 1.12MB
zxing.unity.dll 414KB
net2.0
zxing.dll 418KB
zxing.XML 521KB
zxing.pdb 1.12MB
net4.0
zxing.presentation.dll 10KB
zxing.dll 416KB
zxing.XML 477KB
zxing.presentation.XML 4KB
zxing.presentation.pdb 18KB
zxing.pdb 1.08MB
winrt
zxing.winrt.XML 477KB
zxing.winrt.dll 404KB
zxing.winrt.pri 1KB
zxing.winrt.pdb 1.08MB
monodroid
zxing.monoandroid.pdb 1.12MB
zxing.monoandroid.dll 413KB
zxing.monoandroid.XML 516KB
COPYING 11KB
共 75 条
- 1
threenewbee
- 粉丝: 3w+
- 资源: 1792
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
- 4
前往页