ctbuh/cloudinary-php

There is no license information available for the latest version (dev-main) of this package.

Installs: 44

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ctbuh/cloudinary-php

dev-main 2025-08-25 22:15 UTC

This package is not auto-updated.

Last update: 2025-10-15 09:09:59 UTC


README

Useful helpers functions to be used with Cloudinary.

composer require ctbuh/cloudinary-php "dev-main"

Apply transformations to an existing Cloudinary URL

echo cl_url_update_transformations("https://res.cloudinary.com/ctbuh2/image/upload/v1601396721/sample.jpg", 'w_350,h_250');

// https://res.cloudinary.com/ctbuh2/image/upload/w_350,h_250/v1601396721/sample.jpg

echo cl_url_update_transformations("https://res.cloudinary.com/ctbuh2/image/upload/h_200/v1601396721/sample.jpg", 'w_350');

// https://res.cloudinary.com/ctbuh2/image/upload/h_200,w_350/v1601396721/sample.jpg