<?xml version="1.0"?>
<doc>
<assembly>
<name>zxing</name>
</assembly>
<members>
<member name="T:ZXing.Aztec.Internal.AztecDetectorResult">
<summary>
Extends <see cref="T:ZXing.Common.DetectorResult"/> with more information specific to the Aztec format,
like the number of layers and whether it's compact.
</summary>
</member>
<member name="T:ZXing.Common.DetectorResult">
<summary> <p>Encapsulates the result of detecting a barcode in an image. This includes the raw
matrix of black/white pixels corresponding to the barcode, and possibly points of interest
in the image, like the location of finder patterns or corners of the barcode in the image.</p>
</summary>
<author> Sean Owen
</author>
<author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source
</author>
</member>
<member name="M:ZXing.Aztec.Internal.AztecDetectorResult.#ctor(ZXing.Common.BitMatrix,ZXing.ResultPoint[],System.Boolean,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:ZXing.Aztec.Internal.AztecDetectorResult"/> class.
</summary>
<param name="bits">The bits.</param>
<param name="points">The points.</param>
<param name="compact">if set to <c>true</c> [compact].</param>
<param name="nbDatablocks">The nb datablocks.</param>
<param name="nbLayers">The nb layers.</param>
</member>
<member name="P:ZXing.Aztec.Internal.AztecDetectorResult.Compact">
<summary>
Gets a value indicating whether this Aztec code is compact.
</summary>
<value>
<c>true</c> if compact; otherwise, <c>false</c>.
</value>
</member>
<member name="P:ZXing.Aztec.Internal.AztecDetectorResult.NbDatablocks">
<summary>
Gets the nb datablocks.
</summary>
</member>
<member name="P:ZXing.Aztec.Internal.AztecDetectorResult.NbLayers">
<summary>
Gets the nb layers.
</summary>
</member>
<member name="T:ZXing.Aztec.AztecReader">
<summary>
This implementation can detect and decode Aztec codes in an image.
</summary>
<author>David Olivier</author>
</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="M:ZXing.Aztec.AztecReader.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>
a String representing the content encoded by the Data Matrix code
</returns>
</member>
<member name="M:ZXing.Aztec.AztecReader.decode(ZXing.BinaryBitmap,System.Collections.Generic.IDictionary{ZXing.DecodeHintType,System.Object})">
<summary>
Locates and decodes a Data Matrix code in an image.
</summary>
<param name="image">image of barcode to decode</param>
<param name="hints">passed as a {@link java.util.Hashtable} from {@link com.google.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.Aztec.AztecReader.reset">
<summary>
Resets any internal state the implementation has after a decode, to prepare it
for reuse.
</summary>
</member>
<member name="T:ZXing.Aztec.AztecResultMetadata">
<summary>
Aztec result meta data.
</summary>
</member>
<member name="M:ZXing.Aztec.AztecResultMetadata.#ctor(System.Boolean,System.Int32,System.Int32)">
<summary>
</summary>
<param name="compact"></param>
<param name="datablocks"></param>
<param name="layers"></param>
</member>
<member name="P:ZXing.Aztec.AztecResultMetadata.Compact">
<summary>
Gets a value indicating whether this Aztec code is compact.
</summary>
<value>
<c>true</c> if compact; otherwise, <c>false</c>.
</value>
</member>
<member name="P:ZXing.Aztec.AztecResultMetadata.Datablocks">
<summary>
Gets the nb datablocks.
</summary>
</member>
<member name="P:ZXing.Aztec.AztecResultMetadata.Layers">
<summary>
Gets the nb layers.
</summary>
</member>
<member name="T:ZXing.Aztec.AztecWriter">
<summary>
Renders an Aztec code as a <see cref="T:ZXing.Common.BitMatrix"/>
</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.BarcodeForma
奔跑的大嘴巴
- 粉丝: 0
- 资源: 1
最新资源
- 油猴(tampermonkey)插件
- python语言douban爬虫程序代码QZQ.txt
- Python语言PPTMB爬虫程序代码QZQ.txt
- Python中利用VPython库实现3D圣诞树的动态可视化
- UDP RTL8211E wireshark能抓到数据,网口调试助手需要打开wireshark才能收到数据
- SwitchyOmega插件
- 绿色经济转型中的创新思维与实践-清华大学CIDEG推出《绿色创新理论与实践》线上课程
- java项目,毕业设计-广场舞团系统
- 企业云上数据安全-华为和信通院-2024
- 使用Python在控制台中打印圣诞树的简易方法
- java项目,毕业设计-就业信息管理系统
- C# WPF-IP扫描工具WPF.zip
- Comsol热-流-固四场耦合增透瓦斯抽采,包括动态渗透率、孔隙率变化模型,涉及pde模块等四个物理场,由于内容可复制源文件
- 国内主要厂商AI大模型一览:技术特性与API调用概览
- Python编程实现控制台圣诞树打印方法
- 桌上型简易脉冲热压机sw16可编辑全套技术开发资料100%好用.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈