使用Line()在FPDF中生成一个复选标记;而不是制作X.

时间:2015-08-05 02:31:28

标签: php fpdf

因此使用此代码生成X

$pdf->SetDrawColor(0, 0, 0);
$pdf->SetLineWidth(2.0);
$pdf->Line($x, $y, $x + $w, $y + $h);
$pdf->Line($x, $y + $h, $x + $w, $y);

如何更改$ pdf-> Line();所以我可以让它产生一个复选标记呢?

这里是否有帮助

if (isset($json->pages[$i]) && isset($json->pages[$i]->areas)) {
    for ($j = 0; $j < count($json->pages[$i]->areas); $j++) {
      $area = $json->pages[$i]->areas[$j];
      $x    = $area->x;
      $y    = $area->y;
      $w    = $area->width;
      $h    = $area->height;

0 个答案:

没有答案