QXlsx
QXlsx copied to clipboard
Excel file(*.xlsx) reader/writer library using Qt 5 or 6. Descendant of QtXlsxWriter.
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())...

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.
fix abs path /xl/worksheets/sheet1.xml -> xl/worksheets/sheet1.xml
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...
 在使用接口insertImage插入图片时,图片过大无法放置在单元格中。但如果对图片进行缩放后插入会导致图片精度丢失。可能实现像excel所附带的改按钮的功能将图片放置在单元格中?效果如下图: 