In this post, you'll learn how to add a Google-style default profile picture to your Laravel 8 application. We'll be using Laravolt/avatar package to generate it so let's get started. The scenario is that you need to add this default profile picture to the user if they have no profile image. This profile image is usually generated after successfully registered to your application or after removing a new picture that the user has uploaded.
Step 1: Create Model and Migration
Let's start by creating a new model and migration called profile. The relationship for this would be "one user has one profile".
php artisan make:model Profile -m
For the migration add a new column definition called "profile_picture_url" like below.
I recommend updating the value for the settings below to make the default image a little bit bolder.
// Image shape: circle or square
'shape' => 'square',
// Image width, in pixel
'width' => 180,
// Image height, in pixel
'height' => 180,
'fonts' => [__DIR__ . '/../fonts/Roboto.ttf'],
Step 3: Generate the Profile Picture
To generate the profile picture you have to call the create method from the Avatar facade. Inside the create method you can specify the name of the user you want to place in and then chain it with the method to generate the image "toSvg", "toGravatar" and "toBase64".
Step 4: Generate SVG
To generate the SVG image, call the "toSvg" method and return it to the view as follows.
To render it, call the variable directly on the blade file.
<img src="{{ $image }}" />
Assuming that the name is "John Doe" then the picture that will be generate will look like below "JD" which is the first initial of the first name and last name.Generated profile picture preview
Step 6: Generate PNG and Save Locally
if you want to get the image in png or another image format, you can specify the command below. In this case, it's important to note that the image created will be saved on the specified path and will have the specified quality.
The code above saves the image in the public directory and also sets the quality to 100%. To save it in the user profile model, you have to call the relationship like below.
Now "John Doe" profile picture will be saved locally and the name of the generated image will be saved to the database.
Intervention image object
Avatar::create('John Doe')->getImageObject();
If you want to get the intervention image instance, do call the "getImageObject" method like above and now you will be able to manipulate the image. If you find this tutorial helpful do share it with your friends and happy coding 🍻 cheers!
Alaz
Week-end developer currently experimenting with web, mobile, and all things programming.
Leave a reply