Download the PHP package wineworlds/image-on-demand-service without Composer

On this page you can find all versions of the php package wineworlds/image-on-demand-service. 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 image-on-demand-service

Image on Demand Service TYPO3 Extension

Image on Demand Service is a TYPO3 extension that provides on-demand image processing services for your TYPO3 website. It allows you to dynamically manipulate and generate images based on specific requests.

Features

Installation

The extension can be easily installed using Composer and is available on Packagist.

  1. Install the extension using Composer:

  2. Activate the extension in the TYPO3 backend.

Usage

The Image on Demand Service extension automatically processes requested images that match a specific URL pattern. It uses the ImageOnDemandMiddleware class to handle image requests. When an image request URL matches the specified pattern, the middleware processes the request and serves the manipulated image.

URL Pattern (1.1.0)

The URL pattern for image requests is: /image-service/{width}/{height}/{filename}?id={fileReferenceId}&type={format}&crop={cropVariant}&text={dummyImageText}&bgColor={dummyImageBgColor}&textColor={dummyImageTextColor}

The filename is not taken into account in caching.

Parameter Description Default Value Required
/width/ The width of the generated image. - Yes
/height/ The height of the generated image. - Yes
&id=18 The unique ID of the fileReference. - No
&type=webp The format of the image (e.g., JPEG, PNG, WebP, etc.). - No
&crop=desktop The selected image crop variant. 'default' No
&text=No Image The text displayed on the dummy image if no ID is provided or no image is found. 'Dummy Image' No
&bgColor=ff0000 The background color of the dummy image. '000000' No
&textColor=0000ff The text color of the text displayed on the dummy image. 'ffffff' No

URL Pattern (1.0.3)

The URL pattern for image requests is: /image-service/{fileId}/{width}/{height}/{format}/{filename}

For example: /image-service/123/300c/200c/jpeg/my-seo-friendly-image.jpeg will request an image with the ID 123, resized to a width of 300c pixels and a height of 200c pixels, saved in JPEG format, and with the filename "my-seo-friendly-image.jpeg".

If the requested image is not found or an error occurs during processing, a placeholder "Image Not Found" image will be returned.

Contributors

License

This TYPO3 extension is licensed under the MIT License.


All versions of image-on-demand-service with dependencies

PHP Build Version
Package Version
Requires typo3/cms-core Version ^11.5.26 || ^12.4 || dev-main
typo3/cms-extbase Version ^11.5.26 || ^12.4 || dev-main
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 wineworlds/image-on-demand-service contains the following files

Loading the files please wait ....