1<?php
2
3namespace Mpdf\Tag;
4
5class Ttz extends SubstituteTag
6{
7
8	public function open($attr, &$ahtml, &$ihtml)
9	{
10		$this->mpdf->ttz = true;
11		$this->mpdf->InlineProperties['TTZ'] = $this->mpdf->saveInlineProperties();
12		$this->mpdf->setCSS(['FONT-FAMILY' => 'czapfdingbats', 'FONT-WEIGHT' => 'normal', 'FONT-STYLE' => 'normal'], 'INLINE');
13	}
14
15}
16