Added orientiation (default "P") to Label

这个提交包含在:
int2001 2023-08-02 08:32:00 +00:00
父节点 a043060a8c
当前提交 a988f60897
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B

查看文件

@ -132,7 +132,7 @@ class PDF_Label extends tfpdf {
} }
// Print a label // Print a label
function Add_Label($text) { function Add_Label($text,$orientation = 'L') {
$this->_COUNTX++; $this->_COUNTX++;
if ($this->_COUNTX == $this->_X_Number) { if ($this->_COUNTX == $this->_X_Number) {
// Row full, we start a new one // Row full, we start a new one
@ -141,7 +141,7 @@ class PDF_Label extends tfpdf {
if ($this->_COUNTY == $this->_Y_Number) { if ($this->_COUNTY == $this->_Y_Number) {
// End of page reached, we start a new one // End of page reached, we start a new one
$this->_COUNTY=0; $this->_COUNTY=0;
$this->AddPage(); $this->AddPage($orientation);
} }
} }