Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- Test Imagick, textureImage --SKIPIF-- <?php require_once(dirname(__FILE__) . '/sk..

Decoded Output download

--TEST--
Test Imagick, textureImage
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php


function textureImage() {
    $image = new \Imagick();
    $image->newImage(640, 480, new \ImagickPixel('pink'));
    $image->setImageFormat("jpg");
    
    $texture = new \Imagick();
    $texture->newPseudoImage(640, 480, "magick:logo");
    $texture->scaleimage($image->getimagewidth() / 4, $image->getimageheight() / 4);
    $image = $image->textureImage($texture);
    $bytes = $image;
    if (strlen($bytes) <= 0) { echo "Failed to generate image.";} 
}

textureImage() ;
echo "Ok";
?>
--EXPECTF--
Ok

Did this file decode correctly?

Original Code

--TEST--
Test Imagick, textureImage
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php


function textureImage() {
    $image = new \Imagick();
    $image->newImage(640, 480, new \ImagickPixel('pink'));
    $image->setImageFormat("jpg");
    
    $texture = new \Imagick();
    $texture->newPseudoImage(640, 480, "magick:logo");
    $texture->scaleimage($image->getimagewidth() / 4, $image->getimageheight() / 4);
    $image = $image->textureImage($texture);
    $bytes = $image;
    if (strlen($bytes) <= 0) { echo "Failed to generate image.";} 
}

textureImage() ;
echo "Ok";
?>
--EXPECTF--
Ok

Function Calls

dirname 1

Variables

None

Stats

MD5 4422c3a23f78884cc521bd0aa4b94d0c
Eval Count 0
Decode Time 124 ms