smallpics / craft-smallpics
Small Pics image transformer for Craft
Package info
github.com/SmallPics/craft-smallpics
Type:craft-plugin
pkg:composer/smallpics/craft-smallpics
Requires
- php: ^8.1
- craftcms/cms: ^4.5|^5.0.0
- smallpics/smallpics-php: ^1.2.0
Requires (Dev)
- fostercommerce/ecs: dev-main
- fostercommerce/rector: v2.x-dev
- phpstan/phpstan: ^2.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Small Pics for Craft CMS
Add Small Pics image CDN and transforms to Craft CMS.
Upgrading
- v1 to v2 upgrade guide
Requirements
- Craft CMS 4.5+ or 5.0+
- PHP 8.1+
Installation
composer require smallpics/craft-smallpics ./craft plugin/install smallpics
or with DDEV
ddev composer require smallpics/craft-smallpics ddev craft plugin/install smallpics
Configuration
Create config/smallpics.php in the root of your project, or copy and rename config.php.
A source baseUrl is required.
Configuration parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
transformNativeImages |
Boolean | No | true |
Use Small Pics for Craft's native image transforms. |
transformThumbnails |
Boolean | No | true |
Use Small Pics for Craft thumbnail URLs. |
thumbnailParams |
Array | No | [] |
Transform parameters applied to thumbnails after global and source defaults. |
nativeTransformsParams |
Array | No | [] |
Transform parameters applied to native Craft transforms after global and source defaults. |
defaultSource |
String | No | 'default' |
Source to use when a transform does not specify one. If omitted when sources is set, the first source is the default. |
baseUrl |
String | Yes | None | Small Pics base URL for the default single source. Required when sources is empty. |
secret |
String or null |
No | null |
Signing secret for the default single source. Required if signed requests are enabled for your image source in Small Pics. |
transformSvgs |
Boolean | No | false |
Transform SVGs for the default single source. |
transformAnimatedGifs |
Boolean | No | true |
Transform animated GIFs for the default single source. |
sources |
Array | No | [] |
See Source configuration. |
defaultParams |
Array | No | [] |
Transform parameters applied to every request before source and per-transform parameters. |
Source configuration
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
baseUrl |
String | Yes | None | Small Pics base URL for this source. |
secret |
String or null |
No | null |
Signing secret for this source. Required if signed requests are enabled for your image source in Small Pics. |
transformSvgs |
Boolean | No | false |
Transform SVGs for this source. |
transformAnimatedGifs |
Boolean | No | true |
Transform animated GIFs for this source. |
defaultParams |
Array | No | [] |
Transform parameters applied after global defaults and before per-transform parameters. |
Single Source
return [ 'transformNativeImages' => true, 'nativeTransformsParams' => [ 'q' => 55, ], 'transformThumbnails' => true, 'thumbnailParams' => [ 'q' => 50, ], 'baseUrl' => 'https://my-source.smallpics.io', 'secret' => getenv('SMALLPICS_SECRET') ?: null, 'transformSvgs' => false, 'transformAnimatedGifs' => false, 'defaultParams' => [ 'q' => 65, ], ];
Multiple Sources
Use source labels to select the source setup for an image. The label is only used by the plugin and is not added to generated URLs.
See an example of selecting a source in the Twig section below.
return [ 'transformNativeImages' => true, 'nativeTransformsParams' => [ 'q' => 55, ], 'transformThumbnails' => true, 'thumbnailParams' => [ 'q' => 50, ], 'defaultSource' => 'productImages', 'sources' => [ 'productImages' => [ 'baseUrl' => getenv('SMALLPICS_PRODUCTS_BASE_URL'), 'secret' => getenv('SMALLPICS_PRODUCTS_SECRET') ?: null, 'transformSvgs' => false, 'transformAnimatedGifs' => false, 'defaultParams' => [ 'q' => 80, ], ], 'editorialImages' => [ 'baseUrl' => getenv('SMALLPICS_EDITORIAL_BASE_URL'), 'secret' => getenv('SMALLPICS_EDITORIAL_SECRET') ?: null, 'transformSvgs' => false, 'transformAnimatedGifs' => false, ], ], ];
Parameter Precedence
Later values override earlier values.
- Direct calls: global
defaultParams, sourcedefaultParams, then the params passed totransformImage()orsrcset(). - Native Craft transforms: global
defaultParams, sourcedefaultParams, the Craft transform config, thennativeTransformsParams. - Thumbnails: global
defaultParams, sourcedefaultParams, the generated thumbnail dimensions and mode, thenthumbnailParams.
Native Craft Transforms
Native Craft image transforms are handled automatically when transformNativeImages is enabled. Use nativeTransformsParams to set Small Pics params specifically for native transforms.
For example, to give all native transforms a lower quality than the default:
return [ 'transformNativeImages' => true, 'nativeTransformsParams' => [ 'q' => 55, // Give all native transforms a lower quality. ], // ... ];
Native transforms are any transform applied to images automatically by Craft, or through native Craft operations. For example:
{{ asset.getUrl({ width: 800, height: 600, mode: 'crop' }) }}
{{ asset.getImg('hero') }}
{{ asset.getSrcset(['400w', '800w'], { width: 800 }) }}
Image thumbnails can also be handled automatically when transformThumbnails is enabled. Use thumbnailParams to override your Small Pics global defaults specifically for thumbnails.
return [ 'transformThumbnails' => true, 'thumbnailParams' => [ 'q' => 50, // Give thumbnails the lowest quality. ], // ... ];
Native Transform Key Mapping
Craft transform keys are translated to Small Pics keys when native transforms are intercepted:
| Craft key | Small Pics param |
|---|---|
width |
w |
height |
h |
quality |
q |
mode |
fit |
position |
named anchor in crop |
fill |
bg |
Twig
Transform an Image
transformImage() returns a TransformedImage. The image URL can be retrieved by either calling getUrl() or simply rendering the image instance as a string.
{% set image = craft.smallpics.transformImage(asset, {
w: 800,
h: 600,
fit: 'crop',
q: 80
}) %}
<img
src="{{ image }}"
width="{{ image.width }}"
height="{{ image.height }}"
>
<!-- alternatively, use the getUrl() method directly. -->
<img
src="{{ image.getUrl() }}"
width="{{ image.width }}"
height="{{ image.height }}"
>
Both variations render:
<img src="https://my-source.smallpics.io/bird.jpg?fit=crop&h=600&q=80&w=800" width="800" height="600" >
Use a Named Transform
You can also pass a named Craft transform handle as the config.
<img src="{{ craft.smallpics.transformImage(asset, 'hero') }}">
Renders:
<img src="https://my-source.smallpics.io/bird.jpg?fit=crop&h=600&w=800">
Select a Source
Select a source with source.
{{ craft.smallpics.transformImage(asset, {
source: 'editorialImages',
w: 1200
}) }}
Assuming a baseUrl of https://editorial-images.smallpics.io, that would render:
https://editorial-images.smallpics.io/bird.jpg?w=1200
Set an Output Format
For format selection, see the note in Transform Options.1
<img src="{{ craft.smallpics.transformImage(asset, { w: 1200, fm: 'avif' }) }}">
Renders:
<img src="https://my-source.smallpics.io/bird.jpg?fm=avif&w=1200">
Create a Srcset
srcset() takes the image, descriptors, and common config.
<img srcset="{{ craft.smallpics.srcset( asset, { '1x': { dpr: 1 }, '2x': { dpr: 2 }, '800w': { w: 800 } }, { w: 400, h: 300, fit: 'crop' } ) }}">
Renders:
<img srcset="https://my-source.smallpics.io/bird.jpg?dpr=1&fit=crop&h=300&w=400 1x, https://my-source.smallpics.io/bird.jpg?dpr=2&fit=crop&h=300&w=400 2x, https://my-source.smallpics.io/bird.jpg?fit=crop&h=300&w=800 800w" >
Set a Fallback src
If you need a fallback src value, you can reuse one of the transformed images
from the generated srcset instead of creating a separate transform.
{% set srcset = craft.smallpics.srcset(
asset,
{
'1x': { dpr: 1 },
'2x': { dpr: 2 },
'800w': { w: 800 }
},
{
w: 400,
h: 300,
fit: 'crop'
}
) %}
<img
src="{{ srcset['800w'] }}"
srcset="{{ srcset }}"
alt="{{ asset.alt }}"
>
Renders:
<img src="https://my-source.smallpics.io/bird.jpg?fit=crop&h=300&w=800" srcset="https://my-source.smallpics.io/bird.jpg?dpr=1&fit=crop&h=300&w=400 1x, https://my-source.smallpics.io/bird.jpg?dpr=2&fit=crop&h=300&w=400 2x, https://my-source.smallpics.io/bird.jpg?fit=crop&h=300&w=800 800w" alt="Bird" >
Access Srcset Images
The srcset result can be accessed like an array. Use the same descriptor keys
you passed to srcset(), such as 800w, 1x, or 2x. Each item is a
TransformedImage, so it can be cast to a string or used via getUrl() when you
only need the URL.
Transform Options
All the transform options supported by the Small Pics transform API are supported by this plugin. Take a look at the Small Pics docs for more detailed information about each parameter.
Transform options can use either the Small Pics URL param key or the option name used by smallpics/smallpics-php:^2.0.0. For example, q and quality are equivalent.
The examples below use PHP array syntax. Use the equivalent object or array syntax in Twig templates.
Use a single value for options that accept a single argument:
[
'w' => 800,
'q' => 80,
]
Use an array for options that accept multiple arguments:
[
'crop' => [400, 300, 10, 20],
'ar' => [16, 9],
'border' => [8, 'ffffff', 'expand'],
'fit' => 'crop',
'fp' => '50w:0h',
]
| Query parameter | Plugin option name | Accepted values | Example |
|---|---|---|---|
or |
orientation |
0, 90, 180, 270, or auto |
'or' => 'auto' |
flip |
flip |
v, h, or both |
'flip' => 'h' |
crop |
crop |
Named anchor, face[,fallback], facesarea[,fallback], or [width, height, x, y] |
'crop' => [400, 300, 10, 20] |
w |
width |
Integer or decimal pixels, or relative dimensions | 'w' => '65p' |
h |
height |
Integer or decimal pixels, or relative dimensions | 'h' => '50w' |
ar |
aspectRatio |
width:height, decimal ratio, or [dividend, divisor] |
'ar' => '16:9' |
fit |
fit |
contain, max, fill, fill-max, stretch, or crop |
'fit' => 'crop' |
dpr |
devicePixelRatio |
Integer or decimal | 'dpr' => 1.5 |
bri |
brightness |
Integer brightness | 'bri' => 10 |
con |
contrast |
Integer contrast | 'con' => 15 |
gam |
gamma |
Float gamma | 'gam' => 1.2 |
sharp |
sharpen |
Integer sharpen amount | 'sharp' => 20 |
blur |
blur |
Integer blur amount | 'blur' => 5 |
pixel |
pixelate |
Integer pixelate amount | 'pixel' => 8 |
filt |
filter |
grayscale or sepia |
'filt' => 'grayscale' |
mark |
watermarkPath |
Watermark image path | 'mark' => '/watermark.png' |
markorigin |
watermarkOrigin |
Watermark origin name | 'markorigin' => 'default' |
markw |
watermarkWidth |
Integer, decimal, or relative width | 'markw' => '20w' |
markh |
watermarkHeight |
Integer, decimal, or relative height | 'markh' => '20h' |
markfit |
watermarkFit |
contain, max, fill, fill-max, stretch, or crop |
'markfit' => 'contain' |
markfp |
watermarkFocalPoint |
Pixels, relative values, or x:y within the watermark |
'markfp' => '20p:20p' |
markzoom |
watermarkZoom |
Numeric zoom from 1 to 100 |
'markzoom' => 2 |
markpad |
watermarkPadding |
Pixels, relative values, or x:y |
'markpad' => '10:20' |
markpos |
watermarkPosition |
Named anchor, numeric coordinate, or pixel/relative x:y string |
'markpos' => '25p:50p' |
markalpha |
watermarkAlpha |
Integer alpha | 'markalpha' => 80 |
bg |
background |
Background color | 'bg' => 'ffffff' |
border |
border |
[width, color, method]; method is overlay, shrink, or expand |
'border' => [8, 'ffffff', 'expand'] |
q |
quality |
Integer quality | 'q' => 80 |
fm |
format |
jpg, jpeg, pjpg, png, gif, webp, avif, or jxl 1 |
'fm' => 'avif' |
interlace |
interlaced |
Boolean | 'interlace' => true |
fp |
focalPoint |
Pixels or relative x/y | 'fp' => '25w:75h' |
zoom |
zoom |
Numeric, face, facesarea, optional numeric fallback |
'zoom' => 'face,2.5' |
zoompad |
zoomPadding |
Pixels or relative x/y | 'zoompad' => '10:20' |
face |
face |
One-based face index | 'face' => 1 |
debug |
debug |
Boolean | 'debug' => true |
passthrough |
passthrough |
Boolean; false removes the flag unless transformSvgs is false |
'passthrough' => true |
Dimensions accept decimal pixels and p, w, or h units.2 Paired values accept serialized x:y strings.
{% set image = craft.smallpics.transformImage(asset, {
w: '65p', fit: 'crop', crop: 'face,top',
zoom: 'face,2.5', zoompad: '5p:10p'
}) %}
PHP
use smallpics\craft\Plugin; $image = Plugin::$instance->transformer->transformImage( $asset, [ 'w' => 800, 'h' => 600, ] ); $url = (string) $image; // 'https://my-source.smallpics.io/bird.jpg?h=600&w=800'
$srcset = Plugin::$instance->transformer->srcset( $asset, [ '1x' => ['dpr' => 1], '2x' => ['dpr' => 2], ], [ 'w' => 400, 'h' => 300, 'fit' => 'crop', ] ); $srcsetValue = (string) $srcset; // 'https://my-source.smallpics.io/bird.jpg?dpr=1&fit=crop&h=300&w=400 1x, https://my-source.smallpics.io/bird.jpg?dpr=2&fit=crop&h=300&w=400 2x'
Reference
TransformedImage
transformImage() returns a smallpics\craft\models\TransformedImage.
use smallpics\craft\Plugin; use smallpics\craft\models\TransformedImage; /** @var TransformedImage $image */ $image = Plugin::$instance->transformer->transformImage($asset, [ 'w' => 800, 'h' => 600, 'fit' => 'crop', ]); $url = (string) $image; // 'https://my-source.smallpics.io/bird.jpg?fit=crop&h=600&w=800' $url = $image->getUrl(); // 'https://my-source.smallpics.io/bird.jpg?fit=crop&h=600&w=800' $width = $image->getWidth(); // 800 $height = $image->getHeight(); // 600 $mimeType = $image->getMimeType(); // 'image/jpeg' $sourceAsset = $image->getSource(); // The original Craft asset. $config = $image->getConfig(); // ['w' => 800, 'h' => 600, 'fit' => 'crop'] $options = $image->getOptions(); // The Small Pics Options object.
TransformedSrcset
srcset() returns a smallpics\craft\models\TransformedSrcset.
This model is read-only.
use smallpics\craft\Plugin; use smallpics\craft\models\TransformedImage; use smallpics\craft\models\TransformedSrcset; /** @var TransformedSrcset $srcset */ $srcset = Plugin::$instance->transformer->srcset( $asset, [ '400w' => ['w' => 400], '800w' => ['w' => 800], ], [ 'h' => 300, 'fit' => 'crop', ] ); $srcsetValue = (string) $srcset; // 'https://my-source.smallpics.io/bird.jpg?fit=crop&h=300&w=400 400w, https://my-source.smallpics.io/bird.jpg?fit=crop&h=300&w=800 800w' /** @var TransformedImage $smallImage */ $smallImage = $srcset['400w']; // The transformed 400px-wide image. $smallImageUrl = (string) $smallImage; // 'https://my-source.smallpics.io/bird.jpg?fit=crop&h=300&w=400' foreach ($srcset as $descriptor => $image) { $url = $image->getUrl(); // 'https://my-source.smallpics.io/bird.jpg?fit=crop&h=300&w=400' for '400w'. }
SVG passthrough
transformSvgs defaults to false. When false, and the image is an SVG, Small Pics will proxy the SVG to the client without applying any transforms, so that it can be cached the same as other transformed images.
This setting takes precedence over passthrough: false in transform parameters.
// Source configuration (also supported at the root for a single source). 'sources' => [ 'default' => [ 'baseUrl' => 'https://images.example.com', 'transformSvgs' => false, // Default: adds passthrough=1. ], ],
{% set image = craft.smallpics.transformImage(asset, { width: 800, passthrough: true }) %}
Footnotes
-
Format selection. Unless you specifically need a format, omit
fmorformatfrom transforms. Output defaults to AVIF. GIF inputs default to WebP, which supports animation. ↩ ↩2 -
Relative values. Use a percentage from 0 to 100 followed by
wfor width,hfor height, orpfor the relevant axis. For example,5wmeans 5% of the base image's width, and35hmeans 35% of its height. ↩