mezcalito/imgproxy-bundle

Package info

github.com/Mezcalito/imgproxy-bundle

Type:symfony-bundle

pkg:composer/mezcalito/imgproxy-bundle

Statistics

Installs: 5 993

Dependents: 1

Suggesters: 0

Stars: 11

Open Issues: 1

0.5.3 2026-02-28 10:01 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 348a1494ae9d4328a5bdca674fcf75a19c2004be

This package is auto-updated.

Last update: 2026-06-28 10:38:46 UTC


README

This bundle provides imgproxy integration for Symfony based projects.

Installation

Run this command in your terminal:

composer require mezcalito/imgproxy-bundle

If you don't use Symfony Flex, you must enable the bundle manually in the application:

<?php

return [
 // ...
 Mezcalito\ImgproxyBundle\ImgproxyBundle::class => ['all' => true]
];

Basic Usage

This bundle works by applying presets on images, from template or from your code. Your presets are defined within the application's configuration file (/config/packages/imgproxy.yaml).

At the moment, there is only one preset available with this bundle: the resize preset. More possibilities will be added later.

To use this bundle, create the following file:

# config/packages/imgproxy.yaml

imgproxy:
 host: localhost
 media_url: https://media.localhost

 # set the same key and salt in imgproxy environment (https://docs.imgproxy.net/signing_the_url)
 signature:
 key: c27f2c1d
 salt: fa242e79

 # default settings applied for all presets
 default_preset_settings:
 format: webp
 encode: true

 presets:
 # this is a preset example
 png_thumbnail:
 format: png
 options:
 resize:
 resizing_type: fit
 width: 150
 height: 75
 enlarge: true
 extend:
 extend: true
 gravity:
 type: no
 x_offset: 10
 y_offset: 10
 rotate:
 angle: 90

Then, you can use your preset in your templates:

<img src="{{ asset('/relative/path/to/image.jpg') | imgproxy_preset('png_thumbnail') }}" />

Issues and feature requests

Please report issues and request features at https://github.com/mezcalito/imgproxy-bundle/issues.

License

This bundle is under the MIT license. For the whole copyright, see the LICENSE file distributed with this source code.