Download the PHP package mistralys/application-utils-image without Composer

On this page you can find all versions of the php package mistralys/application-utils-image. 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 application-utils-image

AppUtils - Image Helper

PHP image helper library for basic image editing and color management.

Features

Requirements

Usage

Image file classes

The library provides classes for handling different image formats:

These classes work like the FileInfo class provided by the File Helper, so they provide all typical file operation methods as well as specialized image-related methods.

Simple image operations

The image file class methods will immediately save the modifications to the file system. If you want to perform multiple operations before saving, you will have to use an ImageHelper instance instead.

Resampling by width

This resamples the image to a new width, adjusting the height to keep the original image aspect ratio.

Resampling by height

This resamples the image to a new height, adjusting the width to keep the original image aspect ratio.

Resampling without the aspect ratio

This resamples the image to a new width and height, ignoring the original image aspect ratio.

Displaying an image in the browser

Send an image file to the browser for display. This automatically sets the correct headers for the image format.

Trigger the download of an image

This will send the image to the browser, and force it to treat it as a download and show the download dialog.

Advanced editing

The ImageHelper class

While the image file classes are practical for simple operations, the ImageHelper class provides more advanced editing capabilities, as well as combining multiple operations in a single chain.

Creating an instance

Examples

Resampling an image

Sharpening an image

This will sharpen the image by the given percentage.

NOTE: For best results, do some testing to find the optimal sharpening percentage for your target image size.

Get image dimensions (including SVG)

Freeing resources

When you're done editing, call the dispose() method to release file handles and memory resources. By default, the save() method will automatically do this for you. In case you're not saving the image, you should call dispose() manually.


All versions of application-utils-image with dependencies

PHP Build Version
Package Version
Requires mistralys/application-utils-core Version >=2.3.4
mistralys/application-utils-collections Version >=1.1
php Version >=7.4
ext-gd Version *
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 mistralys/application-utils-image contains the following files

Loading the files please wait ....