Laravel Packages

Convert HEIC Images to JPEG in PHP

Published
Convert HEIC Images to JPEG in PHP image

The php-heic-to-jpg PHP package is the easiest way to convert HEIC (High-Efficiency Image Container) images to JPEG with PHP and Laravel framework.

Using this package doesn't require any PHP libraries or external dependencies to be installed. The package works by using a binary file created with Golang that ships with this package. The package does the file conversions, and you get a simple interface to go from HEIC or JPEG:

use Maestroerror\HeicToJpg;
 
// Save the HEIC file as a JPEG
HeicToJpg::convert("image1.heic")->saveAs("image1.jpg");
 
// Get the content (binary) of the converted file:
HeicToJpg::convert("image1.heic")->get();

This package also provides a convenience method to check if a file is a HEIC file:

use Maestroerror\HeicToJpg;
 
if (HeicToJpg::isHeic("image.heic")) {
// Your code
}

You can learn more about this package, get full installation instructions, and view the source code on GitHub.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article