Download the PHP package phpmlkit/opal without Composer

On this page you can find all versions of the php package phpmlkit/opal. 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 opal

Opal

High-performance image processing for PHP, backed by libvips

Latest Version GitHub Workflow Status Total Downloads

Features

Performance

Load → resize → rotate 45° → sharpen (full pipeline):

Image GD Imagick Opal
640×480 8.48 ms 128.55 ms 1.56 ms
1920×1080 49.67 ms 721.97 ms 5.36 ms
4000×2670 152.74 ms 2,039.15 ms 15.47 ms
6000×4000 299.43 ms 3,538.47 ms 33.17 ms

Apple M1, macOS. Run: php benchmarks/opal-vs-gd-vs-imagick.php

Installation

Quick Start

Core Concepts

Lazy Evaluation

All image operations are lazy - they build a pipeline that's only executed when you call a terminal operation:

Immutable Operations

Every transformation returns a new image instance:

Usage Examples

Basic Image Operations

Color Space Conversion

Color Adjustments

Filters and Effects

Drawing and Compositing

NDArray Interoperability

Advanced Options

API Reference

Value Objects

Color

Immutable RGBA color representation.

ImageSize

Immutable 2D size descriptor.

BoundingBox

Immutable axis-aligned bounding box.

Enums

Options Classes

LoadOptions

Control image loading behavior.

SaveOptions

Control image saving behavior.

Performance Tips

  1. Use lazy evaluation: Chain operations together before saving
  2. Use shrink-on-load: Load with Image::thumbnail() or LoadOptions::withShrink() for large images
  3. Choose appropriate interpolation: Use Lanczos for quality, Bilinear for speed
  4. Dispose explicitly: Call dispose() when done with large images

Documentation

Development

Requirements

License

MIT

Credits


All versions of opal with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
ext-ffi Version *
codewithkyrian/platform-package-installer Version ^2.0
jcupitt/vips Version ^2.0
phpmlkit/ndarray Version ^2.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 phpmlkit/opal contains the following files

Loading the files please wait ...