search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Table of Contents
Use exif_read_data() function
Handling WebP metadata manually
Summarize
Home Backend Development PHP Tutorial PHP WebP image metadata processing tutorial

PHP WebP image metadata processing tutorial

Dec 02, 2025 pm 02:39 PM

PHP WebP image metadata processing tutorial

The purpose of this article is to explain how to read and write the metadata of WebP images, including EXIF ​​and XMP data, in PHP. We'll explore the WebP format's support for metadata and provide sample code that demonstrates how to add a metadata block to an existing WebP file. Through this tutorial, you will be able to use PHP to process the metadata of WebP images to better manage and utilize image information.

The WebP format natively supports embedding metadata blocks such as EXIF, XMP and ICCP. This means you can store and read this information in WebP images just like you would a JPEG or PNG image. However, not all PHP image processing libraries natively support reading and writing WebP metadata. Therefore, you may encounter some problems when trying to read or write WebP metadata.

Use exif_read_data() function

PHP's exif_read_data() function is typically used to read the EXIF ​​data of a JPEG or TIFF image. Although WebP images can contain blocks of EXIF ​​data, the exif_read_data() function may not be able to recognize and parse this data directly. This depends on the compilation configuration of PHP and the version of the libexif library used.

If you encounter a "File not supported" warning when using the exif_read_data() function, this may mean that your PHP environment is not configured correctly to support reading EXIF ​​data from WebP images.

Handling WebP metadata manually

If the exif_read_data() function doesn't work, you can try manually reading and writing the metadata block of the WebP file. The WebP format is based on RIFF (Resource Interchange File Format), which uses the concept of chunk to store data. Each chunk contains a 4-byte identifier (FourCC), a 4-byte length value, and the actual payload data.

Here is a sample code that demonstrates how to add an EXIF ​​data block to an existing WebP file:

 <?php /**
 * Add EXIF ​​data to WebP files*
 * @param string $webpFile WebP file path* @param string $exifData EXIF ​​data (binary string)
 *
 * @return bool whether successful*/
function addExifToWebP(string $webpFile, string $exifData): bool
{
    $exifLen = strlen($exifData);
    if ($exifLen % 2 == 1) {
        $exifData .= "\0"; // RIFF requires 16-bit alignment $exifLen;
    }

    $fileHandle = fopen($webpFile, &#39;r &#39;);
    if (!$fileHandle) {
        return false;
    }

    fseek($fileHandle, 0, SEEK_END); // Move to the end of the file fwrite($fileHandle, &#39;EXIF&#39;); // Write the 4-byte chunk ID
    fwrite($fileHandle, pack(&#39;V&#39;, $exifLen)); // Write 4-byte payload length fwrite($fileHandle, $exifData); // Write actual data $fileSize = ftell($fileHandle); // Get new file size fseek($fileHandle, 4, SEEK_SET); // Move to the 5th byte of the file fwrite($fileHandle, pack(&#39;V&#39;, $fileSize - 8)); // Update file size fclose($fileHandle);

    return true;
}

// Example usage $webpFile = &#39;target.webp&#39;;
$exifData = file_get_contents(&#39;source.jpg&#39;); // Read EXIF ​​data from JPEG files (or obtain it in other ways)

// Get EXIF ​​from JPEG
$exif = exif_read_data(&#39;source.jpg&#39;);
// Convert the EXIF ​​array into binary data (requires the use of a third-party library, such as: pel)
// It is assumed here that $exifData already contains binary EXIF ​​data // You can use a third-party library to convert the $exif array into binary data // It is assumed that $exifData already contains binary EXIF ​​data $success = addExifToWebP($webpFile, $exifData);

if ($success) {
    echo "EXIF data successfully added to WebP file!";
} else {
    echo "Failed to add EXIF ​​data!";
}

?>

Code explanation:

  1. addExifToWebP function :

    • Receives WebP file path and EXIF ​​data as parameters.
    • Make sure the EXIF ​​data length is even (required by RIFF format).
    • Open the WebP file and move to the end of the file.
    • Writes the EXIF ​​chunk identifier, EXIF ​​data length and actual EXIF ​​data.
    • Update the file size in the WebP file header.
    • Close the file handle.
  2. Example usage :

    • Specify the path to the WebP file and the path to the JPEG file containing the EXIF ​​data.
    • Read EXIF ​​data from JPEG files. Note: This is just for demonstration, actual application needs to be adjusted according to your data source. If your EXIF ​​data comes from elsewhere, you need to make sure that the $exifData variable contains the correct binary EXIF ​​data.
    • Call the addExifToWebP function to add EXIF ​​data to the WebP file.
    • Output results.

Things to note:

  • Binary EXIF ​​data : The above code assumes that the $exifData variable already contains the correct binary EXIF ​​data. exif_read_data returns an array. You need to use a third-party library (for example: PHP Exiftool or Metadata Extractor Library (PEL)) to convert the PHP array into binary EXIF ​​data.
  • Error handling : In actual applications, you should add a more complete error handling mechanism, such as checking whether the file exists, whether the permissions are correct, etc.
  • File backup : Before modifying a file, it is best to back up the original file to prevent data loss.
  • Other metadata : A similar approach can be used to add other types of metadata blocks such as XMP or ICCP. Simply change the chunk identifier to XMP or ICCP and provide the appropriate metadata content.
  • Third-party libraries : It is recommended to use third-party libraries to process EXIF ​​data instead of manually parsing and creating binary data because the EXIF ​​format is more complex.

Summarize

Although PHP's exif_read_data() function may not be able to directly read the EXIF ​​data of WebP images, you can read and write metadata by manually processing the chunks of WebP files. By understanding the structure of the WebP format and the specifications of the RIFF format, you can write PHP code to extract, modify, and add metadata of WebP images to better manage and utilize image information. Remember, using third-party libraries can simplify the process of working with EXIF ​​data.

The above is the detailed content of PHP WebP image metadata processing tutorial. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

ArtGPT

ArtGPT

AI image generator for creative art from text prompts.

Stock Market GPT

Stock Market GPT

AI powered investment research for smarter decisions

Popular tool

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Instantiation mechanism and reflection application of PHP attributes Instantiation mechanism and reflection application of PHP attributes Mar 13, 2026 pm 12:27 PM

PHP properties do not automatically instantiate their class constructors when declared. They are essentially metadata attached to code elements and need to be explicitly read and instantiated through PHP's reflection API in order to trigger the execution of their constructors. Understanding this mechanism is critical to correctly utilizing properties to implement advanced functionality such as framework routing, validation, or ORM mapping.

PHP gRPC client JWT authentication practice guide PHP gRPC client JWT authentication practice guide Mar 14, 2026 pm 01:00 PM

This article details how to correctly configure JWT (JSON Web Token) for authentication in the PHP gRPC client. The core is to set the request metadata in the standard Authorization: Bearer format through the update_metadata callback function to ensure that the server can correctly parse and verify the client's identity, thereby avoiding common authentication errors.

How to batch extract the values ​​of all keys with the same name (such as 'id') in a JSON object in PHP How to batch extract the values ​​of all keys with the same name (such as 'id') in a JSON object in PHP Mar 14, 2026 pm 12:42 PM

This article explains in detail how to use json_decode() and array_column() to efficiently extract all values ​​of specified keys (such as id) in nested JSON data at all levels, avoiding manual traversal and taking into account performance and readability.

How to display hospital/center name instead of ID in patient query results How to display hospital/center name instead of ID in patient query results Mar 13, 2026 pm 12:45 PM

This article explains in detail how to use SQL table connections to replace the originally displayed hospital ID (h_id) with the corresponding hospital or center name when querying patient data to improve data readability and user experience.

PHP runtime getting and monitoring script maximum memory limit (bytes) PHP runtime getting and monitoring script maximum memory limit (bytes) Apr 01, 2026 am 06:42 AM

This article aims to guide PHP developers on how to accurately obtain the maximum memory limit (in bytes) of a script at runtime, and combine it with real-time memory usage for effective monitoring. By parsing the memory_limit configuration string and using built-in functions, an early warning mechanism for memory consumption is implemented to avoid fatal errors caused by memory overflow.

How to append corresponding value to the end of each subarray of PHP array How to append corresponding value to the end of each subarray of PHP array Mar 14, 2026 pm 12:51 PM

This article describes how to append the values ​​of a one-dimensional index array to the end of each sub-array of another two-dimensional array in order, solving alignment problems caused by index offsets (such as $array2 starting from key 1), and providing a safe and readable implementation solution.

Tutorial on flattening nested arrays into a single array in PHP Tutorial on flattening nested arrays into a single array in PHP Mar 13, 2026 am 02:57 AM

This tutorial details how to flatten a nested array structure containing multiple sub-arrays into a single array in PHP. This can be achieved efficiently and concisely by utilizing PHP's array_merge function combined with the array unpacking operator (...) to extract all internal elements into a top-level array, suitable for processing collections or grouped data.

The reason why explode() returns nested arrays in PHP and its correct usage The reason why explode() returns nested arrays in PHP and its correct usage Mar 14, 2026 pm 12:39 PM

explode() itself returns a one-dimensional array, but due to misuse of the array append syntax $myarray[] = ..., the result is wrapped into additional levels, forming an "array of arrays"; the correction method is to assign values ​​directly instead of appending.

Related articles