LibreOffice Module svx (master) 1
xoutbmp.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_SVX_XOUTBMP_HXX
21#define INCLUDED_SVX_XOUTBMP_HXX
22
23#include <vcl/graph.hxx>
25#include <com/sun/star/uno/Sequence.h>
26#include <com/sun/star/beans/PropertyValue.hpp>
27#include <svx/svxdllapi.h>
29#include <vcl/salctype.hxx>
30
31
32enum class XOutFlags {
33 NONE = 0x00000000,
34 MirrorHorz = 0x00000001,
35 MirrorVert = 0x00000010,
36 DontAddExtension = 0x00000008,
37 DontExpandFilename = 0x00010000,
38 UseGifIfPossible = 0x00020000,
39 UseGifIfSensible = 0x00040000,
40 UseNativeIfPossible = 0x00080000,
41};
42namespace o3tl {
43 template<> struct typed_flags<XOutFlags> : is_typed_flags<XOutFlags, 0x000f0019> {};
44}
45
46class GraphicFilter;
47class VirtualDevice;
48class INetURLObject;
49namespace tools {
50 class Polygon;
51}
52
54{
55public:
56
57 static Graphic MirrorGraphic( const Graphic& rGraphic, const BmpMirrorFlags nMirrorFlags );
58 static Animation MirrorAnimation( const Animation& rAnimation, bool bHMirr, bool bVMirr );
59 static ErrCode WriteGraphic( const Graphic& rGraphic, OUString& rFileName,
60 const OUString& rFilterName, const XOutFlags nFlags,
61 const Size* pMtfSize_100TH_MM = nullptr,
62 const css::uno::Sequence< css::beans::PropertyValue >* pFilterData = nullptr,
63 OUString* pMediaType = nullptr );
64 static bool GraphicToBase64(const Graphic& rGraphic, OUString& rOUString,
65 bool bAddPrefix = true,
66 ConvertDataFormat aTargetFormat = ConvertDataFormat::Unknown);
67
68 static ErrCode ExportGraphic( const Graphic& rGraphic, const INetURLObject& rURL,
69 GraphicFilter& rFilter, const sal_uInt16 nFormat,
70 const css::uno::Sequence< css::beans::PropertyValue >* pFilterData );
71};
72
73#endif // INCLUDED_SVX_XOUTBMP_HXX
74
75/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
BmpMirrorFlags
NONE
ConvertDataFormat
#define SVXCORE_DLLPUBLIC
Definition: svxdllapi.h:35
XOutFlags
Definition: xoutbmp.hxx:32
@ DontAddExtension
@ DontExpandFilename
@ UseNativeIfPossible
@ UseGifIfSensible
@ UseGifIfPossible