如何使用php和mysql在fpdf中动态创建多个身份证

neekobn8  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(338)

我尝试使用fpdf创建身份证,其中要在身份证中显示的数据来自mysql数据库,我成功地做到了这一点。问题是,我想生成许多身份证,比如10个身份证一次,当我尝试blow代码时,它正在生成身份证,但将一个放在另一个上,我只能看到最后一个身份证:
a) 那么,我怎样才能动态地给他们不同的身份证位置呢?下面是我的代码和显示输出的图像:output image

<?php
         include('connect.php'); 
         require_once('fpdf/fpdf.php');

    if(ISSET($_POST['generate_id'])){   
            $semsec = $_POST['id']; 
    $result=$conn->query("SELECT * FROM `student` WHERE `semsec` = '$semsec'") or die(mysqli_error($conn));
    if ($result->num_rows == 0) {
        // output data of each row
     echo '
                    <script type = "text/javascript">
                    alert("Student Not Found For The Provided Semister and Section");
                        window.location = "home.php";
                    </script>
                ';
    } else {

    while($row=mysqli_fetch_array($result))
    {
    $cls[]=$row;
    }
    $json=json_encode($cls);
    $obj = json_decode($json,true);
    class PDF extends FPDF
    {

    }
        $pdf = new PDF();
        $pdf->AddPage();

        foreach($obj as $item) {

        $name=$item['firstname'];
        $lname=$item['lastname'];
        $id=$item['student_no'];
        $semsec=$item['semsec'];
        $profile=$item['image'];
        $qr=$item['barcode'];

            $pdf->Image('images/background2.jpg', 10, 10,100, 50);
            $pdf->Image($profile, 80, 15,25, 30);
            $pdf->Image($qr, 15, 45,20, 15);
            $pdf->AddFont('courier','','courier.php');  
            $pdf->SetFont('courier','b',10);
            $pdf->SetXY(33, 22.8);
            $pdf->SetFont('Arial','B',10);
            $pdf->Cell(9.5,7,$name,0,4,'L');
            $pdf->SetXY(33, 28);
            $pdf->SetFont('Arial','B',10);
            $pdf->Cell(9.5,7,$lname,0,4,'L');
            $pdf->SetXY(33, 33.5);
            $pdf->SetFont('Arial','B',10);
            $pdf->Cell(9.5,7,$id,0,4,'L');
            $pdf->SetXY(33, 39);
            $pdf->SetFont('Arial','B',10);
            $pdf->Cell(9.5,7,$semsec,0,4,'L');

            }
    $pdf->Output();
    }
    }

    ?>
vdzxcuhz

vdzxcuhz1#

问题是您将id设置在彼此的顶部,每个id没有偏移量或每个id有一个新页。
如果你想每页都有一个id,你需要打电话 $pdf->AddPage(); 创建每个id之后。这将创建一个新页面,并将xy设置到页面的左上角。
如果您希望每页有多张身份证,例如每页x amount,请拆分身份证数组,以便一次循环x amount array_chunk 会为你拆分它,然后只是偏移xy坐标,偏移量是你想要的,举个例子,我这样做了

$pdf = new PDF();
$pdf->AddPage();

$input_array = array('a', 'b', 'c', 'd', 'e');

$farray = array_chunk($input_array, 2);
foreach($farray as $obj) {
    $yOffset = 0;
    foreach($obj as $item) {
        $pdf->SetXY(33, 28 + $yOffset);
        $pdf->SetFont('Arial', 'B', 10);
        $pdf->Cell(9.5, 7, $item, 0, 4, 'L');
        $yOffset += 40; // Y distance between letters
    }
    $pdf->AddPage();
}
$pdf->Output();

相关问题