


PHP uses the GIFEncoder class to process gif image instances_PHP tutorial
Jul 13, 2016 am 10:26 AM
The source code of the processing is posted below:
require_once("gifencoder.php"); //Load encoding file
$gif = new GIFEncoder(); //Instantiate the gif decoding object
$gif->load("test.gif"); //Load the gif image to be decoded
for($i=0;$i
$im = imagecreatefromstring($gif->getgif($i)); //Use GD library function to convert GIF to a standard
imagegif($im, $i.".gif"); //Save each frame of image data generated in file form, of course you can also use variables
}
imagedestroy($im);
ob_start();
for($i=0;sizeof($gif->IMGS["frames"]);$i++){
$im=imagecreatefromgif("0.gif"); //Create an image based on the picture of each frame
if($i>0){ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? $ Frame = ImagecreateFromgif ("$ i.gif"); // Read the image of the current frame
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? $y= imagesy($frame); Imagecopy($im,$frame,0,0,0,0,$w,$y); //Copy and merge the current frame image and the first frame image
imagedestroy($frame); //Destroy the current image
}
imagejpeg($im,$i."frame.jpg"); //Save in jpg format after merging
$im=imagecreatefromjpeg($i."frame.jpg"); //Recreate image from jpg format
imagegif($im); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? imagedestroy($im); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? $imagedata[] = ob_get_contents(); //Create the image data of this frame
Ob_clean();
}
$diy[]=0;//Start delay time
$gif = new GIFEncoder($imagedata,$diy,0,2,0,0,0,"bin"); //Instantiate the gif encoding object
ob_start();
Header ('Content-type:image/gif');
echo $gif->GetAnimation();
?>
The above code is basically a complete process of reading a gif image, decoding it, and then encoding it into a gif image..
With this, you can grab gif images from the Internet and modify them. You can even create some gif images directly using php.
The code is as follows:
?
Class GIFEncoder {
??? var $GIF = "GIF89a";??????????????? /* GIF header 6 bytes??????? */
??? var $VER = "GIFEncoder V2.06";??????? /* Encoder version??????????????? */
??? var $BUF = Array ( );
??? var $LOP =? 0;
??? var $DIS =? 2;
??? var $COL = -1;
??? var $IMG = -1;
??? var $ERR = Array (
??? 'ERR00' =>"Does not supported function for only one image!",
??? 'ERR01' =>"Source is not a GIF image!",
??? 'ERR02' =>"Unintelligible flag ",
??? 'ERR03' =>"Could not make animation from animated GIF source",
??? );
??? /*
??? :::::::::::::::::::::::::::::::::::::::::::::::::::
??? ::
??? ::??????? GIFEncoder...
??? ::
??? */
??? function GIFEncoder??????? (
??? $GIF_src, $GIF_dly, $GIF_lop, $GIF_dis,
??? $GIF_red, $GIF_grn, $GIF_blu, $GIF_mod
??? ) {
??????? if ( ! is_array ( $GIF_src ) && ! is_array ( $GIF_tim ) ) {
??????????? printf??????? ( "%s: %s", $this->VER, $this->ERR [ 'ERR00' ] );
??????????? exit??????? ( 0 );
??????? }
??????? $this->LOP = ( $GIF_lop > -1 ) ? $GIF_lop : 0;
??????? $this->DIS = ( $GIF_dis > -1 ) ? ( ( $GIF_dis < 3 ) ? $GIF_dis : 3 ) : 2;
??????? $this->COL = ( $GIF_red > -1 && $GIF_grn > -1 && $GIF_blu > -1 ) ?
??????? ( $GIF_red | ( $GIF_grn << 8 ) | ( $GIF_blu << 16 ) ) : -1;
??????? for ( $i = 0; $i < count ( $GIF_src ); $i++ ) {
??????????? if ( strToLower ( $GIF_mod ) == "url" ) {
??????????????? $this->BUF [ ] = fread ( fopen ( $GIF_src [ $i ], "rb" ), filesize ( $GIF_src [ $i ] ) );
??????????? }
??????????? else if ( strToLower ( $GIF_mod ) == "bin" ) {
??????????????? $this->BUF [ ] = $GIF_src [ $i ];
??????????? }
??????????? else {
??????????????? printf??????? ( "%s: %s ( %s )!", $this->VER, $this->ERR [ 'ERR02' ], $GIF_mod );
??????????????? exit??????? ( 0 );
??????????? }
??????????? if ( substr ( $this->BUF [ $i ], 0, 6 ) != "GIF87a" && substr ( $this->BUF [ $i ], 0, 6 ) != "GIF89a" ) {
??????????????? printf??????? ( "%s: %d %s", $this->VER, $i, $this->ERR [ 'ERR01' ] );
??????????????? exit??????? ( 0 );
??????????? }
??????????? for ( $j = ( 13 + 3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ) ), $k = TRUE; $k; $j++ ) {
??????????????? switch ( $this->BUF [ $i ] { $j } ) {
??????????????????? case "!":
??????????????????????? if ( ( substr ( $this->BUF [ $i ], ( $j + 3 ), 8 ) ) == "NETSCAPE" ) {
??????????????????????????? printf??????? ( "%s: %s ( %s source )!", $this->VER, $this->ERR [ 'ERR03' ], ( $i + 1 ) );
??????????????????????????? exit??????? ( 0 );
??????????????????????? }
??????????????????????? break;
??????????????????? case ";":
??????????????????????? $k = FALSE;
??????????????????????? break;
??????????????? }
??????????? }
??????? }
??????? GIFEncoder::GIFAddHeader ( );
??????? for ( $i = 0; $i < count ( $this->BUF ); $i++ ) {
??????????? GIFEncoder::GIFAddFrames ( $i, $GIF_dly [ $i ] );
??????? }
??????? GIFEncoder::GIFAddFooter ( );
??? }
??? /*
??? :::::::::::::::::::::::::::::::::::::::::::::::::::
??? ::
??? ::??????? GIFAddHeader...
??? ::
??? */
??? function GIFAddHeader ( ) {
??????? $cmap = 0;
??????? if ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x80 ) {
??????????? $cmap = 3 * ( 2 << ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 ) );
??????????? $this->GIF .= substr ( $this->BUF [ 0 ], 6, 7??????????????? );
??????????? $this->GIF .= substr ( $this->BUF [ 0 ], 13, $cmap??????? );
??????????? $this->GIF .= "!/377/13NETSCAPE2.0/3/1" . GIFEncoder::GIFWord ( $this->LOP ) . "/0";
??????? }
??? }
??? /*
??? :::::::::::::::::::::::::::::::::::::::::::::::::::
??? ::
??? ::??????? GIFAddFrames...
??? ::
??? */
??? function GIFAddFrames ( $i, $d ) {
??????? $Locals_str = 13 + 3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) );
??????? $Locals_end = strlen ( $this->BUF [ $i ] ) - $Locals_str - 1;
??????? $Locals_tmp = substr ( $this->BUF [ $i ], $Locals_str, $Locals_end );
??????? $Global_len = 2 << ( ord ( $this->BUF [ 0? ] { 10 } ) & 0x07 );
??????? $Locals_len = 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 );
??????? $Global_rgb = substr ( $this->BUF [ 0? ], 13,
??????? 3 * ( 2 << ( ord ( $this->BUF [ 0? ] { 10 } ) & 0x07 ) ) );
??????? $Locals_rgb = substr ( $this->BUF [ $i ], 13,
??????? 3 * ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ) );
??????? $Locals_ext = "!/xF9/x04" . chr ( ( $this->DIS << 2 ) + 0 ) .
??????? chr ( ( $d >> 0 ) & 0xFF ) . chr ( ( $d >> 8 ) & 0xFF ) . "/x0/x0";
??????? if ( $this->COL > -1 && ord ( $this->BUF [ $i ] { 10 } ) & 0x80 ) {
??????????? for ( $j = 0; $j < ( 2 << ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 ) ); $j++ ) {
??????????????? if??????? (
??????????????? ord ( $Locals_rgb { 3 * $j + 0 } ) == ( $this->COL >>? 0 ) & 0xFF &
??????????????? ord ( $Locals_rgb { 3 * $j + 1 } ) == ( $this->COL >>? 8 ) & 0xFF &
??????????????? ord ( $Locals_rgb { 3 * $j + 2 } ) == ( $this->COL >> 16 ) & 0xFF
??????????????? ) {
??????????????????? $Locals_ext = "!/xF9/x04" . chr ( ( $this->DIS << 2 ) + 1 ) .
??????????????????? chr ( ( $d >> 0 ) & 0xFF ) . chr ( ( $d >> 8 ) & 0xFF ) . chr ( $j ) . "/x0";
??????????????????? break;
??????????????? }
??????????? }
??????? }
??????? switch ( $Locals_tmp { 0 } ) {
??????????? case "!":
??????????????? $Locals_img = substr ( $Locals_tmp, 8, 10 );
??????????????? $Locals_tmp = substr ( $Locals_tmp, 18, strlen ( $Locals_tmp ) - 18 );
??????????????? break;
??????????? case ",":
??????????????? $Locals_img = substr ( $Locals_tmp, 0, 10 );
??????????????? $Locals_tmp = substr ( $Locals_tmp, 10, strlen ( $Locals_tmp ) - 10 );
??????????????? break;
??????? }
??????? if ( ord ( $this->BUF [ $i ] { 10 } ) & 0x80 && $this->IMG > -1 ) {
??????????? if ( $Global_len == $Locals_len ) {
??????????????? if ( GIFEncoder::GIFBlockCompare ( $Global_rgb, $Locals_rgb, $Global_len ) ) {
??????????????????? $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );
??????????????? }
??????????????? else {
??????????????????? $byte? = ord ( $Locals_img { 9 } );
??????????????????? $byte |= 0x80;
??????????????????? $byte &= 0xF8;
??????????????????? $byte |= ( ord ( $this->BUF [ 0 ] { 10 } ) & 0x07 );
??????????????????? $Locals_img { 9 } = chr ( $byte );
??????????????????? $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp );
??????????????? }
??????????? }
??????????? else {
??????????????? $byte? = ord ( $Locals_img { 9 } );
??????????????? $byte |= 0x80;
??????????????? $byte &= 0xF8;
??????????????? $byte |= ( ord ( $this->BUF [ $i ] { 10 } ) & 0x07 );
??????????????? $Locals_img { 9 } = chr ( $byte );
??????????????? $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp );
??????????? }
??????? }
??????? else {
??????????? $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );
??????? }
??????? $this->IMG? = 1;
??? }
??? /*
??? :::::::::::::::::::::::::::::::::::::::::::::::::::
??? ::
??? ::??????? GIFAddFooter...
??? ::
??? */
??? function GIFAddFooter ( ) {
??????? $this->GIF .= ";";
??? }
??? /*
??? :::::::::::::::::::::::::::::::::::::::::::::::::::
??? ::
??? ::??????? GIFBlockCompare...
??? ::
??? */
??? function GIFBlockCompare ( $GlobalBlock, $LocalBlock, $Len ) {
??????? for ( $i = 0; $i < $Len; $i++ ) {
??????????? if??????? (
??????????? $GlobalBlock { 3 * $i + 0 } != $LocalBlock { 3 * $i + 0 } ||
??????????? $GlobalBlock { 3 * $i + 1 } != $LocalBlock { 3 * $i + 1 } ||
??????????? $GlobalBlock { 3 * $i + 2 } != $LocalBlock { 3 * $i + 2 }
??????????? ) {
??????????????? return ( 0 );
??????????? }
??????? }
??????? return ( 1 );
??? }
??? /*
??? :::::::::::::::::::::::::::::::::::::::::::::::::::
??? ::
??? ::??????? GIFWord...
??? ::
??? */
??? function GIFWord ( $int ) {
??????? return ( chr ( $int & 0xFF ) . chr ( ( $int >> 8 ) & 0xFF ) );
??? }
??? /*
??? :::::::::::::::::::::::::::::::::::::::::::::::::::
??? ::
??? ::??????? GetAnimation...
??? ::
??? */
??? function GetAnimation ( ) {
??????? return ( $this->GIF );
??? }
}
?>
?

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The key to setting up PHP is to clarify the installation method, configure php.ini, connect to the web server and enable necessary extensions. 1. Install PHP: Use apt for Linux, Homebrew for Mac, and XAMPP recommended for Windows; 2. Configure php.ini: Adjust error reports, upload restrictions, etc. and restart the server; 3. Use web server: Apache uses mod_php, Nginx uses PHP-FPM; 4. Install commonly used extensions: such as mysqli, json, mbstring, etc. to support full functions.

The key to writing PHP comments is to clarify the purpose and specifications. Comments should explain "why" rather than "what was done", avoiding redundancy or too simplicity. 1. Use a unified format, such as docblock (/*/) for class and method descriptions to improve readability and tool compatibility; 2. Emphasize the reasons behind the logic, such as why JS jumps need to be output manually; 3. Add an overview description before complex code, describe the process in steps, and help understand the overall idea; 4. Use TODO and FIXME rationally to mark to-do items and problems to facilitate subsequent tracking and collaboration. Good annotations can reduce communication costs and improve code maintenance efficiency.

Comments cannot be careless because they want to explain the reasons for the existence of the code rather than the functions, such as compatibility with old interfaces or third-party restrictions, otherwise people who read the code can only rely on guessing. The areas that must be commented include complex conditional judgments, special error handling logic, and temporary bypass restrictions. A more practical way to write comments is to select single-line comments or block comments based on the scene. Use document block comments to explain parameters and return values at the beginning of functions, classes, and files, and keep comments updated. For complex logic, you can add a line to the previous one to summarize the overall intention. At the same time, do not use comments to seal code, but use version control tools.

The key to writing good comments is to explain "why" rather than just "what was done" to improve the readability of the code. 1. Comments should explain logical reasons, such as considerations behind value selection or processing; 2. Use paragraph annotations for complex logic to summarize the overall idea of functions or algorithms; 3. Regularly maintain comments to ensure consistency with the code, avoid misleading, and delete outdated content if necessary; 4. Synchronously check comments when reviewing the code, and record public logic through documents to reduce the burden of code comments.

PHPblockcommentsareusefulforwritingmulti-lineexplanations,temporarilydisablingcode,andgeneratingdocumentation.Theyshouldnotbenestedorleftunclosed.BlockcommentshelpindocumentingfunctionswithPHPDoc,whichtoolslikePhpStormuseforauto-completionanderrorche

TolearnPHPeffectively,startbysettingupalocalserverenvironmentusingtoolslikeXAMPPandacodeeditorlikeVSCode.1)InstallXAMPPforApache,MySQL,andPHP.2)Useacodeeditorforsyntaxsupport.3)TestyoursetupwithasimplePHPfile.Next,learnPHPbasicsincludingvariables,ech

The key to writing PHP comments is clear, useful and concise. 1. Comments should explain the intention behind the code rather than just describing the code itself, such as explaining the logical purpose of complex conditional judgments; 2. Add comments to key scenarios such as magic values, old code compatibility, API interfaces, etc. to improve readability; 3. Avoid duplicate code content, keep it concise and specific, and use standard formats such as PHPDoc; 4. Comments should be updated synchronously with the code to ensure accuracy. Good comments should be thought from the perspective of others, reduce the cost of understanding, and become a code understanding navigation device.

ToinstallPHPquickly,useXAMPPonWindowsorHomebrewonmacOS.1.OnWindows,downloadandinstallXAMPP,selectcomponents,startApache,andplacefilesinhtdocs.2.Alternatively,manuallyinstallPHPfromphp.netandsetupaserverlikeApache.3.OnmacOS,installHomebrew,thenrun'bre
