├── CartFile
├── Demo-Carthage
├── .gitignore
├── CartFile
├── Cartfile.resolved
├── IRLPDFScanDemo
│ ├── Assets.xcassets
│ │ ├── Contents.json
│ │ ├── AccentColor.colorset
│ │ │ └── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── Info.plist
│ ├── ViewController.swift
│ ├── AppDelegate.swift
│ ├── Base.lproj
│ │ └── LaunchScreen.storyboard
│ └── SceneDelegate.swift
├── IRLPDFScanDemo.xcodeproj
│ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
└── Configuration
│ └── SampleCode.xcconfig
├── docs
├── CNAME
├── favicon.ico
├── images
│ ├── Icon.png
│ └── scan.jpg
├── index
│ ├── data.mdb
│ ├── lock.mdb
│ ├── navigator.index
│ └── availability.index
├── metadata.json
├── img
│ ├── deprecated-icon.3eb10b87.svg
│ ├── added-icon.96de1ebf.svg
│ └── modified-icon.5d49bcfe.svg
├── index.html
├── js
│ ├── highlight-js-json.471128d2.js
│ ├── highlight-js-diff.672514df.js
│ ├── highlight-js-http.ec39e120.js
│ ├── highlight-js-markdown.451c845b.js
│ ├── highlight-js-bash.85a55401.js
│ ├── highlight-js-xml.784eb41b.js
│ ├── highlight-js-java.a814d7f9.js
│ ├── highlight-js-llvm.ddaa176e.js
│ ├── highlight-js-objectivec.bcdf5156.js
│ ├── highlight-js-custom-markdown.fb3d4662.js
│ ├── highlight-js-ruby.fb547e8d.js
│ ├── highlight-js-c.99b899e6.js
│ ├── highlight-js-php.cc8d6c27.js
│ ├── highlight-js-python.b6226703.js
│ └── highlight-js-perl.b3c5d3f2.js
├── favicon.svg
├── theme-settings.json
├── data
│ └── documentation
│ │ └── irlpdfscancontent
│ │ ├── irlpdfscancontent
│ │ ├── observableobject-implementations.json
│ │ ├── defaultpdfname.json
│ │ └── documentcameraviewcontrollerdidcancel(_:).json
│ │ └── irlpdfview
│ │ ├── url.json
│ │ ├── document.json
│ │ ├── init(url:).json
│ │ ├── pdfview.json
│ │ ├── labelshidden().json
│ │ ├── body.json
│ │ ├── hidden().json
│ │ ├── fixedsize().json
│ │ ├── init(document:pdfview:).json
│ │ ├── unredacted().json
│ │ ├── colorinvert().json
│ │ ├── scaledtofit().json
│ │ └── scaledtofill().json
├── tutorial
│ └── index.html
└── documentation
│ └── index.html
├── Icon.png
├── documentationicon.png
├── Demo
├── IRLScanDemo
│ ├── Assets.xcassets
│ │ ├── Contents.json
│ │ ├── AccentColor.colorset
│ │ │ └── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── Preview Content
│ │ └── Preview Assets.xcassets
│ │ │ └── Contents.json
│ ├── Info.plist
│ ├── IRLScanDemoApp.swift
│ └── ContentView.swift
├── Configuration
│ └── SampleCode.xcconfig
└── .gitignore
├── Demo-Cocoapods
├── IRLPDFScanDemo
│ ├── Assets.xcassets
│ │ ├── Contents.json
│ │ ├── AccentColor.colorset
│ │ │ └── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── Info.plist
│ ├── ViewController.swift
│ ├── AppDelegate.swift
│ ├── Base.lproj
│ │ └── LaunchScreen.storyboard
│ └── SceneDelegate.swift
├── Podfile
├── IRLPDFScanDemo.xcodeproj
│ └── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
├── Podfile.lock
└── Configuration
│ └── SampleCode.xcconfig
├── Sources
└── IRLPDFScanContent
│ ├── IRLPDFScanContent.docc
│ ├── Resources
│ │ ├── scan.jpg
│ │ └── code-files
│ │ │ ├── Icon.png
│ │ │ ├── 00-Info.plist
│ │ │ ├── 2-ViewController.swift
│ │ │ ├── 3-ViewController.swift
│ │ │ ├── 01-Info.plist
│ │ │ ├── 1-ContentView.swift
│ │ │ ├── 4-ViewController.swift
│ │ │ ├── 5-ViewController.swift
│ │ │ ├── 2-ContentView.swift
│ │ │ ├── 6-ViewController.swift
│ │ │ ├── 3-ContentView.swift
│ │ │ ├── Migration-4.swift
│ │ │ ├── 4-ContentView.swift
│ │ │ ├── Migration-3.swift
│ │ │ ├── 7-ViewController.swift
│ │ │ ├── 5-ContentView.swift
│ │ │ ├── 8-ViewController.swift
│ │ │ ├── Migration-5.swift
│ │ │ ├── FINAL-ContentView.swift
│ │ │ ├── Migration-6.swift
│ │ │ ├── Migration-7.swift
│ │ │ ├── Migration-FINAL.swift
│ │ │ ├── 9-ViewController.swift
│ │ │ ├── FINAL-ViewController.swift
│ │ │ ├── Migration-1.swift
│ │ │ └── Migration-2.swift
│ ├── Extension.md
│ ├── SwiftUI.md
│ ├── Tutuorials
│ │ ├── Tutorial Table of Contents.tutorial
│ │ └── SwiftUI IRLPDFScanContent.tutorial
│ ├── About.md
│ ├── Documentation.md
│ ├── ClassicalDelegate.md
│ └── GettingStarted.md
│ ├── Internal
│ ├── IRLPDFScanContent+Internal.swift
│ └── IRLScannerViewControllerDelegation.swift
│ ├── Exports.swift
│ ├── IRLPDFScanContent+VNDocumentCameraViewControllerDelegate.swift
│ ├── IRLPDFView.swift
│ └── IRLPDFScanContentProtocol.swift
├── IRLPDFScanContent.xcodeproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
└── xcshareddata
│ └── xcschemes
│ └── IRLPDFScanContent.xcscheme
├── Package.swift
├── SECURITY.md
├── IRLPDFScanContent
└── IRLPDFScanContent.h
├── CHANGELOG.md
├── LICENSE
├── LICENSE.txt
├── IRLPDFScanContent.podspec
├── updatedocs.command
└── .gitignore
/CartFile:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Demo-Carthage/.gitignore:
--------------------------------------------------------------------------------
1 | Carthage
--------------------------------------------------------------------------------
/docs/CNAME:
--------------------------------------------------------------------------------
1 | irlpdfscancontent.irlmobile.com
2 |
--------------------------------------------------------------------------------
/Demo-Carthage/CartFile:
--------------------------------------------------------------------------------
1 | github "charlymr/IRLPDFScanContent" ~> 1.1.0
2 |
--------------------------------------------------------------------------------
/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/Icon.png
--------------------------------------------------------------------------------
/Demo-Carthage/Cartfile.resolved:
--------------------------------------------------------------------------------
1 | github "charlymr/IRLPDFScanContent" "1.1.0"
2 |
--------------------------------------------------------------------------------
/docs/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/docs/favicon.ico
--------------------------------------------------------------------------------
/docs/images/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/docs/images/Icon.png
--------------------------------------------------------------------------------
/docs/images/scan.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/docs/images/scan.jpg
--------------------------------------------------------------------------------
/docs/index/data.mdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/docs/index/data.mdb
--------------------------------------------------------------------------------
/docs/index/lock.mdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/docs/index/lock.mdb
--------------------------------------------------------------------------------
/documentationicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/documentationicon.png
--------------------------------------------------------------------------------
/docs/index/navigator.index:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/docs/index/navigator.index
--------------------------------------------------------------------------------
/docs/index/availability.index:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/docs/index/availability.index
--------------------------------------------------------------------------------
/Demo/IRLScanDemo/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "author" : "xcode",
4 | "version" : 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/Demo-Carthage/IRLPDFScanDemo/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "author" : "xcode",
4 | "version" : 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/Demo-Cocoapods/IRLPDFScanDemo/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "author" : "xcode",
4 | "version" : 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/Demo-Cocoapods/Podfile:
--------------------------------------------------------------------------------
1 | platform :ios, '13.0'
2 |
3 | target "IRLPDFScanDemo" do
4 | pod 'IRLPDFScanContent', '~> 1.1.0'
5 | use_frameworks!
6 | end
--------------------------------------------------------------------------------
/Demo/IRLScanDemo/Preview Content/Preview Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "author" : "xcode",
4 | "version" : 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/docs/metadata.json:
--------------------------------------------------------------------------------
1 | {"bundleDisplayName":"IRLPDFScanContent","bundleIdentifier":"com.irlmobile.IRLPDFScanContent","schemaVersion":{"major":0,"minor":1,"patch":0}}
--------------------------------------------------------------------------------
/Sources/IRLPDFScanContent/IRLPDFScanContent.docc/Resources/scan.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/Sources/IRLPDFScanContent/IRLPDFScanContent.docc/Resources/scan.jpg
--------------------------------------------------------------------------------
/Sources/IRLPDFScanContent/IRLPDFScanContent.docc/Resources/code-files/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/charlymr/IRLPDFScanContent/HEAD/Sources/IRLPDFScanContent/IRLPDFScanContent.docc/Resources/code-files/Icon.png
--------------------------------------------------------------------------------
/docs/img/deprecated-icon.3eb10b87.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
1 |
2 |