!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/qr.picotech.app/public_html_v3_3/vendor/simplesoftwareio/simple-qrcode/tests/   drwxr-xr-x
Free 25.22 GB of 117.98 GB (21.37%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ImageMergeTest.php (2.53 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

use PHPUnit\Framework\TestCase;
use 
SimpleSoftwareIO\QrCode\Image;
use 
SimpleSoftwareIO\QrCode\ImageMerge;

class 
ImageMergeTest extends TestCase
{
    
/**
     * The location to save the testing image.
     *
     * @var string
     */
    
protected $testImageSaveLocation;

    
/**
     * The location to save the compare image.
     *
     * @var string
     */
    
protected $compareTestSaveLocation;

    
/**
     * The ImageMerge Object.
     *
     * @var ImageMerge
     */
    
protected $testImage;

    
/**
     * The location of the test image that is having an image merged over top of it.
     *
     * @var string
     */
    
protected $testImagePath;

    
/**
     * The location of the test image that is being merged.
     * @var mixed
     */
    
protected $mergeImagePath;

    public function 
setUp(): void
    
{
        
$this->testImagePath file_get_contents(dirname(__FILE__).'/Images/simplesoftware-icon-grey-blue.png');
        
$this->mergeImagePath file_get_contents(dirname(__FILE__).'/Images/200x300.png');
        
$this->testImage = new ImageMerge(
            new 
Image($this->testImagePath),
            new 
Image($this->mergeImagePath)
        );

        
$this->testImageSaveLocation dirname(__FILE__).'/testImage.png';
        
$this->compareTestSaveLocation dirname(__FILE__).'/compareImage.png';
    }

    public function 
tearDown(): void
    
{
        @
unlink($this->testImageSaveLocation);
        @
unlink($this->compareTestSaveLocation);
    }

    public function 
test_it_merges_two_images_together_and_centers_it()
    {
        
//We know the source image is 512x512 and the merge image is 200x300
        
$source imagecreatefromstring($this->testImagePath);
        
$merge imagecreatefromstring($this->mergeImagePath);

        
//Create a PNG and place the image in the middle using 20% of the area.
        
imagecopyresampled(
            
$source,
            
$merge,
            
205,
            
222,
            
0,
            
0,
            
102,
            
67,
            
536,
            
354
        
);
        
imagepng($source$this->compareTestSaveLocation);

        
$testImage $this->testImage->merge(.2);
        
file_put_contents($this->testImageSaveLocation$testImage);

        
$this->assertEquals(file_get_contents($this->compareTestSaveLocation), file_get_contents($this->testImageSaveLocation));
    }

    public function 
test_it_throws_an_exception_when_percentage_is_greater_than_1()
    {
        
$this->expectException(InvalidArgumentException::class);
        
$this->testImage->merge(1.1);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0043 ]--