QXlsx icon indicating copy to clipboard operation
QXlsx copied to clipboard

Excel file(*.xlsx) reader/writer library using Qt 5 or 6. Descendant of QtXlsxWriter.

Results 185 QXlsx issues
Sort by recently updated
recently updated
newest added

hi is there any way to get size of the image that in the .xlsx file? i know we can get images with "getImage", but it don't get any info...

I noticed that xlsx file stored in the resource file (qrc) are not properly handled by QXlsX: ```cpp QString fileName = ":/dummy.xlsx"; QXlsx::Document xlsx(fileName); auto dimension = xlsx.currentWorksheet()->dimension(); if (!dimension.isValid())...

![image](https://user-images.githubusercontent.com/45855146/196331774-077ef2f7-0740-4bc7-a4dd-847690995eff.png)

The replacement, QColor::fromString() exists since Qt 6.4.

I use ```c++ QXlsx::Document document; document.setColumnWidth(1, 100); ``` in the code But the width displayed in the file is around 700, is this coincidence?

Greatings, I realy like your project as a now and then C++ programmer. I have an issue I listed in a "pseudo code" below: A.h class A { private: Document...

Please review my edit: https://github.com/yihuajack/QXlsx/wiki and merge if it's OK.

First, I would like to say “Big thanks” to everyone involved in the direct development of this library :) But I have a few questions about working with diagrams. I...

![1729307694164](https://github.com/user-attachments/assets/9a8c53a2-fb15-474f-8caf-b9bea37701d5) 在使用接口insertImage插入图片时,图片过大无法放置在单元格中。但如果对图片进行缩放后插入会导致图片精度丢失。可能实现像excel所附带的改按钮的功能将图片放置在单元格中?效果如下图: ![3](https://github.com/user-attachments/assets/0fe43c91-e80c-481f-80b1-7e8a326d2a44)