PhpOffice\PhpPresentation\Tests\Writer\ODPresentation\MetaInfManifestTest::testMemoryDrawing PHP Method

testMemoryDrawing() public method

public testMemoryDrawing ( )
    public function testMemoryDrawing()
    {
        $oPhpPresentation = new PhpPresentation();
        $oSlide = $oPhpPresentation->getActiveSlide();
        $oShape = new Drawing\Gd();
        $gdImage = @imagecreatetruecolor(140, 20);
        $textColor = imagecolorallocate($gdImage, 255, 255, 255);
        imagestring($gdImage, 1, 5, 5, 'Created with PhpPresentation', $textColor);
        $oShape->setImageResource($gdImage)->setRenderingFunction(Drawing\Gd::RENDERING_JPEG)->setMimeType(Drawing\Gd::MIMETYPE_DEFAULT);
        $oSlide->addShape($oShape);
        $pres = TestHelperDOCX::getDocument($oPhpPresentation, 'ODPresentation');
        $element = '/manifest:manifest/manifest:file-entry[5]';
        $this->assertTrue($pres->elementExists($element, 'META-INF/manifest.xml'));
        $this->assertEquals('Pictures/' . $oShape->getIndexedFilename(), $pres->getElementAttribute($element, 'manifest:full-path', 'META-INF/manifest.xml'));
    }