Download the PHP package hyder/converter without Composer

On this page you can find all versions of the php package hyder/converter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package converter

About Converter

A Laravel package that allows you to convert PDF files to images. The package uses Imagick PHP extension and GhostScript to convert PDF files to images.

Requirements

This should display the version number of Ghostscript.

Installation

You can install the package via composer:

Configuration

You can publish the configuration file to customize the package settings. To publish the configuration file, run the following command:

This will create a config/converter.php file where you can configure the package settings.

Optional

The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:

Usage

Here's an example of how to convert a PDF file to an image:

Available Methods

Here are the available methods of the package:

path(string $path)

This method sets the path of the PDF file you want to convert to an image.

format(string $format)

This method sets the output format of the image. The supported formats are JPEG, JPG, and PNG.

resolution(int $dpi)

This method sets the resolution of the output image in dots per inch (dpi). The higher the resolution, the better the quality of the image, but also the larger the file size.

maxLimit(int $max)

This method sets a maximum limit for the number of pages to be converted. If the PDF file has more pages than this limit, only the first $max pages will be converted.

setPage($pages)

This method sets the pages of the PDF file that you want to convert. The pages can be specified as single page numbers (e.g. 1,2,3), a range of pages (e.g. 1-3), or a combination of both (e.g. 1,2,3-5). By default only the first page will be converted.

allPage()

This method is used to set all pages of the PDF file for conversion to images. It doesn't make any sense to use maxLimit() or setPage() when using allPage(). If you call these methods before allPage(), they will be ignored.

toDir(string $storageTo)

This method sets the directory where the converted images will be saved. If no directory is specified, the default directory will be used.

save(string $name = "")

This method converts the PDF file to an image and saves it to the specified directory. If no name is specified, the image will be saved with a random name.

Error Handling

After enabling imagick you may get an error in the live server. ImageMagick has some security policies disabling some rights for security reasons. You will have to edit a config file to re-enable the action you need.

Open /etc/ImageMagick-6/policy.xml with your favorite text editor, find the line and replace "none" by "read|write"

Open the file

Find and edit the line

To

You can check Here for better understanding.

Credits

Imagick

Contributing

If you would like to contribute to this package, please create a pull request or open an issue.

License

The PDF to Image Converter package is open-source software licensed under the MIT license.


All versions of converter with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3|^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hyder/converter contains the following files

Loading the files please wait ....