Saturday, January 11, 2025
Google search engine
HomeLanguagesPHP | Gmagick getimagedelay() Function

PHP | Gmagick getimagedelay() Function

The Gmagick::getimagedelay() function is an inbuilt function in PHP which is used to get the image delay. The delay is actually the time taken for the transition from one image to another in a gif animation.

Syntax:

int Gmagick::getimagedelay( void )

Parameters: This function doesn’t accepts any parameters.

Return Value: This function returns an integer value containing the image delay in centiseconds (100centi = 1sec).

Exceptions: This function throws GmagickException on error.

Below given programs illustrate the Gmagick::getimagedelay() function in PHP:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagickAnimation = new Gmagick('g4gnanimation1.gif');
  
// Get the delay
$delay = $gmagickAnimation->getimagedelay();
echo $delay;
?>


Output:

100 // which means 1 second.

Program 2:




<?php
  
// Create a new Gmagick object
$gmagickAnimation = new Gmagick('g4gnanimation1.gif');
  
// Set the delay
$gmagickAnimation->setimagedelay(200);
  
// Get the delay
$delay = $gmagickAnimation->getimagedelay();
echo $delay;
?>


Output:

200

Reference: https://www.php.net/manual/en/gmagick.getimagedelay.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments