oleibman
oleibman
Please upload the original file.
Thank you for the file. I can confirm your problem. The images that are missing all seem to be "shapes" rather than "drawings", but not all shapes are missing (e.g....
I don't think the problem is in your code. I think the problem can be solved only by better handling of shape files by PhpSpreadsheet, which I think will not...
Can you add a unit test which would fail without your change, but succeed with it?
Converting to draft. Superseded by #3078. If that is merged, I will close this ticket.
Superseded by 3078 which was just merged. Closing.
Does the following not work for you? ```php $writer = new \PhpOffice\PhpSpreadsheet\Writer\Pdf\Mpdf($spreadsheet); $writer->writeAllSheets(); $writer->save($filename); ```
You might create a new class which extends PhpOffice\PhpSpreadsheet\Writer\Pdf\Mpdf, and add the Mpdf header commands to the `save` method. If that doesn't work, this seems more appropriate for a new...
I could not get the "native" Mpdf header commands to work to my satisfaction. However, the following seems to work (but may have memory problems with larger files): ```php use...
The distinction is between "one-cell anchor" (object moves with the anchor cell) and "two-cell anchor" (object will be moved and/or resized when the cells between the starting and ending anchors...