Example 23

Description

In this example a frame is added at a position of 120mm from the left and 50mm from the top of the paper. The box has a size of 50mm by 70mm. To show the box it has a red border.
Below the box there is a text paragraph.
Then a FixposFrame is added at the position 60mm from the left and 130mm from the top of the paper. The box has a size of 100mm by 50mm.
The frame cannot be placed on the first (the current) page because there is already a text frame. Therefore, a page break is inserted automatically and the frame will be printed on the second page

Output

<?php

include_once "../src/Report.php";

use Adi\ReportLib as ReportLib;

// Create report instance
//  default format A4, portrait with margins left = 20mm, top = 10mm, right = 10mm and bottom = 10mm
$report = new ReportLib\Report();

// get NORMAL text style
$tsNormal = ReportLib\TextStyles::getTextStyle(ReportLib\TextStyles::NORMAL);

// Text paragraph
$text = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.\n";

// Get ref to the report body
$body = $report->getBody();

$fix = new ReportLib\FixposFrame(120.0, 50.0);

$box = new ReportLib\BoxFrame();
$box->setWidth(50.0);
$box->setHeight(70.0);
$box->setBorderPen(new ReportLib\Pen(0.1, "#FF0000"));

$fix->addFrame($box);
$body->addFrame($fix);
$body->AddVDistance(10.0);

$body->AddText($text, $tsNormal);

$fix = new ReportLib\FixposFrame(60.0, 130.0);

$box = new ReportLib\BoxFrame();
$box->setWidth(100.0);
$box->setHeight(50.0);
$box->setPadding(1.0);
$box->setBorderPen(new ReportLib\Pen(0.1, "#CCCCCC"));
$fix->addFrame($box);

$body->addFrame($fix);
$body->AddVDistance(10.0);

$body->AddText($text, $tsNormal);


// Produce the output of the report
//  uses the same params as TCPDF (F = File, I = Preview etc.)
$report->output(__DIR__ . "/example_023.pdf", 'I');