Download the PHP package area17/twill-image without Composer

On this page you can find all versions of the php package area17/twill-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 twill-image

Twill Image

Twill Image is a package designed to work with Twill to display responsive images easily on your site. It leverages Twill's image processing capabilities and adds modern lazy-loading techniques. It supports responsive images, art direction and fixed width images.

Contents

Installation

Install the package to your existing Twill project with Composer.

Configuration file

The configuration file contains a few general settings and this is where you can define preset for your images.

Publish config/twill-image.php to your app's config folder.

JavaScript module

You can import the JavaScript module and initialize the lazy loading class in your application.

When adding or refreshing content of a page without a reload, you can trigger a recalculation of TwillImage's observers by calling the reset() method. This is an example:

If you prefer to use a pre-compiled version of the JavaScrip module, you can publish a script twill-image.js to your app's public folder and add a <script> tag to your project.

In a Blade file.

The JavaScript module is not required. If you prefer to rely only on the browser's native loading attribute, set the js config option to false.

Usage

The Image model

The Image model allows you to interact fluently with a media object.

Argument Type Default Description
$object (Required) A17\Twill\Models\Media A17\Twill\Models\Block object Your Twill module or block object
$role (Required) string Media role
$media A17\Twill\Models\Media null Media instance

Available methods

Once you have created an instance of the Image model, you can interact by using one or chaining many of these methods.

crop

You can specify the crop name by passing it as an argument. By default, the Image model will look for a crop name default and if it isn't availble, it will look for a single crop and select it. If it can't determine the crop, it will result in an error.

width

To set the width of the image, you can use this method. The default is an image of 1000 pixels wide. This is useful if you need to display an image with a fixed width or if you know in advance that you will a larger image than the default.

Note: the width is applied to the "fallback" image (<img src="{{ $image }}">) and to determine the number of image URLs to add to the srcset attribute.

height

You can set the height of the image with this method. Similar to the width method above, it is most useful for fixed-size image. When not used, the height is determined by the aspect ratio of the image and inferred from the width.

sources

To use mutliples <source> elements, you can pass a array to this method by listing the sources other than the main crop. Each item in the array must have a mediaQuery and a crop key in order to generate the proper srcset. You can pass an optional width and height. This is useful when used with the crop method to set the main image crop. See also Art directed images.

Media queries can also be generated from a frontend breakpoints and grid structure file by passing a columns key instead of mediaQuery. You can see the format below.

sizes

Use this method to pass a sizes attribute to the model.

columns

As an alternative to the sizes method, Twill Image provides a way to generate the sizes attribute based on a frontend breakpoints and grid structure file. When placing this JSON file at the base folder of your app, the sizes attribute can be generated from passing a series of breakpoints and columns number to this method.

This would tell how many columns the image will take at each breakpoint in order to generate to proper sizes attribute.

Note: this method will have an effect only when frontend.config.json exists at in base folder of your app.

srcSetWidths

Use this method to give a list a widths to generate the srcset attribute. Without this method, Twill Image will auto generate a series of widths based on the image width.

preset

With this method you can use an object to pass a value to any of the above methods. You can also add a preset key to the config config/twill-image.php and pass the name to this method.

You can directly pass the full object if you prefer.

render

This method will return the rendered view.

toArray

If you need to split the image generation from the render (exposing the Image model data through a REST API for example), use this method to get all attributes as an array.

And use the render method from the facade to render the view.

The facade render method

As seen in the previous section, the image element rendering can be separated from the image attributes generation. You can use the Image model to set up your image and pass the resulting object (or its array format to the render method to output the view).

or

List of arguments

Argument Type Default Description
backgroundColor hex string See config Set placeholder background color
class string Add class(es) to the wrapper element
height int
layout "fullWidth" \| "constrained" \| "fixed" fullWidth By default, the image will spread the full width of its container element, constrained will apply a max-width and fixed will apply hard width and height value
loading "lazy" \| "eager" lazy Set native lazy loading attribute
lqip boolean See config Use LQIP
sizes string The image sizes attributes
width int 1000 Used with layout constrained and fixed
imageStyles array [] Apply styles to placeholder and main img tags (ex.: [['object-fit' => 'contain']]

Examples

Configuration

In config/twill-image.php, you can define general options and image presets. A preset informs the Image::preset method which crop to output along other options like responsive sources.

Presets

See above section about the preset method.

List of options

Argument Type Default Description
background_color string #e3e3e3
lqip boolean true Uses Twill LQIP method to generate responsive placeholder
webp_support boolean true If set to false, the type attribute is omitted from <source> elements
js boolean true If set to false, lazy-loading will simply rely on the image's loading attribute
presets object

Art directed images

To use different crops with media queries, you need to list the other sources in a Image::preset or by passing them to the Image::sources method. The rendered image element with have only the ratio of the main crop and other ratio need to be added with CSS.

Let's say this is your preset art_directed in your config:

It will output the image element with the class applied to the container.

Define styles for each breakpoint.

Frontend breakpoints and grid structure

We provide a way to generate sizes and media attributes by describing the structure of your page in a JSON file frontend.config.json placed at the base of your app. An example is provided frontend.config.json.example.

This file describes the breakpoints, main container widths, number of columns per breakpoints and inner/outer gutters. When this file exists in your project, you can use the columns method on the Image model or the columns key in your preset and sources objects in order to generate dynamically the sizes and media attributes.

columns example

This example assumes that you have the provided frontend.config.json in your app's base_path.

columns preset

columns output

The image source and fallback would have these sizes and media attributes (the elements have been simplified for clarity):

columns custom class

You can provide your own custom class to be used instead of the one provided. You can create your own service and provide the class name in the config file:

The service must implement the interface A17\Twill\Image\Services\Interfaces\ImageColumns.

This can also be useful if you simply need to override some of the proprties that are defined in the provided services.

Multiple medias

This is an example when you have multiple medias attached to a single role.


All versions of twill-image with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2.5
area17/twill Version 2.*|3.*
laravel/framework Version ~5.6|~5.7|~5.8|^6.0|^7.0|^8.0|^9.0|^10.0
spatie/laravel-view-models Version ^1.3
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 area17/twill-image contains the following files

Loading the files please wait ....