PMA\libraries\plugins\schema\eps\Eps::showOutput PHP Method

showOutput() public method

Output EPS Document for download
public showOutput ( string $fileName ) : void
$fileName string name of the eps document
return void
    public function showOutput($fileName)
    {
        // if(ob_get_clean()){
        //ob_end_clean();
        //}
        $output = $this->stringCommands;
        Response::getInstance()->disable();
        PMA_downloadHeader($fileName, 'image/x-eps', strlen($output));
        print $output;
    }