Download the PHP package hkwise/laravel-weasyprint without Composer
On this page you can find all versions of the php package hkwise/laravel-weasyprint. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hkwise/laravel-weasyprint
More information about hkwise/laravel-weasyprint
Files in hkwise/laravel-weasyprint
Package laravel-weasyprint
Short Description A Laravel wrapper for WeasyPrint to generate PDFs
License MIT
Homepage https://github.com/hassankhan-wise/laravel-weasyprint
Informations about the package laravel-weasyprint
Laravel WeasyPrint
A Laravel wrapper for WeasyPrint, a powerful tool for generating PDFs. This package provides an easy-to-use interface for generating, saving, downloading, and displaying PDFs in Laravel applications.
About WeasyPrint
WeasyPrint is a Python-based library that converts HTML and CSS documents into PDFs. It supports modern web standards, making it ideal for generating high-quality PDFs from complex HTML and CSS.
Key Features of WeasyPrint:
- High-Quality Output: Supports modern CSS features like Flexbox, Grid, and more.
- Cross-Platform: Works on Linux, macOS, and Windows (with some setup).
- Open Source: Free to use and actively maintained.
Features
This Laravel package provides seamless integration with WeasyPrint, enabling easy PDF generation with various options:
- 📄Generate PDFs from Blade views, HTML strings, files, or URLs.
- 💾 Save PDFs to disk or display them directly to the browser.
- 📥 Download PDFs with custom filenames.
- ⚙ Set custom options for WeasyPrint (e.g., metadata, attachments).
- ⏳ Timeout configuration for long-running processes.
- 🔧 Disable/Enable the package dynamically via configuration.
With these features, generating and managing PDFs in your Laravel project becomes effortless! 🚀
Prerequisites
Before using this package, ensure the following dependencies are installed:
- Python: WeasyPrint requires Python 3 or higher to work correctly.
- WeasyPrint: Install WeasyPrint using pip or a package manager.
Installation
1. Install the package via Composer:
2. Publish the Configuration File (Optional)
3. Install WeasyPrint
Linux
The easiest way to install WeasyPrint on Linux is to use the package manager of your distribution.
-
Debian/Ubuntu
Install WeasyPrint using
apt
: -
Fedora
Install WeasyPrint using
dnf
: -
Archlinux
Install WeasyPrint using
pacman
:
Alternatively, install via pip
:
macOS
The easiest way to install WeasyPrint on macOS is to use Homebrew:
Windows
To use WeasyPrint on Windows, the easiest way is to use the executable of the latest release.
If you want to use WeasyPrint as a Python library, you’ll have to follow a few extra steps. Please read this carefully.
The first step is to install the latest version of Python.
When Python is installed, you have to install Pango and its dependencies. The easiest way to install these libraries is to use MSYS2. Here are the steps you have to follow:
- Install MSYS2 keeping the default options.
- After installation, in MSYS2’s shell, execute
pacman -S mingw-w64-x86_64-pango
. - Close MSYS2’s shell.
You can then launch a Windows command prompt by clicking on the Start menu, typing cmd
and clicking the “Command Prompt” icon. Install WeasyPrint in a virtual environment using pip:
For more detailed installation instructions, visit the WeasyPrint Documentation.
Customizing the Configuration
You can modify the package settings in config/weasyprint.php
:
-
Enable/Disable Package: Set
'enabled' => false
, to disable WeasyPrint without removing it. -
Change Default Save Path: Update
'default_path' => storage_path('app/custom-pdfs')
, to save PDFs in a different directory. - Adjust Timeout:
Modify
'timeout' => 120
, to increase the maximum execution time.
This configuration ensures flexibility while using WeasyPrint in your Laravel application. 🚀
Usage
1. Generate PDF from a Blade View and Download
2. Generate PDF from HTML and Save to Disk
3. Generate PDF from a URL and Display in the browser
4. Generate PDF from a File and Download
5. You can chain multiple methods together. For example, you can save the PDF to disk first, then download it:
6. Set Custom Options
You can pass additional WeasyPrint options using the setOptions method:
Adjust Document Dimensions
This package does not support setting page size or document margins via configuration options. Instead, you must define these settings using the CSS @page
at-rule in your HTML or stylesheets.
Example: Set Page Size and Margins
There is much more which can be achieved with the @page
at-rule, such as page numbers, headers, etc. Read more about the page at-rule.
Customizing the Facade Alias
By default, the Facade is registered as WeasyPdf
. If you want to use a different alias (e.g., WPdf
), you can manually register it in config/app.php
:
After updating the alias, you can use WPdf instead of WeasyPdf:
Alternatively, you can register both aliases:
Now, you can use either WeasyPdf or WPdf:
Methods
Method | Description |
---|---|
loadView | Load a Blade view with data. |
loadHTML | Load raw HTML content. |
loadFile | Load HTML content from a file. |
generate | Fetch HTML content from a URL. |
setOptions | Set additional WeasyPrint options (e.g., --custom-metadata, --attachment). |
save | Save the PDF to a specified path (or default path). |
download | Download the PDF with a specified filename. |
inline | Display the PDF in the browser. |
Troubleshooting
1. WeasyPrint Command Not Found
-
Ensure WeasyPrint is installed on your system:
- On Linux (Debian/Ubuntu), you can install WeasyPrint using:
2. Timeout Errors
- Increase the
timeout
value inconfig/weasyprint.php
if PDF generation takes longer than expected.
3. Local Environment Issues
This package may not work properly in local environments on Windows or macOS due to missing system dependencies for WeasyPrint. If you face issues while generating PDFs locally, consider disabling the package in non-production environments.
You can achieve this by modifying the enabled
option in the configuration file (config/weasyprint.php
):
This ensures the package is only enabled in production environments.
How It Works
Laravel’s app()->environment()
method checks the current application environment based on the APP_ENV
value set in your .env
file.
For example, if your .env
file contains:
Thenapp()->environment(['production', 'prod'])
will return false
, disabling the package.
However, in a production environment:
app()->environment(['production', 'prod'])
will return true
, enabling the package.
Contributing
Contributions are welcome! Please open an issue or submit a pull request on GitHub.
License
This package is open-source software licensed under the MIT License.
Credits
- Developed by Hassan Khan
- Inspired by weasyprint.
All versions of laravel-weasyprint with dependencies
illuminate/support Version ^9|^10|^11|^12
symfony/process Version ^6.0|^7.0