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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-weasyprint

Laravel WeasyPrint

Latest Stable Version Total Downloads

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:

Features

This Laravel package provides seamless integration with WeasyPrint, enabling easy PDF generation with various options:

With these features, generating and managing PDFs in your Laravel project becomes effortless! 🚀

Prerequisites

Before using this package, ensure the following dependencies are installed:

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.

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:

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:

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

2. Timeout Errors

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


All versions of laravel-weasyprint with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^9|^10|^11|^12
symfony/process Version ^6.0|^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hkwise/laravel-weasyprint contains the following files

Loading the files please wait ....