LibreOffice Module vcl (master) 1
graphicfilter.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#ifndef INCLUDED_VCL_GRAPHICFILTER_HXX
21#define INCLUDED_VCL_GRAPHICFILTER_HXX
22
23#include <tools/gen.hxx>
24#include <vcl/dllapi.h>
25#include <vcl/graph.hxx>
30
31#include <memory>
32
33namespace com::sun::star::beans { struct PropertyValue; }
34namespace com::sun::star::uno { template <class E> class Sequence; }
35
36class INetURLObject;
37
39class SvStream;
40struct WmfExternal;
41struct ConvertData;
42
43#define ERRCODE_GRFILTER_OPENERROR ErrCode(ErrCodeArea::Vcl, ErrCodeClass::General, 1)
44#define ERRCODE_GRFILTER_IOERROR ErrCode(ErrCodeArea::Vcl, ErrCodeClass::General, 2)
45#define ERRCODE_GRFILTER_FORMATERROR ErrCode(ErrCodeArea::Vcl, ErrCodeClass::General, 3)
46#define ERRCODE_GRFILTER_VERSIONERROR ErrCode(ErrCodeArea::Vcl, ErrCodeClass::General, 4)
47#define ERRCODE_GRFILTER_FILTERERROR ErrCode(ErrCodeArea::Vcl, ErrCodeClass::General, 5)
48#define ERRCODE_GRFILTER_TOOBIG ErrCode(ErrCodeArea::Vcl, ErrCodeClass::General, 7)
49
50#define GRFILTER_OUTHINT_GREY 1
51
52#define GRFILTER_FORMAT_NOTFOUND (sal_uInt16(0xFFFF))
53#define GRFILTER_FORMAT_DONTKNOW (sal_uInt16(0xFFFF))
54
56{
57 NONE = 0x000,
58 SetLogsizeForJpeg = 0x001,
61 OnlyCreateBitmap = 0x020,
63 UseExistingBitmap = 0x040,
64};
65namespace o3tl
66{
67 template<> struct typed_flags<GraphicFilterImportFlags> : is_typed_flags<GraphicFilterImportFlags, 0x0063> {};
68}
69
70#define IMP_BMP "SVBMP"
71#define IMP_MOV "SVMOV"
72#define IMP_SVMETAFILE "SVMETAFILE"
73#define IMP_WMF "SVWMF"
74#define IMP_WMZ "SVWMZ"
75#define IMP_EMF "SVEMF"
76#define IMP_EMZ "SVEMZ"
77#define IMP_GIF "SVIGIF"
78#define IMP_PNG "SVIPNG"
79#define IMP_JPEG "SVIJPEG"
80#define IMP_XBM "SVIXBM"
81#define IMP_XPM "SVIXPM"
82#define IMP_SVG "SVISVG"
83#define IMP_SVGZ "SVISVGZ"
84#define IMP_PDF "SVIPDF"
85#define IMP_TIFF "SVTIFF"
86#define IMP_TGA "SVTGA"
87#define IMP_PICT "SVPICT"
88#define IMP_MET "SVMET"
89#define IMP_RAS "SVRAS"
90#define IMP_PCX "SVPCX"
91#define IMP_EPS "SVIEPS"
92#define IMP_PSD "SVPSD"
93#define IMP_PCD "SVPCD"
94#define IMP_PBM "SVPBM"
95#define IMP_DXF "SVDXF"
96#define IMP_WEBP "SVIWEBP"
97
98#define EXP_BMP "SVBMP"
99#define EXP_SVMETAFILE "SVMETAFILE"
100#define EXP_WMF "SVWMF"
101#define EXP_WMZ "SVWMZ"
102#define EXP_EMF "SVEMF"
103#define EXP_EMZ "SVEMZ"
104#define EXP_JPEG "SVEJPEG"
105#define EXP_SVG "SVESVG"
106#define EXP_SVGZ "SVESVGZ"
107#define EXP_PDF "SVEPDF"
108#define EXP_PNG "SVEPNG"
109#define EXP_TIFF "SVTIFF"
110#define EXP_EPS "SVEEPS"
111#define EXP_GIF "SVEGIF"
112#define EXP_WEBP "SVEWEBP"
113
114
115inline constexpr OUStringLiteral BMP_SHORTNAME = u"BMP";
116inline constexpr OUStringLiteral GIF_SHORTNAME = u"GIF";
117inline constexpr OUStringLiteral JPG_SHORTNAME = u"JPG";
118inline constexpr OUStringLiteral MET_SHORTNAME = u"MET";
119inline constexpr OUStringLiteral PCT_SHORTNAME = u"PCT";
120inline constexpr OUStringLiteral PNG_SHORTNAME = u"PNG";
121inline constexpr OUStringLiteral SVM_SHORTNAME = u"SVM";
122inline constexpr OUStringLiteral TIF_SHORTNAME = u"TIF";
123inline constexpr OUStringLiteral WMF_SHORTNAME = u"WMF";
124inline constexpr OUStringLiteral EMF_SHORTNAME = u"EMF";
125inline constexpr OUStringLiteral SVG_SHORTNAME = u"SVG";
126inline constexpr OUStringLiteral PDF_SHORTNAME = u"PDF";
127inline constexpr OUStringLiteral WEBP_SHORTNAME = u"WEBP";
128
130{
132 OUString aPathExt;
135
136 void ImpConstruct();
137
138 bool ImpDetectBMP( SvStream& rStm, bool bExtendedInfo );
139 bool ImpDetectGIF( SvStream& rStm, bool bExtendedInfo );
140 bool ImpDetectJPG( SvStream& rStm, bool bExtendedInfo );
141 bool ImpDetectPCD( SvStream& rStm, bool bExtendedInfo );
142 bool ImpDetectPCX( SvStream& rStm );
143 bool ImpDetectPNG( SvStream& rStm, bool bExtendedInfo );
144 bool ImpDetectTIF( SvStream& rStm, bool bExtendedInfo );
145 bool ImpDetectXBM( SvStream& rStm, bool bExtendedInfo );
146 bool ImpDetectXPM( SvStream& rStm, bool bExtendedInfo );
147 bool ImpDetectPBM( SvStream& rStm, bool bExtendedInfo );
148 bool ImpDetectPGM( SvStream& rStm, bool bExtendedInfo );
149 bool ImpDetectPPM( SvStream& rStm, bool bExtendedInfo );
150 bool ImpDetectRAS( SvStream& rStm, bool bExtendedInfo );
151 bool ImpDetectTGA( SvStream& rStm, bool bExtendedInfo );
152 bool ImpDetectPSD( SvStream& rStm, bool bExtendedInfo );
153 bool ImpDetectEPS( SvStream& rStm, bool bExtendedInfo );
154 bool ImpDetectWEBP( SvStream& rStm, bool bExtendedInfo );
155 bool ImpDetectDXF( SvStream& rStm, bool bExtendedInfo );
156 bool ImpDetectMET( SvStream& rStm, bool bExtendedInfo );
157 bool ImpDetectPCT( SvStream& rStm, bool bExtendedInfo );
158 bool ImpDetectSVM( SvStream& rStm, bool bExtendedInfo );
159 bool ImpDetectWMF( SvStream& rStm, bool bExtendedInfo );
160 bool ImpDetectEMF( SvStream& rStm, bool bExtendedInfo );
161 bool ImpDetectSVG( SvStream& rStm, bool bExtendedInfo );
164
165public:
166
172 GraphicDescriptor( const INetURLObject& rPath );
173
180 GraphicDescriptor( SvStream& rInStream, const OUString* pPath );
181
183
188 bool Detect( bool bExtendedInfo = false );
189
191 GraphicFileFormat GetFileFormat() const { return aMetadata.mnFormat; }
192
194 const Size& GetSizePixel() const { return aMetadata.maPixSize; }
195
197 const Size& GetSize_100TH_MM() const { return aMetadata.maLogSize; }
198
203 const std::optional<Size>& GetPreferredLogSize() const { return aMetadata.maPreferredLogSize; }
204
209 const std::optional<MapMode>& GetPreferredMapMode() const { return aMetadata.maPreferredMapMode; }
210
212 sal_uInt16 GetBitsPerPixel() const { return aMetadata.mnBitsPerPixel; }
213
216
218 bool IsTransparent() const { return aMetadata.mbIsTransparent; }
219
221 bool IsAlpha() const { return aMetadata.mbIsAlpha; }
222
224 static OUString GetImportFormatShortName( GraphicFileFormat nFormat );
225};
226
229{
230public:
231 GraphicFilter( bool bUseConfig = true );
233
234 sal_uInt16 GetImportFormatCount() const;
235 sal_uInt16 GetImportFormatNumber( std::u16string_view rFormatName );
236 sal_uInt16 GetImportFormatNumberForShortName( std::u16string_view rShortName );
237 sal_uInt16 GetImportFormatNumberForTypeName( std::u16string_view rType );
238 OUString GetImportFormatName( sal_uInt16 nFormat );
239 OUString GetImportFormatTypeName( sal_uInt16 nFormat );
240#ifdef _WIN32
241 OUString GetImportFormatMediaType( sal_uInt16 nFormat );
242#endif
243 OUString GetImportFormatShortName( sal_uInt16 nFormat );
244 OUString GetImportWildcard( sal_uInt16 nFormat, sal_Int32 nEntry );
245
246 sal_uInt16 GetExportFormatCount() const;
247 sal_uInt16 GetExportFormatNumber( std::u16string_view rFormatName );
248 sal_uInt16 GetExportFormatNumberForMediaType( std::u16string_view rShortName );
249 sal_uInt16 GetExportFormatNumberForShortName( std::u16string_view rShortName );
250 OUString GetExportInternalFilterName( sal_uInt16 nFormat );
251 sal_uInt16 GetExportFormatNumberForTypeName( std::u16string_view rType );
252 OUString GetExportFormatName( sal_uInt16 nFormat );
253 OUString GetExportFormatMediaType( sal_uInt16 nFormat );
254 OUString GetExportFormatShortName( sal_uInt16 nFormat );
255 OUString GetExportWildcard( sal_uInt16 nFormat );
256 bool IsExportPixelFormat( sal_uInt16 nFormat );
257
258 ErrCode ExportGraphic( const Graphic& rGraphic, const INetURLObject& rPath,
259 sal_uInt16 nFormat,
260 const css::uno::Sequence< css::beans::PropertyValue >* pFilterData = nullptr );
261 ErrCode ExportGraphic( const Graphic& rGraphic, std::u16string_view rPath,
262 SvStream& rOStm, sal_uInt16 nFormat,
263 const css::uno::Sequence< css::beans::PropertyValue >* pFilterData = nullptr );
264
265 ErrCode CanImportGraphic( const INetURLObject& rPath,
266 sal_uInt16 nFormat,
267 sal_uInt16 * pDeterminedFormat);
268
269 ErrCode ImportGraphic( Graphic& rGraphic, const INetURLObject& rPath,
270 sal_uInt16 nFormat = GRFILTER_FORMAT_DONTKNOW,
271 sal_uInt16 * pDeterminedFormat = nullptr, GraphicFilterImportFlags nImportFlags = GraphicFilterImportFlags::NONE );
272
273 ErrCode CanImportGraphic( std::u16string_view rPath, SvStream& rStream,
274 sal_uInt16 nFormat,
275 sal_uInt16 * pDeterminedFormat);
276
277 ErrCode ImportGraphic( Graphic& rGraphic, std::u16string_view rPath,
278 SvStream& rStream,
279 sal_uInt16 nFormat = GRFILTER_FORMAT_DONTKNOW,
280 sal_uInt16 * pDeterminedFormat = nullptr, GraphicFilterImportFlags nImportFlags = GraphicFilterImportFlags::NONE );
281
285 void ImportGraphics(std::vector< std::shared_ptr<Graphic> >& rGraphics, std::vector< std::unique_ptr<SvStream> > vStreams);
286
291 void MakeGraphicsAvailableThreaded(std::vector< Graphic* >& rGraphics);
292
293 // Setting sizeLimit limits how much will be read from the stream.
294 Graphic ImportUnloadedGraphic(SvStream& rIStream, sal_uInt64 sizeLimit = 0, const Size* pSizeHint = nullptr);
295
296 const ErrCode& GetLastError() const { return *mxErrorEx;}
297 void ResetLastError();
298
299 Link<ConvertData&,bool> GetFilterCallback() const;
300 static GraphicFilter& GetGraphicFilter();
301 static ErrCode LoadGraphic( const OUString& rPath, const OUString& rFilter,
302 Graphic& rGraphic,
303 GraphicFilter* pFilter = nullptr,
304 sal_uInt16* pDeterminedFormat = nullptr );
305
306 ErrCode compressAsPNG(const Graphic& rGraphic, SvStream& rOutputStream);
307
308 static ErrCode readGIF(SvStream& rStream, Graphic& rGraphic, GfxLinkType& rLinkType);
309 static ErrCode readPNG(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType,
310 BinaryDataContainer & rpGraphicContent);
311 static ErrCode readJPEG(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType,
312 GraphicFilterImportFlags nImportFlags);
313 static ErrCode readSVG(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType,
314 BinaryDataContainer & rpGraphicContent);
315 static ErrCode readXBM(SvStream & rStream, Graphic & rGraphic);
316 static ErrCode readXPM(SvStream & rStream, Graphic & rGraphic);
317
318 static ErrCode readWMF_EMF(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType, VectorGraphicDataType eType);
319 static ErrCode readWMF(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
320 static ErrCode readEMF(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
321
322 static ErrCode readPDF(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
323 static ErrCode readTIFF(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
324 static ErrCode readWithTypeSerializer(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType, std::u16string_view aFilterName);
325 static ErrCode readBMP(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
326 static ErrCode readTGA(SvStream & rStream, Graphic & rGraphic);
327 static ErrCode readPICT(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
328 static ErrCode readMET(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
329 static ErrCode readRAS(SvStream & rStream, Graphic & rGraphic);
330 static ErrCode readPCX(SvStream & rStream, Graphic & rGraphic);
331 static ErrCode readEPS(SvStream & rStream, Graphic & rGraphic);
332 static ErrCode readPSD(SvStream & rStream, Graphic & rGraphic);
333 static ErrCode readPCD(SvStream & rStream, Graphic & rGraphic);
334 static ErrCode readPBM(SvStream & rStream, Graphic & rGraphic);
335 static ErrCode readDXF(SvStream & rStream, Graphic & rGraphic);
336 static ErrCode readWEBP(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType);
337
338private:
339 OUString aFilterPath;
341
342 void ImplInit();
343 ErrCode ImplSetError( ErrCode nError, const SvStream* pStm = nullptr );
344 ErrCode ImpTestOrFindFormat( std::u16string_view rPath, SvStream& rStream, sal_uInt16& rFormat );
345
346 DECL_DLLPRIVATE_LINK( FilterCallback, ConvertData&, bool );
347
349 std::optional<ErrCode> mxErrorEx;
351};
352
353#endif // INCLUDED_VCL_GRAPHICFILTER_HXX
354
355/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
GraphicFileFormat
Container for the binary data, whose responsibility is to manage the make it as simple as possible to...
Cache to keep list of graphic filters + the filters themselves.
const std::optional< MapMode > & GetPreferredMapMode() const
If available, this returns the map mode the graphic prefers, which may be other than pixel or 100th m...
sal_uInt8 GetNumberOfImageComponents() const
sal_uInt16 GetBitsPerPixel() const
GraphicDescriptor(const GraphicDescriptor &)=delete
bool IsAlpha() const
GraphicDescriptor & operator=(const GraphicDescriptor &)=delete
const std::optional< Size > & GetPreferredLogSize() const
Returns the logic size, according to the map mode available via GetPreferredMapMode().
const Size & GetSize_100TH_MM() const
GraphicMetadata aMetadata
bool IsTransparent() const
GraphicFileFormat GetFileFormat() const
const Size & GetSizePixel() const
Class to import and export graphic formats.
OUString aFilterPath
FilterConfigCache * pConfig
std::optional< ErrCode > mxErrorEx
Information about errors during the GraphicFilter operation.
const ErrCode & GetLastError() const
DECL_DLLPRIVATE_LINK(FilterCallback, ConvertData &, bool)
#define VCL_DLLPUBLIC
Definition: dllapi.h:29
float u
constexpr OUStringLiteral SVG_SHORTNAME
#define GRFILTER_FORMAT_DONTKNOW
constexpr OUStringLiteral MET_SHORTNAME
constexpr OUStringLiteral PCT_SHORTNAME
constexpr OUStringLiteral GIF_SHORTNAME
constexpr OUStringLiteral WEBP_SHORTNAME
constexpr OUStringLiteral TIF_SHORTNAME
constexpr OUStringLiteral WMF_SHORTNAME
constexpr OUStringLiteral BMP_SHORTNAME
GraphicFilterImportFlags
@ UseExistingBitmap
Read pixel data into an existing bitmap.
@ OnlyCreateBitmap
Only create a bitmap, do not read pixel data.
constexpr OUStringLiteral JPG_SHORTNAME
constexpr OUStringLiteral EMF_SHORTNAME
constexpr OUStringLiteral PDF_SHORTNAME
constexpr OUStringLiteral PNG_SHORTNAME
constexpr OUStringLiteral SVM_SHORTNAME
NONE
std::optional< Size > maPreferredLogSize
GraphicFileFormat mnFormat
sal_uInt16 mnBitsPerPixel
std::optional< MapMode > maPreferredMapMode
sal_uInt8 mnNumberOfImageComponents
unsigned char sal_uInt8
VectorGraphicDataType