PhpOffice\PhpPresentation\Tests\Writer\PowerPoint2007\PptMediaTest::testMemoryDrawing PHP Method

testMemoryDrawing() public method

public testMemoryDrawing ( )
    public function testMemoryDrawing()
    {
        $gdImage = imagecreatetruecolor(140, 20);
        $textColor = imagecolorallocate($gdImage, 255, 255, 255);
        imagestring($gdImage, 1, 5, 5, 'Created with PHPPresentation', $textColor);
        $oShape = new Drawing\Gd();
        $oShape->setImageResource($gdImage);
        $oPhpPresentation = new PhpPresentation();
        $oSlide = $oPhpPresentation->getActiveSlide();
        $oSlide->addShape($oShape);
        $oXMLDoc = TestHelperDOCX::getDocument($oPhpPresentation, 'PowerPoint2007');
        $this->assertTrue($oXMLDoc->fileExists('ppt/media/' . $oShape->getIndexedFilename()));
    }