teepluss / cloudinary
Cloudinary API wrapper for Laravel 4
Installs: 10 521
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 3
Forks: 14
Open Issues: 4
Requires
- php: >=5.3.0
- cloudinary/cloudinary_php: 1.0.11
Requires (Dev)
- illuminate/support: 4.1.x
This package is not auto-updated.
Last update: 2024-11-04 14:48:49 UTC
README
Cloudinary streamlines your entire image management pipeline - upload, storage, administration, manipulation and delivery.
Installation
To get the lastest version of Theme simply require it in your composer.json
file.
"teepluss/cloudinary": "dev-master"
You'll then need to run composer install
to download it and have the autoloader updated.
Once Theme is installed you need to register the service provider with the application. Open up app/config/app.php
and find the providers
key.
'providers' => array(
'Teepluss\Cloudinary\CloudinaryServiceProvider'
)
Theme also ships with a facade which provides the static syntax for creating collections. You can register the facade in the aliases
key of your app/config/app.php
file.
'aliases' => array(
'Cloudy' => 'Teepluss\Cloudinary\Facades\Cloudy'
)
Publish config using artisan CLI.
php artisan config:publish teepluss/cloudinary
Usage
After published cloudinary config you need to set up api detail, such as key, secrey, url, etc.
This wrapper api provide simple methods to upload, rename, delete, tag manage and full features from original cloudinary class methods.
$tags = array( 'tag_a', 'tag_b', 'tag_c' ); Cloudy::upload($_FILES['tmp_name'], 'custom_public_name', $tags); //Cloudy::upload('/path/to/local/image', 'custom_public_name', $tags); //Cloudy::upload('http://domain.com/remote.jpg', 'custom_public_name', $tags);
Display an image.
Cloudy::show('custom_public_name', array('width' => 150, 'height' => 150, 'crop' => 'fit', 'radius' => 20));
More document from cloudinary.com
Rename file, Delete file.
Cloudy::rename('from_public_id', 'to_public_id'); Cloudy::destroy('public_id');
Manage with tag.
Cloudy::addTag('tag_d', array('public_id_1', 'public_id_2')); Cloudy::removeTag('tag_d', array('public_id_1', 'public_id_2')); Cloudy::replaceTag('tag_e', array('public_id_1', 'public_id_2'));
You can use original library from cloudinary also.
// Get cloudinary. $cloudinary = Cloudy::getCloudinary(); // Get cloudinary uploader $uploader = Cloudy::getUploader();
To see more detail visit @ https://github.com/cloudinary/cloudinary_php
Support or Contact
If you have some problem, Contact teepluss@gmail.com