DEV Community

Cover image for πŸš€ Transform Your Images with Cloudinary Image Transformations! 🎨
Dzung Nguyen
Dzung Nguyen

Posted on

1 1

πŸš€ Transform Your Images with Cloudinary Image Transformations! 🎨

πŸ€” For those who use Cloudinary for managing images for your application, have you ever wanted to resize, crop, add effects or even convert to another format?

πŸ₯° Good news! Cloudinary's dynamic URL transformations enable you to programmatically generate multiple variations of your high quality original images on the fly, without the need for graphic designers and fancy editing tools. πŸŽ‰

πŸ’Ž Documentation: Image Transformations
πŸ’Ž Transformation Builder UI: https://tx.cloudinary.com

✨ How it helps:

πŸš€ AI-Powered Enhancements – Use AI for background removal, upscaling, recoloring, and restoration.

πŸ“ Flexible Resizing – Fit, crop, scale, and adjust images for any device or layout.

🎨 Creative Effects – Apply blur, vignette, sepia, pixelation, and more for a unique look.

πŸš€ Performance Optimization – Auto-format, adjust quality, and deliver the best version.

And much more... πŸŽ‰ πŸŽ‰

No need for manual edits β€” Cloudinary Image Transformations does it all for you! πŸš€


Follow me to stay updated with my future posts:

Top comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!