julietgar/ghostscript
Composer 安装命令:
composer require julietgar/ghostscript
包简介
Ghostscript is an object oriented Ghostscript binary wrapper for PHP. Forked from https://github.com/GravityMedia/Ghostscript
README 文档
README
Ghostscript is an object oriented Ghostscript binary wrapper for PHP.
Forked from https://github.com/GravityMedia/Ghostscript
Requirements
This library has the following requirements:
- PHP 8.0+
- Ghostscript 9.00+
Installation
Install Composer in your project:
$ curl -s https://getcomposer.org/installer | php
Require the package via Composer:
$ php composer.phar require julietgar/ghostscript:v2.0
Usage
This is a simple usage example how to convert an input PDF to an output PDF.
// Initialize autoloader require_once __DIR__ . '/vendor/autoload.php'; // Import classes use Julietgar\Ghostscript\Ghostscript; use Symfony\Component\Process\Process; // Define input and output files $inputFile = '/path/to/input/file.pdf'; $outputFile = '/path/to/output/file.pdf'; // Create Ghostscript object $ghostscript = new Ghostscript([ 'quiet' => false ]); // Create and configure the device $device = $ghostscript->createPdfDevice($outputFile); $device->setCompatibilityLevel(1.4); // Create process $process = $device->createProcess($inputFile); // Print the command line print '$ ' . $process->getCommandLine() . PHP_EOL; // Run process $process->run(function ($type, $buffer) { if ($type === Process::ERR) { throw new \RuntimeException($buffer); } print $buffer; });
Testing
Clone this repository, install Composer and all dependencies:
$ php composer.phar install
Run the test suite:
$ php composer.phar test
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 291
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-01-06