use Clapp\ImageRepository\ImageRepository;
use Clapp\ImageRepository\ImageMissingOrInvalidException;
class User {
protected $profilePictureRepository = null;
public function __construct(/* ... */){
$this->profilePictureRepository = new ImageRepository('profile-pictures/');
/* ... */
}
public function getProfilePicture($width=500, $height=500)
{
try {
return $this->profilePictureRepository->get(array_get($this->attributes, 'profile_picture'), $width, $height);
}catch(ImageMissingOrInvalidException $e){
return $this->profilePictureRepository->get(resource_path('assets/images/placeholder.png'), $width, $height);
}
}
public function setProfilePictureAttribute($pictureContents){
$value = $pictureContents;
if (!empty($value)){
$value = $this->profilePictureRepository->put($value);
}
$this->attributes['profile_picture'] = $value;
}
}ImageRepository::__construct($storagePrefix = "", $storageDisk = null, $cacheDisk = null, ImageManager $imageManager = null)ImageRepository::put($imageContents)ImageRepository::get($key, $width = 500, $height = 500)ImageRepository::remove($key)ImageRepository::flush()
ImageRepository::__construct($storagePrefix = "", $storageDisk = null, $cacheDisk = null, ImageManager $imageManager = null)
Create a new ImageRepository instance.
Params:
$storagePrefix:stringa prefix to allow multiple collections on the same $storageDisk and $cacheDisk - e.g."user-profile-pictures"$storageDisk:Illuminate\Contracts\Filesystem\Filesystema disk to store the original images$cacheDisk:Illuminate\Contracts\Filesystem\Filesystema disk to store the generated image thumbnails$imageManager:Intervention\Image\ImageManagerImageManager to use for image manipulation
Store an image into the ImageRepository instance.
Params:
$imageContents:mixedany image format that Intervention\Image\ImageManager::make() can parse
Returns:
string$key that can be used to retrieve the image fromget()
Params:
$key:stringkey fromput()OR an absolute path to an image file on your local disk (for placeholders)$width:intfit the image into this width (default: 500)$height:intfit the image into this height (default: 500)
Returns:
stringpath to the generated image from the base of the $cacheDisk - can be put immediately into laravel'sasset()function
Params:
$key:stringkey fromput()OR an absolute path to an image file on your local disk (for placeholders)$transform:Closureuse this function to apply custom transformations to the image$transformId:Closureuse this function to generate a unique string for the custom transformation - the same transformation should have the same unique string
Example:
$image = $repo->get($key, function($image){
$image->resize(123, null, function($constraint){
$constraint->aspectRatio();
});
return $image;
}, function(){
return "123_auto";
});Returns:
stringpath to the generated image from the base of the $cacheDisk - can be put immediately into laravel'sasset()function