1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 #ifndef INCLUDED_VCL_GRAPHIC_GRAPHICMETADATA_HXX
10 #define INCLUDED_VCL_GRAPHIC_GRAPHICMETADATA_HXX
11 // Info class for all supported file formats
12 enum class GraphicFileFormat
37 // retired SGF = 0x00f4,
40 // retired SGV = 0x00f7,
47 struct GraphicMetadata
51 std::optional
<Size
> maPreferredLogSize
= std::nullopt
;
52 std::optional
<MapMode
> maPreferredMapMode
= std::nullopt
;
53 sal_uInt16 mnBitsPerPixel
= 0;
54 sal_uInt16 mnPlanes
= 0;
55 GraphicFileFormat mnFormat
= GraphicFileFormat::NOT
;
56 sal_uInt8 mnNumberOfImageComponents
= 0;
57 bool mbIsTransparent
= false;
58 bool mbIsAlpha
= false;
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */