當前位置: 首頁>>代碼示例>>PHP>>正文


PHP mPDF::output方法代碼示例

本文整理匯總了PHP中mPDF::output方法的典型用法代碼示例。如果您正苦於以下問題:PHP mPDF::output方法的具體用法?PHP mPDF::output怎麽用?PHP mPDF::output使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mPDF的用法示例。


在下文中一共展示了mPDF::output方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: render

 public function render($file = NULL)
 {
     // Render the HTML normally
     $html = parent::render($file);
     // Render the HTML to a PDF
     $mpdf = new mPDF('UTF-8', 'A4');
     $mpdf->SetAutoFont(AUTOFONT_ALL);
     $mpdf->WriteHTML($html);
     return $mpdf->output();
 }
開發者ID:ener,項目名稱:mpdf,代碼行數:10,代碼來源:mpdf.php

示例2: ActionCreatePDF

 public function ActionCreatePDF($id)
 {
     $mpdf = Yii::app()->ePdf->mpdf();
     $model_historia = $this->loadModel($id);
     $model_historiaO_paciente = HistoriaObstetricia::model()->getHistoriasObstetriciaByPaciente($model_historia->paciente->id);
     $model_historiaG_paciente = HistoriaGinecologia::model()->getHistoriasGinecologicasByPaciente($model_historia->paciente->id);
     $historia = array($model_historiaG_paciente, $model_historiaO_paciente);
     $stylesheet = file_get_contents('C:\\wamp\\www\\Gineobs\\themes\\hebo\\css\\pdfMain.css');
     //configurando pdf general
     $mpdf = new mPDF('utf-8', 'Letter-L');
     //agregando header y footer
     $mpdf->SetHeader('{DATE j-m-Y}||Recipe #' . $model_historia->paciente->id);
     $mpdf->SetFooter('Dr. María Hernández|Ginecologia y obstetricia|{PAGENO}');
     //Propiedades del PDF
     $mpdf->setTitle("Historia Medica");
     $mpdf->setAuthor("María Hernández");
     $mpdf->setCreator("Edgar Cardona y Gabriela Soto");
     $mpdf->setSubject("Historia medica de pacientes.");
     $mpdf->setKeywords("Historia,Medicina");
     //escribiendo CSS
     $mpdf->WriteHTML($stylesheet, 1);
     //Escribiendo PDF
     $mpdf->writeHTML($this->renderPartial('historia', array('model' => $model_historia->paciente->id, 'historia' => $historia), true), 2);
     //Salida
     $mpdf->output("Recipe Medico", EYiiPdf::OUTPUT_TO_DOWNLOAD);
 }
開發者ID:edarkzero,項目名稱:GineObs,代碼行數:26,代碼來源:HistoriaGinecologiaController.php

示例3: generatePDF

 static function generatePDF($content, $orientation = 'P')
 {
     include GLPI_ROOT . "/plugins/monitoring/lib/mpdf/mpdf.php";
     $format = 'A4';
     if ($orientation == 'L') {
         $format .= '-L';
     }
     $pdf = new mPDF('c', $format, '', '', 5, 5, 10, 10, 2, 2, $orientation);
     $pdf->mirrorMargins = true;
     $pdf->SetDisplayMode('fullpage');
     $pdf->showImageErrors = true;
     $css = file_get_contents(GLPI_ROOT . '/plugins/monitoring/css/pdf.css');
     $pdf->WriteHTML($css, 1);
     $content = "<body>" . $content . "</body>";
     $pdf->WriteHTML($content, 2);
     $pdf->output();
     //      $out = $pdf->output(GLPI_PLUGIN_DOC_DIR.'/monitoring/example_001.pdf', 'F');
     exit;
 }
開發者ID:geldarr,項目名稱:hack-space,代碼行數:19,代碼來源:report.class.php

示例4: elseif

    if (!empty($jawaban->benar)) {
        $point = $jawaban->benar * $point->point_soal;
    } else {
        $point = 0;
    }
    $this->db->where('username', $data->kd_anggota);
    $status_ujian = $this->db->get('tb_users')->row();
    if ($status_ujian->status_ujian == 'ujian') {
        $status = '<small class="label label-warning">Sedang Ujian</small>';
    } elseif ($status_ujian->status_ujian == 'selesai') {
        $status = '<small class="label label-success">Selesai Dikerjakan</small>';
    } else {
        $status = '<small class="label label-danger">Belum Ujian</small>';
    }
    $s .= '<tr>';
    $s .= '<td width="10" align="center">' . $no++ . '</td>';
    $s .= '<td width="10" align="center">' . $data->kd_anggota . '</td>';
    $s .= '<td width="10" align="center">' . $anggota->nama . '</td>';
    $s .= '<td width="10" align="center">' . $jawaban->benar . '</td>';
    $s .= '<td width="10" align="center">' . $salah . '</td>';
    $s .= '<td width="10" align="center">' . $jawaban_peserta->num_rows() . ' / ' . $jumlah_soal->num_rows() . ' soal</td>';
    $s .= '<td width="10" align="center">' . $point . '</td>';
    $s .= '</tr>';
}
$s .= '</table>';
$mpdf = new mPDF('c', 'A4', '', '', 10, 10, 10, 10, 16, 13);
$mpdf->SetDisplayMode('fullpage');
$mpdf->list_indent_first_level = 0;
$mpdf->WriteHTML($s, 2);
$mpdf->output($filename, 'I');
開發者ID:ekojt7,項目名稱:ujian_toefl,代碼行數:30,代碼來源:hasil_ujian.php

示例5: output

 /**
  * Delegate to mpdf
  * @param type $name
  * @param type $dest
  * @return type
  */
 public function output($name = '', $dest = '')
 {
     return $this->mpdf->output($name, $dest);
 }
開發者ID:seyfer,項目名稱:kohana-mpdf,代碼行數:10,代碼來源:MPDF.php

示例6: createPDF

 public function createPDF($id)
 {
     $model = $this->loadModel($id);
     $stylesheet = file_get_contents('C:\\xampp\\htdocs\\Gineobs\\themes\\hebo\\css\\pdfMain.css');
     $texto = '<div id=contenedor>';
     $texto = $texto . '<div id=columna1>';
     $texto = $texto . '<H1 class="h1PDF"> Dra. Maria C. Hernandez N.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> Ginecologo-Obstetra.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> C.C. Galeno Center Of. C8  Av. Country Club. Bna.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> Telf. 0281-2743367/0414-8240064. CM972.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> Rif: 3956719-5 MSAS 18083.</H1>';
     $texto = $texto . '</div>';
     $texto = $texto . '<div id=columna2>';
     $texto = $texto . '<H1 class="h1PDF"> Dra. Maria C. Hernandez N.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> Ginecologo-Obstetra.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> C.C. Galeno Center Of. C8  Av. Country Club. Bna.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> Telf. 0281-2743367/0414-8240064. CM972.</H1>';
     $texto = $texto . '<H1 class="h1PDF"> Rif: 3956719-5 MSAS 18083.</H1>';
     $texto = $texto . '</div>';
     $texto = $texto . '<div id=columna1>';
     $texto = $texto . '<p>Medicina: ' . $this->visualizarArreglo($model->recipeMedicinas, 'nombre') . '</p>';
     $texto = $texto . '<p>Indicaciones: ' . $model->indicaciones . ' </p>';
     $texto = $texto . '<p>Paciente: ' . Paciente::GET_NOMBRE_COMPLETO_PK($model->paciente_id) . ' </p>';
     $texto = $texto . '<p>Fecha de creacion: ' . $model->fecha . ' </p>';
     $texto = $texto . '</div>';
     $texto = $texto . '</div>';
     /* $mpdf->writeHTML(
                $this->render('create',null ,true)
        );*/
     //Propiedades del header y footer
     //            $mpdf->defaultheaderfontsize=10;
     //            $mpdf->defaultheaderfontstyle='B';
     //            $mpdf->defaultheaderline=0;
     //            $mpdf->defaultfooterfontsize=10;
     //            $mpdf->defaultfooterfontstyle='BI';
     //            $mpdf->defaultfooterline=0;
     //configurando pdf general
     $mpdf = new mPDF('utf-8', 'Letter-L');
     //agregando header y footer
     $mpdf->SetHeader('{DATE j-m-Y}||Recipe #' . $model->id);
     $mpdf->SetFooter('Dr. María Hernández|Ginecologia y obstetricia|{PAGENO}');
     //Propiedades del PDF
     $mpdf->setTitle("Recipe Medico");
     $mpdf->setAuthor("María Hernández");
     $mpdf->setCreator("Edgar Cardona y Gabriela Soto");
     $mpdf->setSubject("Recipe medico para tratamiento de pacientes.");
     $mpdf->setKeywords("Recipe,Medico");
     //escribiendo CSS
     $mpdf->WriteHTML($stylesheet, 1);
     //Escribiendo PDF
     $mpdf->writeHTML($texto, 2);
     //Salida
     $mpdf->output("Recipe Medico", EYiiPdf::OUTPUT_TO_BROWSER);
 }
開發者ID:edarkzero,項目名稱:GineObs,代碼行數:54,代碼來源:RecipeController.php


注:本文中的mPDF::output方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。