Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Undefined array key "rect" Error in FpdiTrait.php #177

Closed
okaufmann opened this issue Jul 26, 2023 · 4 comments
Closed

Undefined array key "rect" Error in FpdiTrait.php #177

okaufmann opened this issue Jul 26, 2023 · 4 comments

Comments

@okaufmann
Copy link

Description:
While running my project with FPDI version 2.4.0, I encountered an Undefined array key "rect" error. This error seems to be originating from the FpdiTrait.php file. Notably, this issue does not occur in version 2.3.7.

Error Message:

[2023-07-26 21:19:14] local.ERROR: Undefined array key "rect" {"exception":"[object] (ErrorException(code: 0): Undefined array key "rect" at [trimmed]/vendor/setasign/fpdi/src/FpdiTrait.php:485)

Environment:

  • PHP Version: 8.2.7
  • Composer Version: 2.5.8
  • setasign/fpdi version: 2.4.0.
  • setasign/setapdf-stamper version: 2.37.0.1631
@JanSlabon
Copy link
Member

Please share the PDF in question and also a minimal reproducable code snipped, so that we can reproduce this. Thanks!

@okaufmann
Copy link
Author

I generate it like this:
(unfortunately I can not share the base PDF file. But it is a PDF (version 1.5).

$mpdf = new Mpdf([
       'fontDir' => ['fonts'],
       'fontdata' => ['volkart' => [
              'R' => 'volkart-regular/Volkart-Regular.ttf',
       ]],
       'default_font' => 'volkart',
]);

$mpdf->setSourceFile('my-pdf.pdf');

$mpdf->AddPage('P');
$templateId = $mpdf->importPage(1);
$mpdf->useTemplate($templateId);

$mpdf->WriteFixedPosHTML($this->html('a wonderful product', '#000'), 77.5, 85.3, 99, 15, 'auto');
$mpdf->WriteFixedPosHTML($this->html('a description', '#000'), 77.5, 126, 99, 15, 'auto');

// ...

protected function html(string $text, string $color)
{
       return <<<HTML
       <table style="width: 100%; margin: 0; padding: 0;" cellpadding="0" cellspacing="0">
       <tr>
              <td style="height: 47pt; text-align: center; vertical-align: middle; padding: 0px 5px; margin: 0; font-size: 35px; color: {$color}">
              {$text}
              </td>
       </tr>
       </table>
       HTML;
}

@JanSlabon
Copy link
Member

Okay, there's a variable clash between FPDI and mPDF.

I just added a quick fix to the development branch. Can you please test it? If this works I am going to release a hotfix tomorrow morning. Gn8!

@JanSlabon
Copy link
Member

Fixed in https://github.com/Setasign/FPDI/releases/tag/v2.4.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants