top_margin = $top_margin; } public function set_bottom_margin($bottom_margin) { $this->bottom_margin = $bottom_margin; } public function set_left_margin($left_margin) { $this->left_margin = $left_margin; } public function set_right_margin($right_margin) { $this->right_margin = $right_margin; } public function set_width($width) { $this->width = $width; } public function set_height($height) { $this->height = $height; } public function zoom_out(&$pdf, $string, $width = 0) { if (!$width){ $width = $this->width; } while($pdf->GetStringWidth($string) > $width) { $pdf->SetFontSize($pdf->FontSizePt-0.5); } } }