-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Better handling of PDF / UIImage generation for large PDF. (We now …
…generate the 1st page and generate all other pages on a background thread) - Updated Documentation/Tutorials - Overall, fastest performance
- Loading branch information
Showing
454 changed files
with
1,041 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "charlymr/IRLPDFScanContent" ~> 1.0.1 | ||
github "charlymr/IRLPDFScanContent" ~> 1.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "charlymr/IRLPDFScanContent" "1.0.1" | ||
github "charlymr/IRLPDFScanContent" "1.0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,14 @@ | |
Pod::Spec.new do |s| | ||
|
||
s.name = "IRLPDFScanContent" | ||
s.version = "1.0.1" | ||
s.version = "1.0.2" | ||
s.summary = "SwiftUI & UKKit - Images or PDF scanner." | ||
s.description = "A convenient class usable from `UIKit` view controller or `SwiftUI` to scan document & get `UIImage` or `PDFDocument` as result" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
|
||
s.homepage = "https://github.com/charlymr/IRLPDFScanContent" | ||
s.authors = { 'Denis Martin' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/charlymr/IRLPDFScanContent.git', :branch => 'main', :tag => '1.0.1'} | ||
s.source = { :git => 'https://github.com/charlymr/IRLPDFScanContent.git', :branch => 'main', :tag => '1.0.2'} | ||
|
||
s.platform = :ios, '13.0' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,16 @@ Please add the following to your plist: | |
|
||
## Install | ||
|
||
### via Swift Package (With Documentation) | ||
### Swift Package | ||
Integrate the library via Swift Package (With Documentation) | ||
|
||
Add the Package to your project, min version `5.5`, See [Apple Documentation](https://developer.apple.com/documentation/swift_packages/adding_package_dependencies_to_your_app). | ||
#### In Xcode | ||
|
||
Add the Package to your project, min version `5.5`, See [Apple Documentation](https://developer.apple.com/documentation/swift_packages/adding_package_dependencies_to_your_app) for more details. | ||
|
||
#### Manually | ||
|
||
Create a Package.swift in a folder, then Drop the file on Xcode | ||
|
||
```swift | ||
// swift-tools-version:5.5 | ||
|
@@ -34,7 +41,7 @@ let package = Package( | |
targets: ["SPMDemo"]), | ||
], | ||
dependencies: [ | ||
.package(url: "[email protected]:charlymr/IRLPDFScanContent.git", from: "1.0.0"), | ||
.package(url: "[email protected]:charlymr/IRLPDFScanContent.git", from: "1.0.2"), | ||
], | ||
targets: [ | ||
.target( name: "SPMDemo", | ||
|
@@ -45,16 +52,19 @@ let package = Package( | |
) | ||
``` | ||
|
||
### via CocoaPods | ||
### CocoaPods | ||
Integrate the library via CocoaPods | ||
|
||
Install CocoaPods if not already available: | ||
#### Install CocoaPods | ||
if not already available: | ||
|
||
``` bash | ||
$ [sudo] gem install cocoapods | ||
$ pod setup | ||
``` | ||
|
||
Change to the directory of your Xcode project, and Create and Edit your Podfile and add IRLPDFScanContent: | ||
#### Update your Podfile | ||
Change to the directory of your Xcode project, and Create and Edit your Podfile and add ``IRLPDFScanContent``: | ||
|
||
``` bash | ||
$ cd /path/to/MyProject | ||
|
@@ -69,27 +79,37 @@ target "YOUR APP" do | |
end | ||
``` | ||
|
||
### via Carthage | ||
#### Prepare project | ||
run `pod update` or `pod install` to generate the Workspace | ||
|
||
``` bash | ||
$ pod update | ||
``` | ||
|
||
### Carthage | ||
Integrate the library via Carthage. | ||
For more details on Cartage and how to use it, check the [Carthage Github](https://github.com/Carthage/Carthage) documentation | ||
|
||
#### Install Carthage | ||
Install [Carthage](https://github.com/Carthage/Carthage#installing-carthage) if not already available | ||
|
||
Change to the directory of your Xcode project, and Create and Edit your Podfile and add IRLPDFScanContent: | ||
#### Update your CartFile | ||
Change to the directory of your Xcode project, and Create and Edit your CartFile and add [``IRLPDFScanContent``](https://irlpdfscancontent.irlmobile.com/documentation/): | ||
|
||
``` bash | ||
$ cd /path/to/MyProject | ||
$ touch CartFile | ||
## edit CartFile: | ||
|
||
github "charlymr/IRLPDFScanContent" ~> 1.0.1 | ||
github "charlymr/IRLPDFScanContent" ~> 1.0.2 | ||
``` | ||
|
||
Save and run: | ||
#### Prepare | ||
``` bash | ||
$ carthage update --use-xcframeworks | ||
``` | ||
Drop the Carthage/Build/iOS .framework in your project. | ||
Drop the Carthage/Build/iOS `.xcframework` in your project. | ||
|
||
For more details on Cartage and how to use it, check the [Carthage Github](https://github.com/Carthage/Carthage) documentation | ||
|
||
## [Getting started](https://irlpdfscancontent.irlmobile.com) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.