arf/imgur is a Laravel package for imgur upload api with laravel..
It currently has 0 GitHub stars and 150 downloads on Packagist (latest version 2.0.4).
Install it with composer require arf/imgur.
Discover more Laravel packages by arf
or browse all Laravel packages to compare alternatives.
Last updated
Laravel-Imgur is super easy upload image to imgur package.
::: warning This package was not maintenance. :::
Laravel Imgur is super easy upload image to imgur package.
| Version | branch | | ------- | ------ | | 5.x | 1.0.x | | 6.x | 1.0.x | | 7.x | 1.1.x | | 8.x | 2.x.x |
$ composer require arf/imgur
If you are using laravel 5.5 or later, you can use auto discover, you don't need put in service provider to app.php.
<?php
//app.php
'providers' => [
Arf\Imgur\UploadServiceProvider::class,
],
'Imgur' => Arf\Imgur\Facades\Upload::class,
$ php artisan vendor:publish
Imgur::upload($args);
Imgur::get($id);
Imgur::update($image, $id);
Imgur::delete($id);
Arguments can be a image link or file, for example, you can pass a link file or use file upload MUST instance of Illuminate\Http\UploadedFile .
If you want to customize your headers or form params, you can do belong:
Imgur::setHeaders([
'headers' => [
'authorization' => 'Client-ID ' . env('IMGUR_CLIENT_ID'),
'content-type' => 'application/x-www-form-urlencoded',
]
])->setFormParams([
'form_params' => [
'image' => $image,
]
])->upload($image);
You can use methods to get what you want informations.
$image = Imgur::upload($file);
// Get imgur image link.
$image->link(); //"https://i.imgur.com/XN9m1nW.jpg"
// Get imgur image file size.
$image->fileszie(); //43180
// Get imgur image file type.
$image->type(); //"image/jpeg"
// Get imgur image width.
$image->width(); //480
// Get imgur image height.
$image->height(); //640
// Or you can get usual data.
$image->usual();
//[
// 'link' => "https://i.imgur.com/XN9m1nW.jpg",
// 'filesize' => 43180,
// 'type' => "image/jpeg",
// 'width' => 480,
// 'height' => 640,
//]
Sometimes, you need get more image size, you can call size to get more thumbnails.
$image = Imgur::upload($file);
// Support: https://api.imgur.com/models/image
// Get small square.
$small_square = Imgur::size($image->link(), 's');
// Get big square thumbbnail.
$small_square = Imgur::size($image->link(), 'b');
// Get small small thumbbnail.
$small_square = Imgur::size($image->link(), 't');
// Get small medium thumbbnail.
$small_square = Imgur::size($image->link(), 'm');
// Get small large thumbbnail.
$small_square = Imgur::size($image->link(), 'l');
// Get small huge thumbbnail.
$small_square = Imgur::size($image->link(), 'h');