Download the PHP package tfd/statamic-cloudinary without Composer
On this page you can find all versions of the php package tfd/statamic-cloudinary. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package statamic-cloudinary
Cloudinary
Cloudinary is a Statamic addon that allows you to use cloudinary to deliver your assets.
Features
This addon allows you to:
- leverage the transformation and delivery power of cloudinary
- usable with images and videos
- automatically upload media to cloudinary
How to Install
Run the following command from your project root:
How to Use
1. Create a Cloudinary Account
Go to https://cloudinary.com and create a free account.
It is recommended to create a new folder inside cloudinary's Media Library that hosts all the media of your website.
Go to Settings > Upload > Auto upload mapping
and fill out
- Folder: Your newly create folder
- URL prefix: Your website's URL, including a trailing slash
Grab the following information from your cloudinary Dashboard:
- Cloud name
- API Environment variable
2. Publish the cloudinary configuration file
Run the following command from your project root:
This will create a cloudinary.php
file inside config/statamic
.
3. Setup cloudinary variables
Enter at least the following data in the cloudinary.php file or use your project's .env file.
The auto_mapping_folder
is the folder you've created during the first step.
The url
is the API Environment variable you've copied from the first step.
3.1. Using an External URL
If your assets are served through an external URL, you need to set an additional configuration option, either in the cloudinary.php
config file:
... or in the .env
file:
For example, if you are using DigitalOcean Spaces storage and your assets are served from this URL:
https://my-project.us1.digitaloceanspaces.com/website/image.jpg
, the external URL consists of two parts:
https://my-project.us1.digitaloceanspaces.com
- The DigitalOcean base URL/website
- The root folder in DigitalOcean
The actual value you need to set in the config or .env file would be:
CLOUDINARY_EXTERNAL_URL_PREFIX=https://my-project.us1.digitaloceanspaces.com/website/
4. Use the cloudinary tag
You are now ready to use the cloudinary tag inside your views.
Some examples
The image is transformed according to the default transformation parameters, see step 5.
The image is resized to 800 x 500 px.
Alternative usage with tag pairs.
If you only provide width or height when using the tag pair, the addon automatically calculates the other dimension depending on the image's aspect ratio and makes this value available in your view.
Videos are also supported. Depending on the video size the initial (automatic) upload to cloudinary might take some time.
Usage with other parameters.
There is also a custom blade component to use cloudinary in your blade templates. The src
attribute is required.
5. Available parameters
For more information about these parameters, head over to the cloudinary documentation.
Parameter |
---|
angle |
aspect_ratio |
background |
border |
crop |
color |
dpr |
duration |
effect |
end_offset |
flags |
height |
overlay |
opacity |
quality |
radius |
start_offset |
named_transformation |
underlay |
video_codec |
width |
x |
y |
zoom |
audio_codec |
audio_frequency |
bit_rate |
color_space |
default_image |
delay |
density |
fetch_format |
gravity |
prefix |
page |
video_sampling |
progressive |
6. Adjust default parameters
You can adjust the default parameters to your likings in the config/statamic/cloudinary.php
configuration file:
7. Publish the cloudinary views
Run the following command from your project root:
This will publish the cloudinary views to the resources/views/vendor/cloudinary
folder.