-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RELEASE_8.15.0] Add split feature (#132)
* [RELEASE_8.15.0] Add split feature
- Loading branch information
1 parent
884eb43
commit 7f1e8e9
Showing
26 changed files
with
1,050 additions
and
133 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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# SplitPdfBuilder | ||
|
||
Split `n` pdf files. | ||
|
||
* `splitMode(?Sensiolabs\GotenbergBundle\Enumeration\SplitMode $splitMode)`: | ||
Either intervals or pages. (default None). | ||
|
||
* `splitSpan(string $splitSpan)`: | ||
Either the intervals or the page ranges to extract, depending on the selected mode. (default None). | ||
|
||
* `splitUnify(bool $bool)`: | ||
Specify whether to put extracted pages into a single file or as many files as there are page ranges. Only works with pages mode. (default false). | ||
|
||
* `files(string $paths)`: | ||
|
||
* `downloadFrom(array $downloadFrom)`: | ||
|
||
* `webhookConfiguration(string $name)`: | ||
Providing an existing $name from the configuration file, it will correctly set both success and error webhook URLs as well as extra_http_headers if defined. | ||
|
||
* `webhookUrl(string $url, ?string $method)`: | ||
Sets the webhook for cases of success. | ||
Optionaly sets a custom HTTP method for such endpoint among : POST, PUT or PATCH. | ||
|
||
* `errorWebhookUrl(?string $url, ?string $method)`: | ||
Sets the webhook for cases of error. | ||
Optionaly sets a custom HTTP method for such endpoint among : POST, PUT or PATCH. | ||
|
||
* `webhookExtraHeaders(array $extraHeaders)`: | ||
Extra headers that will be provided to the webhook endpoint. May it either be Success or Error. | ||
|
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.