PDF417二维码扫码器软件源代码源码实现了对PDF417二维码的识别与内容提取功能,识别解码核心代码未使用其他任何第三方解码库,完全自主解码。 .
├── Pdf417Decoder
│ ├── Pdf417DecoderDemo
│ │ ├── App.config
│ │ ├── Pdf417DecoderDemo.Designer.cs
│ │ ├── Pdf417DecoderDemo.cs
│ │ ├── Pdf417DecoderDemo.csproj
│ │ ├── Pdf417DecoderDemo.resx
│ │ ├── Pdf417Icon.ico
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Pdf417DecoderDemo.exe
│ │ │ ├── Pdf417DecoderDemo.exe.config
│ │ │ ├── Pdf417DecoderDemo.pdb
│ │ │ ├── Pdf417DecoderDemo.xml
│ │ │ ├── Pdf417DecoderLibrary.dll
│ │ │ ├── Pdf417DecoderLibrary.pdb
│ │ │ ├── Pdf417DecoderLibrary.xml
│ │ │ └── Pdf417DecoderTrace.txt
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Pdf417DecoderDemo.Pdf417DecoderDemo.resources
│ │ ├── Pdf417DecoderDemo.Properties.Resources.resources
│ │ ├── Pdf417DecoderDemo.csproj.AssemblyReference.cache
│ │ ├── Pdf417DecoderDemo.csproj.CopyComplete
│ │ ├── Pdf417DecoderDemo.csproj.CoreCompileInputs.cache
│ │ ├── Pdf417DecoderDemo.csproj.FileListAbsolute.txt
│ │ ├── Pdf417DecoderDemo.csproj.GenerateResource.cache
│ │ ├── Pdf417DecoderDemo.exe
│ │ ├── Pdf417DecoderDemo.pdb
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Pdf417DecoderLibrary
│ │ ├── BarcodeArea.cs
│ │ ├── BarcodeInfo.cs
│ │ ├── BorderPattern.cs
│ │ ├── BorderSymbol.cs
│ │ ├── ErrorCorrection.cs
│ │ ├── Modulus.cs
│ │ ├── Pdf417Decoder.cs
│ │ ├── Pdf417DecoderLibrary.csproj
│ │ ├── Pdf417Trace.cs
│ │ ├── Polynomial.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── StaticTables.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Pdf417DecoderLibrary.dll
│ │ │ ├── Pdf417DecoderLibrary.pdb
│ │ │ └── Pdf417DecoderLibrary.xml
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Pdf417DecoderLibrary.csproj.AssemblyReference.cache
│ │ ├── Pdf417DecoderLibrary.csproj.CoreCompileInputs.cache
│ │ ├── Pdf417DecoderLibrary.csproj.FileListAbsolute.txt
│ │ ├── Pdf417DecoderLibrary.dll
│ │ ├── Pdf417DecoderLibrary.pdb
│ │ └── TempPE
│ ├── Pdf417DecoderLibrary.sln
│ └── Pdf417VideoDecoder
│ ├── App.config
│ ├── Camera.cs
│ ├── DirectShowLib.cs
│ ├── FrameSize.cs
│ ├── Pdf417VideoDecoder.cs
│ ├── Pdf417VideoDecoder.csproj
│ ├── Pdf417VideoDecoder.designer.cs
│ ├── Pdf417VideoDecoder.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── SampleGrabberHelper.cs
│ ├── bin
│ │ └── Debug
│ │ ├── Pdf417DecoderLibrary.dll
│ │ ├── Pdf417DecoderLibrary.pdb
│ │ ├── Pdf417DecoderLibrary.xml
│ │ ├── Pdf417VideoDecoder.exe
│ │ ├── Pdf417VideoDecoder.exe.config
│ │ ├── Pdf417VideoDecoder.pdb
│ │ └── Pdf417VideoDecoder.xml
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Pdf417VideoDecoder.Properties.Resources.resources
│ ├── Pdf417VideoDecoder.csproj.AssemblyReference.cache
│ ├── Pdf417VideoDecoder.csproj.CopyComplete
│ ├── Pdf417VideoDecoder.csproj.CoreCompileInputs.cache
│ ├── Pdf417VideoDecoder.csproj.FileListAbsolute.txt
│ ├── Pdf417VideoDecoder.csproj.GenerateResource.cache
│ ├── Pdf417VideoDecoder.exe
│ ├── Pdf417VideoDecoder.pdb
│ ├── Pdf417VideoDecoderDemo.Pdf417VideoDecoder.resources
│ └── TempPE
│ └── Properties.Resources.Designer.cs.dll
├── README.md
└── 找例子网_PDF417BarcodeDecoder.zip
22 directories, 89 files
评论