backstage / laravel-og-image
Laravel package to generate dynamic Open Graph images
Fund package maintenance!
backstagephp
Requires
- php: ^8.2
- chrome-php/chrome: ^1.13
- illuminate/contracts: ^11.0 || ^12.0
- spatie/laravel-package-tools: ^1.14
Requires (Dev)
- larastan/larastan: ^3.1.0
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.0 || ^8.0
- orchestra/testbench: ^8.0 || ^9.0 || ^10.0
- pestphp/pest: ^2.34 || ^3.7.4
- pestphp/pest-plugin-laravel: ^2.2 || ^3.1.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^2.1.6
- phpstan/phpstan-deprecation-rules: ^2.0.1
- phpstan/phpstan-phpunit: ^2.0.4
- phpunit/phpunit: ^10.0 || ^11.5.3 || ^12.0
- rector/rector: ^2.0
- dev-main
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.10.0
- v0.9.0
- v0.8.1
- v0.8.0
- v0.7.6
- v0.7.5
- v0.7.4
- v0.7.3
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.0
- v0.4.1
- v0.4.0
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.1
- v0.2.0
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-develop
- dev-dependabot/github_actions/dependabot/fetch-metadata-2.4.0
This package is auto-updated.
Last update: 2025-06-04 13:09:31 UTC
README
This Laravel package enables you to dynamically create Open Graph images for your website based on a single Blade template with HTML and CSS. In our example we use the Tailwind CDN. So designing a dynamic Open Graph Image as a developer just got very easy using this package!
Just add the meta tag with our url to the head of your page. The package will then generate the image and add it to the page. You can edit the view template which you can find in the resources folder.
Requirements
- PHP 8.2+
Installation
First install Google Chrome or Chromium, as you need the binary to use it as a headless browser.
On macOS
# Google Chrome brew install --cask google-chrome sudo xattr -rd com.apple.quarantine /Applications/Chrome.app # Remove quarantine macOS protection mechanism # Chromium brew install chromium sudo xattr -rd com.apple.quarantine /Applications/Chromium.app # Remove quarantine macOS protection mechanism
On Debian/Ubuntu
# Install chromium from PPA instead of snap, because of permission issues with snapd version
sudo add-apt-repository ppa:saiarcot895/chromium-dev -y
sudo apt update
sudo apt install chromium-browser -y
On Windows
Download and install Google Chrome or Chromium using on of these links.
Note: configure path to Chrome/Chromium
Sometimes it's necessary to point the package to a custom path where the binary is located, this can be set in the config og-image.chrome.path
. The path can be retrieved using:
# macOS or Debian/Ubuntu which chrome # probably /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome which chromium # probably /opt/homebrew/bin/chromium # Windows where chrome # probably C:\Program Files\Google\Chrome\Application\chrome.exe
Install and configure package
You can install the package via composer:
composer require backstage/laravel-og-image
Run the command to install the package:
php artisan og-image:install
You should also publish the views, to change the default layout of your Open Graph images:
php artisan vendor:publish --tag="og-image-views"
This is the content of the published config file (published at config/og-image.php
):
<?php return [ 'debug' => env('OG_IMAGE_DEBUG', false), // disable caching og images for development 'extension' => 'jpg', // jpg, png, webp 'width' => 1200, 'height' => 630, 'chrome' => [ 'path' => env('CHROME_PATH', 'chromium'), 'flags' => [ // '--disable-dev-shm-usage', // '--disable-gpu', // '--disable-setuid-sandbox', // '--disable-software-rasterizer', // '--hide-scrollbars', // '--mute-audio', // '--no-sandbox', ], ], // The cache location to use. 'storage' => [ 'disk' => 'public', 'path' => 'og-images', ], 'metatags' => [ 'og:title' => 'title', 'og:description' => 'description', 'og:type' => 'type', 'og:url' => 'url', ], ];
Usage
Add the Blade component into the head of your page. Providing the attributes you need in your view file:
<x-og-image-tags title="Backstage" subtitle="" />
If you want to use a different view than the default, add a view
attribute with the path using dot or slash notation:
<x-og-image-tags title="Backstage" subtitle="" view="path.to.view.file" />
If you do not want to use a view but HTML directly in your view file, than you can use the slot to add the HTML to:
Note
If you're using this option, make sure to clear caches before adding or changing the HTML using php artisan og-image:clear
to see the result in your browser.
<x-og-image-tags title="Backstage" subtitle="" view="path.to.view.file"> <h1>Use this HTML and inline CSS to style the open graph image...</h1> </x-og-image-tags>
If you don't want to use the blade component you can also use the facade or helper method to generate the url to the image.
// Facade use Backstage\OgImage\Laravel\Facades\OgImage; $url = OgImage::url(['title' => 'Backstage', 'subtitle' => '...']); // or using the `og()` helper $url = og(['title' => 'Backstage', 'subtitle' => '...']);
And add it like this to your Blade file:
<meta property="og:image" content="{!! $url !!}"> <meta property="og:image:type" content="image/{{ config('og-image.extension') }}"> <meta property="og:image:width" content="{{ config('og-image.width') }}"> <meta property="og:image:height" content="{{ config('og-image.height') }}">
When you share the page on any platform, the image will automatically be generated, cached and then shown in your post. The image from the default template will look like this:
This component uses the 'template' blade view by default. You can change this template to your needs. It is even possible to pass more attributes than the default ones. You can find the default template in the resources folder.
Passing extra attributes
Want to add more custom attributes to modify the button text for example? Simply pass them down to the blade component, facade or helper method:
<x-og-image-tags title="Backstage" subtitle="" button="Read more" />
// Facade use Backstage\OgImage\Laravel\Facades\OgImage; OgImage::url(['title' => 'Slimme websites', 'subtitle' => '...', 'button' => 'Read more']); // Helper og(['title' => 'Backstage', 'subtitle' => '...', 'button' => 'Read more']);
You can now access the variable in your view by using the {{ $button }}
variable.
Generate image without using the blade component
When you need to generate the image without using the blade component, you can use the following method:
OgImage::createImageFromParams(['title' => 'Backstage', 'subtitle' => '...']);
This will return the actual image from your configured storage. You can use this method to generate the image in your own controller for example.
Clearing cached images
All generated open graph images are cached by default. If you want to remove the cache, you can use the following command:
php artisan og-image:clear-cache
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.