PHP code example of hyder / converter

1. Go to this page and download the library: Download hyder/converter library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hyder / converter example snippets


'providers' => [
    // ...
    Hyder\Converter\ConverterServiceProvider::class,
];

use Hyder\Converter\Facades\PdfToImage;

// Minimalistic
$response = PdfToImage::path('/path/to/file.pdf')
    ->save();

// Customize output
$response = PdfToImage::path('/path/to/file.pdf')
    ->format('png')
    ->resolution(200)
    ->maxLimit(5)
    ->setPage('1-3,5')
    ->toDir('/path/to/directory')
    ->save('output-image-name');

bash
php artisan vendor:publish --provider="Hyder\Converter\ConverterServiceProvider" --tag="config"

text
<policy domain="coder" rights="none" pattern="PDF" />
text
<policy domain="coder" rights="read|write" pattern="PDF" />