Line data Source code
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 : #include <tools/stream.hxx>
21 : #include <vcl/svgdata.hxx>
22 : #include <comphelper/processfactory.hxx>
23 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
24 : #include <com/sun/star/graphic/XSvgParser.hpp>
25 : #include <com/sun/star/graphic/XPrimitive2DRenderer.hpp>
26 : #include <com/sun/star/rendering/XIntegerReadOnlyBitmap.hpp>
27 : #include <vcl/canvastools.hxx>
28 : #include <comphelper/seqstream.hxx>
29 : #include <vcl/svapp.hxx>
30 : #include <vcl/outdev.hxx>
31 :
32 : //////////////////////////////////////////////////////////////////////////////
33 :
34 : using namespace ::com::sun::star;
35 :
36 : //////////////////////////////////////////////////////////////////////////////
37 :
38 0 : void SvgData::ensureReplacement()
39 : {
40 0 : ensureSequenceAndRange();
41 :
42 0 : if(maReplacement.IsEmpty() && maSequence.hasElements())
43 : {
44 : // create replacement graphic from maSequence
45 : // create XPrimitive2DRenderer
46 0 : uno::Reference< lang::XMultiServiceFactory > xFactory(::comphelper::getProcessServiceFactory());
47 0 : const rtl::OUString aServiceName(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.graphic.Primitive2DTools"));
48 :
49 : try
50 : {
51 0 : const uno::Reference< graphic::XPrimitive2DRenderer > xPrimitive2DRenderer(xFactory->createInstance(aServiceName), uno::UNO_QUERY_THROW);
52 :
53 0 : if(xPrimitive2DRenderer.is())
54 : {
55 0 : uno::Sequence< beans::PropertyValue > aViewParameters;
56 0 : const basegfx::B2DRange& rRange(getRange());
57 0 : geometry::RealRectangle2D aRealRect;
58 :
59 0 : aRealRect.X1 = rRange.getMinX();
60 0 : aRealRect.Y1 = rRange.getMinY();
61 0 : aRealRect.X2 = rRange.getMaxX();
62 0 : aRealRect.Y2 = rRange.getMaxY();
63 :
64 : // get system DPI
65 0 : const Size aDPI(Application::GetDefaultDevice()->LogicToPixel(Size(1, 1), MAP_INCH));
66 :
67 : const uno::Reference< rendering::XBitmap > xBitmap(
68 0 : xPrimitive2DRenderer->rasterize(
69 : maSequence,
70 : aViewParameters,
71 0 : aDPI.getWidth(),
72 0 : aDPI.getHeight(),
73 : aRealRect,
74 0 : 500000));
75 :
76 0 : if(xBitmap.is())
77 : {
78 0 : const uno::Reference< rendering::XIntegerReadOnlyBitmap> xIntBmp(xBitmap, uno::UNO_QUERY_THROW);
79 :
80 0 : if(xIntBmp.is())
81 : {
82 0 : maReplacement = vcl::unotools::bitmapExFromXBitmap(xIntBmp);
83 0 : }
84 0 : }
85 0 : }
86 : }
87 0 : catch(const uno::Exception&)
88 : {
89 : OSL_ENSURE(sal_False, "Got no graphic::XPrimitive2DRenderer (!)" );
90 0 : }
91 : }
92 0 : }
93 :
94 : //////////////////////////////////////////////////////////////////////////////
95 :
96 0 : void SvgData::ensureSequenceAndRange()
97 : {
98 0 : if(!maSequence.hasElements() && mnSvgDataArrayLength)
99 : {
100 : // import SVG to maSequence, also set maRange
101 0 : maRange.reset();
102 :
103 : // create stream
104 0 : const uno::Sequence< sal_Int8 > aPostData((sal_Int8*)maSvgDataArray.get(), mnSvgDataArrayLength);
105 0 : const uno::Reference< io::XInputStream > myInputStream(new comphelper::SequenceInputStream(aPostData));
106 :
107 0 : if(myInputStream.is())
108 : {
109 : // create SVG interpreter
110 0 : uno::Reference< lang::XMultiServiceFactory > xFactory(::comphelper::getProcessServiceFactory());
111 0 : const rtl::OUString aServiceName(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.graphic.SvgTools"));
112 :
113 : try
114 : {
115 0 : const uno::Reference< graphic::XSvgParser > xSvgParser(xFactory->createInstance(aServiceName), uno::UNO_QUERY_THROW);
116 :
117 0 : if(xSvgParser.is())
118 : {
119 0 : maSequence = xSvgParser->getDecomposition(myInputStream, maPath);
120 0 : }
121 : }
122 0 : catch(const uno::Exception&)
123 : {
124 : OSL_ENSURE(sal_False, "Got no graphic::XSvgParser (!)" );
125 0 : }
126 : }
127 :
128 0 : if(maSequence.hasElements())
129 : {
130 0 : const sal_Int32 nCount(maSequence.getLength());
131 0 : geometry::RealRectangle2D aRealRect;
132 0 : uno::Sequence< beans::PropertyValue > aViewParameters;
133 :
134 0 : for(sal_Int32 a(0L); a < nCount; a++)
135 : {
136 : // get reference
137 0 : const Primitive2DReference xReference(maSequence[a]);
138 :
139 0 : if(xReference.is())
140 : {
141 0 : aRealRect = xReference->getRange(aViewParameters);
142 :
143 : maRange.expand(
144 : basegfx::B2DRange(
145 : aRealRect.X1,
146 : aRealRect.Y1,
147 : aRealRect.X2,
148 0 : aRealRect.Y2));
149 : }
150 0 : }
151 0 : }
152 : }
153 0 : }
154 :
155 : //////////////////////////////////////////////////////////////////////////////
156 :
157 0 : SvgData::SvgData(const SvgDataArray& rSvgDataArray, sal_uInt32 nSvgDataArrayLength, const rtl::OUString& rPath)
158 : : maSvgDataArray(rSvgDataArray),
159 : mnSvgDataArrayLength(nSvgDataArrayLength),
160 : maPath(rPath),
161 : maRange(),
162 : maSequence(),
163 0 : maReplacement()
164 : {
165 0 : }
166 :
167 : //////////////////////////////////////////////////////////////////////////////
168 0 : SvgData::SvgData(const OUString& rPath):
169 : maSvgDataArray(NULL),
170 : mnSvgDataArrayLength(0),
171 : maPath(rPath),
172 : maRange(),
173 : maSequence(),
174 0 : maReplacement()
175 : {
176 0 : SvFileStream rIStm(rPath, STREAM_STD_READ);
177 0 : if(rIStm.GetError())
178 0 : return;
179 0 : const sal_uInt32 nStmPos(rIStm.Tell());
180 0 : const sal_uInt32 nStmLen(rIStm.Seek(STREAM_SEEK_TO_END) - nStmPos);
181 0 : if(nStmLen)
182 : {
183 0 : SvgDataArray aNewData(new sal_uInt8[nStmLen]);
184 0 : rIStm.Seek(nStmPos);
185 0 : rIStm.Read(aNewData.get(), nStmLen);
186 :
187 0 : if(!rIStm.GetError())
188 : {
189 0 : maSvgDataArray = aNewData;
190 0 : mnSvgDataArrayLength = nStmLen;
191 0 : }
192 0 : }
193 : }
194 :
195 : //////////////////////////////////////////////////////////////////////////////
196 :
197 0 : const basegfx::B2DRange& SvgData::getRange() const
198 : {
199 0 : const_cast< SvgData* >(this)->ensureSequenceAndRange();
200 :
201 0 : return maRange;
202 : }
203 :
204 : //////////////////////////////////////////////////////////////////////////////
205 :
206 0 : const Primitive2DSequence& SvgData::getPrimitive2DSequence() const
207 : {
208 0 : const_cast< SvgData* >(this)->ensureSequenceAndRange();
209 :
210 0 : return maSequence;
211 : }
212 :
213 : //////////////////////////////////////////////////////////////////////////////
214 :
215 0 : const BitmapEx& SvgData::getReplacement() const
216 : {
217 0 : const_cast< SvgData* >(this)->ensureReplacement();
218 :
219 0 : return maReplacement;
220 : }
221 :
222 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|