Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pointybeard/pdftoolbox
A PHP wrapper class for callas pdfToolbox cli (https://www.callassoftware.com/en/products/pdftoolbox).
https://github.com/pointybeard/pdftoolbox
Last synced: about 1 month ago
JSON representation
A PHP wrapper class for callas pdfToolbox cli (https://www.callassoftware.com/en/products/pdftoolbox).
- Host: GitHub
- URL: https://github.com/pointybeard/pdftoolbox
- Owner: pointybeard
- License: other
- Created: 2021-09-09T01:29:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T04:34:07.000Z (7 months ago)
- Last Synced: 2024-06-17T19:18:08.193Z (5 months ago)
- Language: PHP
- Size: 20.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# PHP Wrapper for callas pdfToolbox
A PHP wrapper class for [callas pdfToolbox](https://www.callassoftware.com/en/products/pdftoolbox).
## Installation
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/pdftoolbox` or add `"pointybeard/pdftoolbox": "~1.0.0"` to your `composer.json` file.
And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update### Requirements
This library requires pdfToolbox and PHP 7.4 or greater is installed.
## Usage
Here is a basic usage example:
```php
['JSON,ERROR,WARNING,PATH=./report/testreport.json'],
'a',
'setvariable' => [
'RESOLUTION:300',
'PAGE_COUNT:2',
]
],
$o,
$e
);var_dump($o, $e);
```See `pdfToolbox --help` on the command line to see help information for each of the options it supports.
## Support
If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/pointybeard/pdftoolbox/issues),
or better yet, fork the library and submit a pull request.## Contributing
We encourage you to contribute to this project. Please check out the [Contributing documentation](https://github.com/pointybeard/pdftoolbox/blob/master/CONTRIBUTING.md) for guidelines about how to get involved.
## License
"PHP Wrapper for callas pdfToolbox" is released under the [MIT License](http://www.opensource.org/licenses/MIT).