QtExcel / QXlsx

Excel file(*.xlsx) reader/writer library using Qt 5 or 6. Descendant of QtXlsxWriter.
https://qtexcel.github.io/QXlsx/
MIT License
1.12k stars 352 forks source link

How to insert multiple pictures horizontally evenly distributed in one cell? #339

Open okkeman opened 2 months ago

okkeman commented 2 months ago

I found that using Document::insertImage(int row, int column, const QImage &image) allows me to insert multiple pictures into a single cell, but each picture starts drawing from the top-left corner of the cell, resulting in overlapping images.

Does anyone know how to solve this issue?