-
Notifications
You must be signed in to change notification settings - Fork 9
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
Undetected background-colour (support xslx created outside of fxl) #15
Comments
"A deprecated indexing scheme for colours that is still required for some records, and for backwards compatibility with OLE2 formats." https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/IndexedColors.html |
https://poi.apache.org/apidocs/dev/org/apache/poi/xssf/usermodel/XSSFColor.html#setIndexed-int- |
(-> cell
.getCellStyle
.getFillForegroundXSSFColor
.getARGBHex
;; .getFillForegroundColor
;; colours/colours-lookup
) |
https://poi.apache.org/apidocs/dev/org/apache/poi/ss/usermodel/ExtendedColor.html#getARGBHex-- |
fxl/test/zero_one/fxl/core_test.clj
Line 30 in a2f36e9
Based on some tests, it seems that the colours in the
test/resources/dummy-spreadsheet.xslx
are incompatible with.getFillForegroundColor
. Colours are however read correctly from files generated with fxl.This might be a limitation of
org.apache.poi.xssf.usermodel
? Have to see howdummy-spreadsheet.xslx
was created. Proprietary excel issues?The text was updated successfully, but these errors were encountered: