当前位置: 首页>>代码示例>>PHP>>正文


PHP Transform::Rotate方法代码示例

本文整理汇总了PHP中Transform::Rotate方法的典型用法代码示例。如果您正苦于以下问题:PHP Transform::Rotate方法的具体用法?PHP Transform::Rotate怎么用?PHP Transform::Rotate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Transform的用法示例。


在下文中一共展示了Transform::Rotate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: CircularText

 public function CircularText(\PhpSigep\Pdf\ImprovedFPDF $pdf, $x, $y, $r, $text, $align = 'top', $kerning = 120, $fontwidth = 100)
 {
     $transf = new Transform();
     $kerning /= 100;
     $fontwidth /= 100;
     if ($kerning == 0) {
         $pdf->Error('Please use values unequal to zero for kerning');
     }
     if ($fontwidth == 0) {
         $pdf->Error('Please use values unequal to zero for font width');
     }
     //get width of every letter
     $t = 0;
     for ($i = 0; $i < strlen($text); $i++) {
         $w[$i] = $pdf->GetStringWidth($text[$i]);
         $w[$i] *= $kerning * $fontwidth;
         //total width of string
         $t += $w[$i];
     }
     //circumference
     $u = $r * 2 * M_PI;
     //total width of string in degrees
     $d = $t / $u * 360;
     $transf->StartTransform($pdf);
     // rotate matrix for the first letter to center the text
     // (half of total degrees)
     if ($align == 'top') {
         $transf->Rotate($pdf, $d / 2, $x, $y);
     } else {
         $transf->Rotate($pdf, -$d / 2, $x, $y);
     }
     //run through the string
     for ($i = 0; $i < strlen($text); $i++) {
         if ($align == 'top') {
             //rotate matrix half of the width of current letter + half of the width of preceding letter
             if ($i == 0) {
                 $transf->Rotate($pdf, -($w[$i] / 2 / $u) * 360, $x, $y);
             } else {
                 $transf->Rotate($pdf, -(($w[$i] / 2 + $w[$i - 1] / 2) / $u) * 360, $x, $y);
             }
             if ($fontwidth != 1) {
                 $transf->StartTransform($pdf);
                 $transf->ScaleX($pdf, $fontwidth * 100, $x, $y);
             }
             $pdf->SetXY($x - $w[$i] / 2, $y - $r);
         } else {
             //rotate matrix half of the width of current letter + half of the width of preceding letter
             if ($i == 0) {
                 $transf->Rotate($pdf, $w[$i] / 2 / $u * 360, $x, $y);
             } else {
                 $transf->Rotate($pdf, ($w[$i] / 2 + $w[$i - 1] / 2) / $u * 360, $x, $y);
             }
             if ($fontwidth != 1) {
                 $transf->StartTransform($pdf);
                 $transf->ScaleX($pdf, $fontwidth * 100, $x, $y);
             }
             $pdf->SetXY($x - $w[$i] / 2, $y + $r - $pdf->FontSize);
         }
         $pdf->Cell($w[$i], $pdf->FontSize, $text[$i], 0, 0, 'C');
         if ($fontwidth != 1) {
             $transf->StopTransform($pdf);
         }
     }
     $transf->StopTransform($pdf);
 }
开发者ID:rafaelsiqueira,项目名称:php-sigep,代码行数:65,代码来源:CircularText.php


注:本文中的Transform::Rotate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。