diff options
author | offtkp <parisoplop@gmail.com> | 2022-07-17 21:42:53 +0300 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-07-19 10:10:37 +0200 |
commit | fac9dfa19b3853e4b1b6ec62baf1645a8b1194c9 (patch) | |
tree | 7f93b64decf7963ff58d043207f4e91f6b64c36b /include | |
parent | 9e775a73240c6d73d679409d0753334f8494ed14 (diff) |
Add 32bpp export support in PngImageWriter
Also added support for "Translucent" property
Change-Id: I45cc3cf82ecacac08c3852ca2ad09fb8137ffc44
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137154
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/filter/PngImageWriter.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/filter/PngImageWriter.hxx b/include/vcl/filter/PngImageWriter.hxx index 4fb11b1ca48a..c788f19bf4db 100644 --- a/include/vcl/filter/PngImageWriter.hxx +++ b/include/vcl/filter/PngImageWriter.hxx @@ -32,7 +32,7 @@ class VCL_DLLPUBLIC PngImageWriter css::uno::Reference<css::task::XStatusIndicator> mxStatusIndicator; sal_Int32 mnCompressionLevel; - bool mbInterlaced; + bool mbInterlaced, mbTranslucent; std::vector<PngChunk> maAdditionalChunks; public: |