-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathGhostscriptConverterCommand.php
42 lines (35 loc) · 1.37 KB
/
GhostscriptConverterCommand.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/*
* This file is part of the PDF Version Converter.
*
* (c) Thiago Rodrigues <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Xthiago\PDFVersionConverter\Converter;
use Symfony\Component\Process\Process;
/**
* Encapsulates the knowledge about gs command.
*
* @author Thiago Rodrigues <[email protected]>
*/
class GhostscriptConverterCommand
{
/**
* @var Filesystem
*/
protected $baseCommand = 'gs -sDEVICE=pdfwrite -dCompatibilityLevel=%s -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -dColorConversionStrategy=/LeaveColorUnchanged -dEncodeColorImages=false -dEncodeGrayImages=false -dEncodeMonoImages=false -dDownsampleMonoImages=false -dDownsampleGrayImages=false -dDownsampleColorImages=false -dAutoFilterColorImages=false -dAutoFilterGrayImages=false -dColorImageFilter=/FlateEncode -dGrayImageFilter=/FlateEncode -sOutputFile=%s %s';
public function __construct()
{
}
public function run($originalFile, $newFile, $newVersion)
{
$command = sprintf($this->baseCommand, $newVersion, $newFile, escapeshellarg($originalFile));
$process = new Process($command);
$process->run();
if (!$process->isSuccessful()) {
throw new \RuntimeException($process->getErrorOutput());
}
}
}