blob: bdc612fae6d1608e0203d9134da7bef5934d20a0 [file] [log] [blame]
bungeman@google.comb29c8832011-10-10 13:19:10 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef UNICODE
9#define UNICODE
10#endif
11#ifndef _UNICODE
12#define _UNICODE
13#endif
14#include "SkTypes.h"
15#include <ObjBase.h>
16#include <XpsObjectModel.h>
17#include <T2EmbApi.h>
18#include <FontSub.h>
19
20#include "SkColor.h"
21#include "SkConstexprMath.h"
22#include "SkData.h"
23#include "SkDraw.h"
24#include "SkDrawProcs.h"
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +000025#include "SkEndian.h"
bungeman@google.comb29c8832011-10-10 13:19:10 +000026#include "SkFontHost.h"
27#include "SkGlyphCache.h"
28#include "SkHRESULT.h"
29#include "SkImageEncoder.h"
30#include "SkIStream.h"
31#include "SkMaskFilter.h"
32#include "SkPaint.h"
33#include "SkPoint.h"
34#include "SkRasterizer.h"
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +000035#include "SkSFNTHeader.h"
bungeman@google.comb29c8832011-10-10 13:19:10 +000036#include "SkShader.h"
37#include "SkSize.h"
38#include "SkStream.h"
39#include "SkTDArray.h"
40#include "SkTLazy.h"
41#include "SkTScopedComPtr.h"
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +000042#include "SkTTCFHeader.h"
reed@google.com398de9a2013-03-21 21:43:51 +000043#include "SkTypefacePriv.h"
bungeman@google.comb29c8832011-10-10 13:19:10 +000044#include "SkUtils.h"
45#include "SkXPSDevice.h"
46
47//Windows defines a FLOAT type,
48//make it clear when converting a scalar that this is what is wanted.
49#define SkScalarToFLOAT(n) SkScalarToFloat(n)
50
51//Dummy representation of a GUID from create_id.
52#define L_GUID_ID L"XXXXXXXXsXXXXsXXXXsXXXXsXXXXXXXXXXXX"
53//Length of GUID representation from create_id, including NULL terminator.
54#define GUID_ID_LEN SK_ARRAY_COUNT(L_GUID_ID)
55
56/**
57 Formats a GUID and places it into buffer.
58 buffer should have space for at least GUID_ID_LEN wide characters.
59 The string will always be wchar null terminated.
60 XXXXXXXXsXXXXsXXXXsXXXXsXXXXXXXXXXXX0
61 @return -1 if there was an error, > 0 if success.
62 */
63static int format_guid(const GUID& guid,
64 wchar_t* buffer, size_t bufferSize,
65 wchar_t sep = '-') {
66 SkASSERT(bufferSize >= GUID_ID_LEN);
67 return swprintf_s(buffer,
68 bufferSize,
69 L"%08lX%c%04X%c%04X%c%02X%02X%c%02X%02X%02X%02X%02X%02X",
70 guid.Data1,
71 sep,
72 guid.Data2,
73 sep,
74 guid.Data3,
75 sep,
76 guid.Data4[0],
77 guid.Data4[1],
78 sep,
79 guid.Data4[2],
80 guid.Data4[3],
81 guid.Data4[4],
82 guid.Data4[5],
83 guid.Data4[6],
84 guid.Data4[7]);
85}
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +000086
bungeman@google.comb29c8832011-10-10 13:19:10 +000087/**
88 Creates a GUID based id and places it into buffer.
89 buffer should have space for at least GUID_ID_LEN wide characters.
90 The string will always be wchar null terminated.
91 XXXXXXXXsXXXXsXXXXsXXXXsXXXXXXXXXXXX0
92 The string may begin with a digit,
93 and so may not be suitable as a bare resource key.
94 */
95static HRESULT create_id(wchar_t* buffer, size_t bufferSize,
96 wchar_t sep = '-') {
97 GUID guid = {};
98 HRM(CoCreateGuid(&guid), "Could not create GUID for id.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +000099
bungeman@google.comb29c8832011-10-10 13:19:10 +0000100 if (format_guid(guid, buffer, bufferSize, sep) == -1) {
101 HRM(E_UNEXPECTED, "Could not format GUID into id.");
102 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000103
bungeman@google.comb29c8832011-10-10 13:19:10 +0000104 return S_OK;
105}
106
107static SkBitmap make_fake_bitmap(int width, int height) {
108 SkBitmap bitmap;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000109 bitmap.setInfo(SkImageInfo::MakeUnknown(width, height));
bungeman@google.comb29c8832011-10-10 13:19:10 +0000110 return bitmap;
111}
112
reed@google.com900ecf22014-02-20 20:55:37 +0000113// TODO: should inherit from SkBaseDevice instead of SkBitmapDevice...
bungeman@google.comb29c8832011-10-10 13:19:10 +0000114SkXPSDevice::SkXPSDevice()
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000115 : SkBitmapDevice(make_fake_bitmap(10000, 10000))
bungeman@google.comb29c8832011-10-10 13:19:10 +0000116 , fCurrentPage(0) {
117}
118
119SkXPSDevice::~SkXPSDevice() {
120}
121
122SkXPSDevice::TypefaceUse::TypefaceUse()
123 : typefaceId(0xffffffff)
124 , fontData(NULL)
125 , xpsFont(NULL)
126 , glyphsUsed(NULL) {
127}
128
129SkXPSDevice::TypefaceUse::~TypefaceUse() {
130 //xpsFont owns fontData ref
131 this->xpsFont->Release();
132 delete this->glyphsUsed;
133}
134
135bool SkXPSDevice::beginPortfolio(SkWStream* outputStream) {
136 if (!this->fAutoCo.succeeded()) return false;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000137
bungeman@google.comb29c8832011-10-10 13:19:10 +0000138 //Create XPS Factory.
139 HRBM(CoCreateInstance(
140 CLSID_XpsOMObjectFactory,
141 NULL,
142 CLSCTX_INPROC_SERVER,
143 IID_PPV_ARGS(&this->fXpsFactory)),
144 "Could not create XPS factory.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000145
bungeman@google.comb29c8832011-10-10 13:19:10 +0000146 HRBM(SkWIStream::CreateFromSkWStream(outputStream, &this->fOutputStream),
147 "Could not convert SkStream to IStream.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000148
bungeman@google.comb29c8832011-10-10 13:19:10 +0000149 return true;
150}
151
152bool SkXPSDevice::beginSheet(
153 const SkVector& unitsPerMeter,
154 const SkVector& pixelsPerMeter,
155 const SkSize& trimSize,
156 const SkRect* mediaBox,
157 const SkRect* bleedBox,
158 const SkRect* artBox,
159 const SkRect* cropBox) {
160 ++this->fCurrentPage;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000161
bungeman@google.comb29c8832011-10-10 13:19:10 +0000162 //For simplicity, just write everything out in geometry units,
163 //then have a base canvas do the scale to physical units.
164 this->fCurrentCanvasSize = trimSize;
165 this->fCurrentUnitsPerMeter = unitsPerMeter;
166 this->fCurrentPixelsPerMeter = pixelsPerMeter;
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000167
bungeman@google.comb29c8832011-10-10 13:19:10 +0000168 this->fCurrentXpsCanvas.reset();
169 HRBM(this->fXpsFactory->CreateCanvas(&this->fCurrentXpsCanvas),
170 "Could not create base canvas.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000171
bungeman@google.comb29c8832011-10-10 13:19:10 +0000172 return true;
173}
174
175HRESULT SkXPSDevice::createXpsThumbnail(IXpsOMPage* page,
176 const unsigned int pageNum,
177 IXpsOMImageResource** image) {
178 SkTScopedComPtr<IXpsOMThumbnailGenerator> thumbnailGenerator;
179 HRM(CoCreateInstance(
180 CLSID_XpsOMThumbnailGenerator,
181 NULL,
182 CLSCTX_INPROC_SERVER,
183 IID_PPV_ARGS(&thumbnailGenerator)),
184 "Could not create thumbnail generator.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000185
bungeman@google.comb29c8832011-10-10 13:19:10 +0000186 SkTScopedComPtr<IOpcPartUri> partUri;
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000187 static const size_t size = SkTUMax<
bungeman@google.comb29c8832011-10-10 13:19:10 +0000188 SK_ARRAY_COUNT(L"/Documents/1/Metadata/.png") + SK_DIGITS_IN(pageNum),
189 SK_ARRAY_COUNT(L"/Metadata/" L_GUID_ID L".png")
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000190 >::value;
bungeman@google.comb29c8832011-10-10 13:19:10 +0000191 wchar_t buffer[size];
192 if (pageNum > 0) {
193 swprintf_s(buffer, size, L"/Documents/1/Metadata/%u.png", pageNum);
194 } else {
195 wchar_t id[GUID_ID_LEN];
196 HR(create_id(id, GUID_ID_LEN));
197 swprintf_s(buffer, size, L"/Metadata/%s.png", id);
198 }
199 HRM(this->fXpsFactory->CreatePartUri(buffer, &partUri),
200 "Could not create thumbnail part uri.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000201
bungeman@google.comb29c8832011-10-10 13:19:10 +0000202 HRM(thumbnailGenerator->GenerateThumbnail(page,
203 XPS_IMAGE_TYPE_PNG,
204 XPS_THUMBNAIL_SIZE_LARGE,
205 partUri.get(),
206 image),
207 "Could not generate thumbnail.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000208
bungeman@google.comb29c8832011-10-10 13:19:10 +0000209 return S_OK;
210}
211
212HRESULT SkXPSDevice::createXpsPage(const XPS_SIZE& pageSize,
213 IXpsOMPage** page) {
214 static const size_t size = SK_ARRAY_COUNT(L"/Documents/1/Pages/.fpage")
215 + SK_DIGITS_IN(fCurrentPage);
216 wchar_t buffer[size];
217 swprintf_s(buffer, size, L"/Documents/1/Pages/%u.fpage",
218 this->fCurrentPage);
219 SkTScopedComPtr<IOpcPartUri> partUri;
220 HRM(this->fXpsFactory->CreatePartUri(buffer, &partUri),
221 "Could not create page part uri.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000222
bungeman@google.comb29c8832011-10-10 13:19:10 +0000223 //If the language is unknown, use "und" (XPS Spec 2.3.5.1).
224 HRM(this->fXpsFactory->CreatePage(&pageSize,
225 L"und",
226 partUri.get(),
227 page),
228 "Could not create page.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000229
bungeman@google.comb29c8832011-10-10 13:19:10 +0000230 return S_OK;
231}
232
233HRESULT SkXPSDevice::initXpsDocumentWriter(IXpsOMImageResource* image) {
234 //Create package writer.
235 {
236 SkTScopedComPtr<IOpcPartUri> partUri;
237 HRM(this->fXpsFactory->CreatePartUri(L"/FixedDocumentSequence.fdseq",
238 &partUri),
239 "Could not create document sequence part uri.");
240 HRM(this->fXpsFactory->CreatePackageWriterOnStream(
241 this->fOutputStream.get(),
242 TRUE,
243 XPS_INTERLEAVING_OFF, //XPS_INTERLEAVING_ON,
244 partUri.get(),
245 NULL,
246 image,
247 NULL,
248 NULL,
249 &this->fPackageWriter),
250 "Could not create package writer.");
251 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000252
bungeman@google.comb29c8832011-10-10 13:19:10 +0000253 //Begin the lone document.
254 {
255 SkTScopedComPtr<IOpcPartUri> partUri;
256 HRM(this->fXpsFactory->CreatePartUri(
257 L"/Documents/1/FixedDocument.fdoc",
258 &partUri),
259 "Could not create fixed document part uri.");
260 HRM(this->fPackageWriter->StartNewDocument(partUri.get(),
261 NULL,
262 NULL,
263 NULL,
264 NULL),
265 "Could not start document.");
266 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000267
bungeman@google.comb29c8832011-10-10 13:19:10 +0000268 return S_OK;
269}
270
271bool SkXPSDevice::endSheet() {
272 //XPS is fixed at 96dpi (XPS Spec 11.1).
273 static const float xpsDPI = 96.0f;
274 static const float inchesPerMeter = 10000.0f / 254.0f;
275 static const float targetUnitsPerMeter = xpsDPI * inchesPerMeter;
276 const float scaleX = targetUnitsPerMeter
277 / SkScalarToFLOAT(this->fCurrentUnitsPerMeter.fX);
278 const float scaleY = targetUnitsPerMeter
279 / SkScalarToFLOAT(this->fCurrentUnitsPerMeter.fY);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000280
bungeman@google.comb29c8832011-10-10 13:19:10 +0000281 //Create the scale canvas.
282 SkTScopedComPtr<IXpsOMCanvas> scaleCanvas;
283 HRBM(this->fXpsFactory->CreateCanvas(&scaleCanvas),
284 "Could not create scale canvas.");
285 SkTScopedComPtr<IXpsOMVisualCollection> scaleCanvasVisuals;
286 HRBM(scaleCanvas->GetVisuals(&scaleCanvasVisuals),
287 "Could not get scale canvas visuals.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000288
bungeman@google.comb29c8832011-10-10 13:19:10 +0000289 SkTScopedComPtr<IXpsOMMatrixTransform> geomToPhys;
290 XPS_MATRIX rawGeomToPhys = { scaleX, 0, 0, scaleY, 0, 0, };
291 HRBM(this->fXpsFactory->CreateMatrixTransform(&rawGeomToPhys, &geomToPhys),
292 "Could not create geometry to physical transform.");
293 HRBM(scaleCanvas->SetTransformLocal(geomToPhys.get()),
294 "Could not set transform on scale canvas.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000295
bungeman@google.comb29c8832011-10-10 13:19:10 +0000296 //Add the content canvas to the scale canvas.
297 HRBM(scaleCanvasVisuals->Append(this->fCurrentXpsCanvas.get()),
298 "Could not add base canvas to scale canvas.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000299
bungeman@google.comb29c8832011-10-10 13:19:10 +0000300 //Create the page.
301 XPS_SIZE pageSize = {
302 SkScalarToFLOAT(this->fCurrentCanvasSize.width()) * scaleX,
303 SkScalarToFLOAT(this->fCurrentCanvasSize.height()) * scaleY,
304 };
305 SkTScopedComPtr<IXpsOMPage> page;
306 HRB(this->createXpsPage(pageSize, &page));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000307
bungeman@google.comb29c8832011-10-10 13:19:10 +0000308 SkTScopedComPtr<IXpsOMVisualCollection> pageVisuals;
309 HRBM(page->GetVisuals(&pageVisuals), "Could not get page visuals.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000310
bungeman@google.comb29c8832011-10-10 13:19:10 +0000311 //Add the scale canvas to the page.
312 HRBM(pageVisuals->Append(scaleCanvas.get()),
313 "Could not add scale canvas to page.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000314
bungeman@google.comb29c8832011-10-10 13:19:10 +0000315 //Create the package writer if it hasn't been created yet.
316 if (NULL == this->fPackageWriter.get()) {
317 SkTScopedComPtr<IXpsOMImageResource> image;
318 //Ignore return, thumbnail is completely optional.
319 this->createXpsThumbnail(page.get(), 0, &image);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000320
bungeman@google.comb29c8832011-10-10 13:19:10 +0000321 HRB(this->initXpsDocumentWriter(image.get()));
322 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000323
bungeman@google.comb29c8832011-10-10 13:19:10 +0000324 HRBM(this->fPackageWriter->AddPage(page.get(),
325 &pageSize,
326 NULL,
327 NULL,
328 NULL,
329 NULL),
330 "Could not write the page.");
331 this->fCurrentXpsCanvas.reset();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000332
bungeman@google.comb29c8832011-10-10 13:19:10 +0000333 return true;
334}
335
336static HRESULT subset_typeface(SkXPSDevice::TypefaceUse* current) {
337 //CreateFontPackage wants unsigned short.
338 //Microsoft, Y U NO stdint.h?
339 SkTDArray<unsigned short> keepList;
340 current->glyphsUsed->exportTo(&keepList);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000341
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000342 int ttcCount = (current->ttcIndex + 1);
343
bungeman@google.comb29c8832011-10-10 13:19:10 +0000344 //The following are declared with the types required by CreateFontPackage.
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000345 unsigned char *fontPackageBufferRaw = NULL;
346 unsigned long fontPackageBufferSize;
347 unsigned long bytesWritten;
bungeman@google.comb29c8832011-10-10 13:19:10 +0000348 unsigned long result = CreateFontPackage(
349 (unsigned char *) current->fontData->getMemoryBase(),
350 (unsigned long) current->fontData->getLength(),
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000351 &fontPackageBufferRaw,
352 &fontPackageBufferSize,
353 &bytesWritten,
354 TTFCFP_FLAGS_SUBSET | TTFCFP_FLAGS_GLYPHLIST | (ttcCount > 0 ? TTFCFP_FLAGS_TTC : 0),
355 current->ttcIndex,
bungeman@google.comb29c8832011-10-10 13:19:10 +0000356 TTFCFP_SUBSET,
357 0,
358 0,
359 0,
360 keepList.begin(),
361 keepList.count(),
362 sk_malloc_throw,
363 sk_realloc_throw,
364 sk_free,
365 NULL);
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000366 SkAutoTMalloc<unsigned char> fontPackageBuffer(fontPackageBufferRaw);
bungeman@google.comb29c8832011-10-10 13:19:10 +0000367 if (result != NO_ERROR) {
368 SkDEBUGF(("CreateFontPackage Error %lu", result));
369 return E_UNEXPECTED;
370 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000371
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000372 // If it was originally a ttc, keep it a ttc.
373 // CreateFontPackage over-allocates, realloc usually decreases the size substantially.
374 size_t extra;
375 if (ttcCount > 0) {
376 // Create space for a ttc header.
377 extra = sizeof(SkTTCFHeader) + (ttcCount * sizeof(SK_OT_ULONG));
378 fontPackageBuffer.realloc(bytesWritten + extra);
379 //overlap is certain, use memmove
380 memmove(fontPackageBuffer.get() + extra, fontPackageBuffer.get(), bytesWritten);
381
382 // Write the ttc header.
383 SkTTCFHeader* ttcfHeader = reinterpret_cast<SkTTCFHeader*>(fontPackageBuffer.get());
384 ttcfHeader->ttcTag = SkTTCFHeader::TAG;
385 ttcfHeader->version = SkTTCFHeader::version_1;
386 ttcfHeader->numOffsets = SkEndian_SwapBE32(ttcCount);
387 SK_OT_ULONG* offsetPtr = SkTAfter<SK_OT_ULONG>(ttcfHeader);
388 for (int i = 0; i < ttcCount; ++i, ++offsetPtr) {
389 *offsetPtr = SkEndian_SwapBE32(extra);
390 }
391
392 // Fix up offsets in sfnt table entries.
393 SkSFNTHeader* sfntHeader = SkTAddOffset<SkSFNTHeader>(fontPackageBuffer.get(), extra);
394 int numTables = SkEndian_SwapBE16(sfntHeader->numTables);
395 SkSFNTHeader::TableDirectoryEntry* tableDirectory =
396 SkTAfter<SkSFNTHeader::TableDirectoryEntry>(sfntHeader);
397 for (int i = 0; i < numTables; ++i, ++tableDirectory) {
398 tableDirectory->offset = SkEndian_SwapBE32(
399 SkEndian_SwapBE32(tableDirectory->offset) + extra);
400 }
401 } else {
402 extra = 0;
403 fontPackageBuffer.realloc(bytesWritten);
404 }
405
406 SkAutoTUnref<SkMemoryStream> newStream(new SkMemoryStream());
407 newStream->setMemoryOwned(fontPackageBuffer.detach(), bytesWritten + extra);
408
bungeman@google.comb29c8832011-10-10 13:19:10 +0000409 SkTScopedComPtr<IStream> newIStream;
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +0000410 SkIStream::CreateFromSkStream(newStream.detach(), true, &newIStream);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000411
bungeman@google.comb29c8832011-10-10 13:19:10 +0000412 XPS_FONT_EMBEDDING embedding;
413 HRM(current->xpsFont->GetEmbeddingOption(&embedding),
414 "Could not get embedding option from font.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000415
bungeman@google.comb29c8832011-10-10 13:19:10 +0000416 SkTScopedComPtr<IOpcPartUri> partUri;
417 HRM(current->xpsFont->GetPartName(&partUri),
418 "Could not get part uri from font.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000419
bungeman@google.comb29c8832011-10-10 13:19:10 +0000420 HRM(current->xpsFont->SetContent(
421 newIStream.get(),
422 embedding,
423 partUri.get()),
424 "Could not set new stream for subsetted font.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000425
bungeman@google.comb29c8832011-10-10 13:19:10 +0000426 return S_OK;
427}
428
429bool SkXPSDevice::endPortfolio() {
430 //Subset fonts
431 if (!this->fTypefaces.empty()) {
432 SkXPSDevice::TypefaceUse* current = &this->fTypefaces.front();
433 const TypefaceUse* last = &this->fTypefaces.back();
434 for (; current <= last; ++current) {
435 //Ignore return for now, if it didn't subset, let it be.
436 subset_typeface(current);
437 }
438 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000439
bungeman@google.comb29c8832011-10-10 13:19:10 +0000440 HRBM(this->fPackageWriter->Close(), "Could not close writer.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000441
bungeman@google.comb29c8832011-10-10 13:19:10 +0000442 return true;
443}
444
445static XPS_COLOR xps_color(const SkColor skColor) {
446 //XPS uses non-pre-multiplied alpha (XPS Spec 11.4).
447 XPS_COLOR xpsColor;
448 xpsColor.colorType = XPS_COLOR_TYPE_SRGB;
449 xpsColor.value.sRGB.alpha = SkColorGetA(skColor);
450 xpsColor.value.sRGB.red = SkColorGetR(skColor);
451 xpsColor.value.sRGB.green = SkColorGetG(skColor);
452 xpsColor.value.sRGB.blue = SkColorGetB(skColor);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000453
bungeman@google.comb29c8832011-10-10 13:19:10 +0000454 return xpsColor;
455}
456
457static XPS_POINT xps_point(const SkPoint& point) {
458 XPS_POINT xpsPoint = {
459 SkScalarToFLOAT(point.fX),
460 SkScalarToFLOAT(point.fY),
461 };
462 return xpsPoint;
463}
464
465static XPS_POINT xps_point(const SkPoint& point, const SkMatrix& matrix) {
466 SkPoint skTransformedPoint;
467 matrix.mapXY(point.fX, point.fY, &skTransformedPoint);
468 return xps_point(skTransformedPoint);
469}
470
471static XPS_SPREAD_METHOD xps_spread_method(SkShader::TileMode tileMode) {
472 switch (tileMode) {
473 case SkShader::kClamp_TileMode:
474 return XPS_SPREAD_METHOD_PAD;
475 case SkShader::kRepeat_TileMode:
476 return XPS_SPREAD_METHOD_REPEAT;
477 case SkShader::kMirror_TileMode:
478 return XPS_SPREAD_METHOD_REFLECT;
479 default:
mtklein@google.com330313a2013-08-22 15:37:26 +0000480 SkDEBUGFAIL("Unknown tile mode.");
bungeman@google.comb29c8832011-10-10 13:19:10 +0000481 }
482 return XPS_SPREAD_METHOD_PAD;
483}
484
485static void transform_offsets(SkScalar* stopOffsets, const int numOffsets,
486 const SkPoint& start, const SkPoint& end,
487 const SkMatrix& transform) {
488 SkPoint startTransformed;
489 transform.mapXY(start.fX, start.fY, &startTransformed);
490 SkPoint endTransformed;
491 transform.mapXY(end.fX, end.fY, &endTransformed);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000492
bungeman@google.comb29c8832011-10-10 13:19:10 +0000493 //Manhattan distance between transformed start and end.
494 SkScalar startToEnd = (endTransformed.fX - startTransformed.fX)
495 + (endTransformed.fY - startTransformed.fY);
496 if (SkScalarNearlyZero(startToEnd)) {
497 for (int i = 0; i < numOffsets; ++i) {
498 stopOffsets[i] = 0;
499 }
500 return;
501 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000502
bungeman@google.comb29c8832011-10-10 13:19:10 +0000503 for (int i = 0; i < numOffsets; ++i) {
504 SkPoint stop;
505 stop.fX = SkScalarMul(end.fX - start.fX, stopOffsets[i]);
506 stop.fY = SkScalarMul(end.fY - start.fY, stopOffsets[i]);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000507
bungeman@google.comb29c8832011-10-10 13:19:10 +0000508 SkPoint stopTransformed;
509 transform.mapXY(stop.fX, stop.fY, &stopTransformed);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000510
bungeman@google.comb29c8832011-10-10 13:19:10 +0000511 //Manhattan distance between transformed start and stop.
512 SkScalar startToStop = (stopTransformed.fX - startTransformed.fX)
513 + (stopTransformed.fY - startTransformed.fY);
514 //Percentage along transformed line.
515 stopOffsets[i] = SkScalarDiv(startToStop, startToEnd);
516 }
517}
518
519HRESULT SkXPSDevice::createXpsTransform(const SkMatrix& matrix,
520 IXpsOMMatrixTransform** xpsTransform) {
521 SkScalar affine[6];
522 if (!matrix.asAffine(affine)) {
523 *xpsTransform = NULL;
524 return S_FALSE;
525 }
526 XPS_MATRIX rawXpsMatrix = {
527 SkScalarToFLOAT(affine[SkMatrix::kAScaleX]),
528 SkScalarToFLOAT(affine[SkMatrix::kASkewY]),
529 SkScalarToFLOAT(affine[SkMatrix::kASkewX]),
530 SkScalarToFLOAT(affine[SkMatrix::kAScaleY]),
531 SkScalarToFLOAT(affine[SkMatrix::kATransX]),
532 SkScalarToFLOAT(affine[SkMatrix::kATransY]),
533 };
534 HRM(this->fXpsFactory->CreateMatrixTransform(&rawXpsMatrix, xpsTransform),
535 "Could not create transform.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000536
bungeman@google.comb29c8832011-10-10 13:19:10 +0000537 return S_OK;
538}
539
540HRESULT SkXPSDevice::createPath(IXpsOMGeometryFigure* figure,
541 IXpsOMVisualCollection* visuals,
542 IXpsOMPath** path) {
543 SkTScopedComPtr<IXpsOMGeometry> geometry;
544 HRM(this->fXpsFactory->CreateGeometry(&geometry),
545 "Could not create geometry.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000546
bungeman@google.comb29c8832011-10-10 13:19:10 +0000547 SkTScopedComPtr<IXpsOMGeometryFigureCollection> figureCollection;
548 HRM(geometry->GetFigures(&figureCollection), "Could not get figures.");
549 HRM(figureCollection->Append(figure), "Could not add figure.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000550
bungeman@google.comb29c8832011-10-10 13:19:10 +0000551 HRM(this->fXpsFactory->CreatePath(path), "Could not create path.");
552 HRM((*path)->SetGeometryLocal(geometry.get()), "Could not set geometry");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000553
bungeman@google.comb29c8832011-10-10 13:19:10 +0000554 HRM(visuals->Append(*path), "Could not add path to visuals.");
555 return S_OK;
556}
557
558HRESULT SkXPSDevice::createXpsSolidColorBrush(const SkColor skColor,
559 const SkAlpha alpha,
560 IXpsOMBrush** xpsBrush) {
561 XPS_COLOR xpsColor = xps_color(skColor);
562 SkTScopedComPtr<IXpsOMSolidColorBrush> solidBrush;
563 HRM(this->fXpsFactory->CreateSolidColorBrush(&xpsColor, NULL, &solidBrush),
564 "Could not create solid color brush.");
565 HRM(solidBrush->SetOpacity(alpha / 255.0f), "Could not set opacity.");
566 HRM(solidBrush->QueryInterface<IXpsOMBrush>(xpsBrush), "QI Fail.");
567 return S_OK;
568}
569
570HRESULT SkXPSDevice::sideOfClamp(const SkRect& areaToFill,
571 const XPS_RECT& imageViewBox,
572 IXpsOMImageResource* image,
573 IXpsOMVisualCollection* visuals) {
574 SkTScopedComPtr<IXpsOMGeometryFigure> areaToFillFigure;
575 HR(this->createXpsRect(areaToFill, FALSE, TRUE, &areaToFillFigure));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000576
bungeman@google.comb29c8832011-10-10 13:19:10 +0000577 SkTScopedComPtr<IXpsOMPath> areaToFillPath;
578 HR(this->createPath(areaToFillFigure.get(), visuals, &areaToFillPath));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000579
bungeman@google.comb29c8832011-10-10 13:19:10 +0000580 SkTScopedComPtr<IXpsOMImageBrush> areaToFillBrush;
581 HRM(this->fXpsFactory->CreateImageBrush(image,
582 &imageViewBox,
583 &imageViewBox,
584 &areaToFillBrush),
585 "Could not create brush for side of clamp.");
586 HRM(areaToFillBrush->SetTileMode(XPS_TILE_MODE_FLIPXY),
587 "Could not set tile mode for side of clamp.");
588 HRM(areaToFillPath->SetFillBrushLocal(areaToFillBrush.get()),
589 "Could not set brush for side of clamp");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000590
bungeman@google.comb29c8832011-10-10 13:19:10 +0000591 return S_OK;
592}
593
594HRESULT SkXPSDevice::cornerOfClamp(const SkRect& areaToFill,
595 const SkColor color,
596 IXpsOMVisualCollection* visuals) {
597 SkTScopedComPtr<IXpsOMGeometryFigure> areaToFillFigure;
598 HR(this->createXpsRect(areaToFill, FALSE, TRUE, &areaToFillFigure));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000599
bungeman@google.comb29c8832011-10-10 13:19:10 +0000600 SkTScopedComPtr<IXpsOMPath> areaToFillPath;
601 HR(this->createPath(areaToFillFigure.get(), visuals, &areaToFillPath));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000602
bungeman@google.comb29c8832011-10-10 13:19:10 +0000603 SkTScopedComPtr<IXpsOMBrush> areaToFillBrush;
604 HR(this->createXpsSolidColorBrush(color, 0xFF, &areaToFillBrush));
605 HRM(areaToFillPath->SetFillBrushLocal(areaToFillBrush.get()),
606 "Could not set brush for corner of clamp.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000607
bungeman@google.comb29c8832011-10-10 13:19:10 +0000608 return S_OK;
609}
610
611static const XPS_TILE_MODE XTM_N = XPS_TILE_MODE_NONE;
612static const XPS_TILE_MODE XTM_T = XPS_TILE_MODE_TILE;
613static const XPS_TILE_MODE XTM_X = XPS_TILE_MODE_FLIPX;
614static const XPS_TILE_MODE XTM_Y = XPS_TILE_MODE_FLIPY;
615static const XPS_TILE_MODE XTM_XY = XPS_TILE_MODE_FLIPXY;
616
617//TODO(bungeman): In the future, should skia add None,
618//handle None+Mirror and None+Repeat correctly.
619//None is currently an internal hack so masks don't repeat (None+None only).
620static XPS_TILE_MODE SkToXpsTileMode[SkShader::kTileModeCount+1]
621 [SkShader::kTileModeCount+1] = {
622 //Clamp //Repeat //Mirror //None
623/*Clamp */ XTM_N, XTM_T, XTM_Y, XTM_N,
624/*Repeat*/ XTM_T, XTM_T, XTM_Y, XTM_N,
625/*Mirror*/ XTM_X, XTM_X, XTM_XY, XTM_X,
626/*None */ XTM_N, XTM_N, XTM_Y, XTM_N,
627};
628
629HRESULT SkXPSDevice::createXpsImageBrush(
630 const SkBitmap& bitmap,
631 const SkMatrix& localMatrix,
632 const SkShader::TileMode (&xy)[2],
633 const SkAlpha alpha,
634 IXpsOMTileBrush** xpsBrush) {
635 SkDynamicMemoryWStream write;
636 if (!SkImageEncoder::EncodeStream(&write, bitmap,
637 SkImageEncoder::kPNG_Type, 100)) {
638 HRM(E_FAIL, "Unable to encode bitmap as png.");
639 }
640 SkMemoryStream* read = new SkMemoryStream;
641 read->setData(write.copyToData())->unref();
642 SkTScopedComPtr<IStream> readWrapper;
643 HRM(SkIStream::CreateFromSkStream(read, true, &readWrapper),
644 "Could not create stream from png data.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000645
bungeman@google.comb29c8832011-10-10 13:19:10 +0000646 const size_t size =
647 SK_ARRAY_COUNT(L"/Documents/1/Resources/Images/" L_GUID_ID L".png");
648 wchar_t buffer[size];
649 wchar_t id[GUID_ID_LEN];
650 HR(create_id(id, GUID_ID_LEN));
651 swprintf_s(buffer, size, L"/Documents/1/Resources/Images/%s.png", id);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000652
bungeman@google.comb29c8832011-10-10 13:19:10 +0000653 SkTScopedComPtr<IOpcPartUri> imagePartUri;
654 HRM(this->fXpsFactory->CreatePartUri(buffer, &imagePartUri),
655 "Could not create image part uri.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000656
bungeman@google.comb29c8832011-10-10 13:19:10 +0000657 SkTScopedComPtr<IXpsOMImageResource> imageResource;
658 HRM(this->fXpsFactory->CreateImageResource(
659 readWrapper.get(),
660 XPS_IMAGE_TYPE_PNG,
661 imagePartUri.get(),
662 &imageResource),
663 "Could not create image resource.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000664
bungeman@google.comb29c8832011-10-10 13:19:10 +0000665 XPS_RECT bitmapRect = {
666 0.0, 0.0,
667 static_cast<FLOAT>(bitmap.width()), static_cast<FLOAT>(bitmap.height())
668 };
669 SkTScopedComPtr<IXpsOMImageBrush> xpsImageBrush;
670 HRM(this->fXpsFactory->CreateImageBrush(imageResource.get(),
671 &bitmapRect, &bitmapRect,
672 &xpsImageBrush),
673 "Could not create image brush.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000674
bungeman@google.comb29c8832011-10-10 13:19:10 +0000675 if (SkShader::kClamp_TileMode != xy[0] &&
676 SkShader::kClamp_TileMode != xy[1]) {
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000677
bungeman@google.comb29c8832011-10-10 13:19:10 +0000678 HRM(xpsImageBrush->SetTileMode(SkToXpsTileMode[xy[0]][xy[1]]),
679 "Could not set image tile mode");
680 HRM(xpsImageBrush->SetOpacity(alpha / 255.0f),
681 "Could not set image opacity.");
682 HRM(xpsImageBrush->QueryInterface(xpsBrush), "QI failed.");
683 } else {
684 //TODO(bungeman): compute how big this really needs to be.
685 const SkScalar BIG = SkIntToScalar(1000); //SK_ScalarMax;
686 const FLOAT BIG_F = SkScalarToFLOAT(BIG);
687 const SkScalar bWidth = SkIntToScalar(bitmap.width());
688 const SkScalar bHeight = SkIntToScalar(bitmap.height());
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000689
bungeman@google.comb29c8832011-10-10 13:19:10 +0000690 //create brush canvas
691 SkTScopedComPtr<IXpsOMCanvas> brushCanvas;
692 HRM(this->fXpsFactory->CreateCanvas(&brushCanvas),
693 "Could not create image brush canvas.");
694 SkTScopedComPtr<IXpsOMVisualCollection> brushVisuals;
695 HRM(brushCanvas->GetVisuals(&brushVisuals),
696 "Could not get image brush canvas visuals collection.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000697
bungeman@google.comb29c8832011-10-10 13:19:10 +0000698 //create central figure
699 const SkRect bitmapPoints = SkRect::MakeLTRB(0, 0, bWidth, bHeight);
700 SkTScopedComPtr<IXpsOMGeometryFigure> centralFigure;
701 HR(this->createXpsRect(bitmapPoints, FALSE, TRUE, &centralFigure));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000702
bungeman@google.comb29c8832011-10-10 13:19:10 +0000703 SkTScopedComPtr<IXpsOMPath> centralPath;
704 HR(this->createPath(centralFigure.get(),
705 brushVisuals.get(),
706 &centralPath));
707 HRM(xpsImageBrush->SetTileMode(XPS_TILE_MODE_FLIPXY),
708 "Could not set tile mode for image brush central path.");
709 HRM(centralPath->SetFillBrushLocal(xpsImageBrush.get()),
710 "Could not set fill brush for image brush central path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000711
bungeman@google.comb29c8832011-10-10 13:19:10 +0000712 //add left/right
713 if (SkShader::kClamp_TileMode == xy[0]) {
714 SkRect leftArea = SkRect::MakeLTRB(-BIG, 0, 0, bHeight);
715 XPS_RECT leftImageViewBox = {
716 0.0, 0.0,
717 1.0, static_cast<FLOAT>(bitmap.height()),
718 };
719 HR(this->sideOfClamp(leftArea, leftImageViewBox,
720 imageResource.get(),
721 brushVisuals.get()));
722
723 SkRect rightArea = SkRect::MakeLTRB(bWidth, 0, BIG, bHeight);
724 XPS_RECT rightImageViewBox = {
725 bitmap.width() - 1.0f, 0.0f,
726 1.0f, static_cast<FLOAT>(bitmap.height()),
727 };
728 HR(this->sideOfClamp(rightArea, rightImageViewBox,
729 imageResource.get(),
730 brushVisuals.get()));
731 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000732
bungeman@google.comb29c8832011-10-10 13:19:10 +0000733 //add top/bottom
734 if (SkShader::kClamp_TileMode == xy[1]) {
735 SkRect topArea = SkRect::MakeLTRB(0, -BIG, bWidth, 0);
736 XPS_RECT topImageViewBox = {
737 0.0, 0.0,
738 static_cast<FLOAT>(bitmap.width()), 1.0,
739 };
740 HR(this->sideOfClamp(topArea, topImageViewBox,
741 imageResource.get(),
742 brushVisuals.get()));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000743
bungeman@google.comb29c8832011-10-10 13:19:10 +0000744 SkRect bottomArea = SkRect::MakeLTRB(0, bHeight, bWidth, BIG);
745 XPS_RECT bottomImageViewBox = {
746 0.0f, bitmap.height() - 1.0f,
747 static_cast<FLOAT>(bitmap.width()), 1.0f,
748 };
749 HR(this->sideOfClamp(bottomArea, bottomImageViewBox,
750 imageResource.get(),
751 brushVisuals.get()));
752 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000753
bungeman@google.comb29c8832011-10-10 13:19:10 +0000754 //add tl, tr, bl, br
755 if (SkShader::kClamp_TileMode == xy[0] &&
756 SkShader::kClamp_TileMode == xy[1]) {
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000757
bungeman@google.comb29c8832011-10-10 13:19:10 +0000758 SkAutoLockPixels alp(bitmap);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000759
bungeman@google.comb29c8832011-10-10 13:19:10 +0000760 const SkColor tlColor = bitmap.getColor(0,0);
761 const SkRect tlArea = SkRect::MakeLTRB(-BIG, -BIG, 0, 0);
762 HR(this->cornerOfClamp(tlArea, tlColor, brushVisuals.get()));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000763
bungeman@google.comb29c8832011-10-10 13:19:10 +0000764 const SkColor trColor = bitmap.getColor(bitmap.width()-1,0);
765 const SkRect trArea = SkRect::MakeLTRB(bWidth, -BIG, BIG, 0);
766 HR(this->cornerOfClamp(trArea, trColor, brushVisuals.get()));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000767
bungeman@google.comb29c8832011-10-10 13:19:10 +0000768 const SkColor brColor = bitmap.getColor(bitmap.width()-1,
769 bitmap.height()-1);
770 const SkRect brArea = SkRect::MakeLTRB(bWidth, bHeight, BIG, BIG);
771 HR(this->cornerOfClamp(brArea, brColor, brushVisuals.get()));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000772
bungeman@google.comb29c8832011-10-10 13:19:10 +0000773 const SkColor blColor = bitmap.getColor(0,bitmap.height()-1);
774 const SkRect blArea = SkRect::MakeLTRB(-BIG, bHeight, 0, BIG);
775 HR(this->cornerOfClamp(blArea, blColor, brushVisuals.get()));
776 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000777
bungeman@google.comb29c8832011-10-10 13:19:10 +0000778 //create visual brush from canvas
779 XPS_RECT bound = {};
780 if (SkShader::kClamp_TileMode == xy[0] &&
781 SkShader::kClamp_TileMode == xy[1]) {
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000782
bungeman@google.comb29c8832011-10-10 13:19:10 +0000783 bound.x = BIG_F / -2;
784 bound.y = BIG_F / -2;
785 bound.width = BIG_F;
786 bound.height = BIG_F;
787 } else if (SkShader::kClamp_TileMode == xy[0]) {
788 bound.x = BIG_F / -2;
789 bound.y = 0.0f;
790 bound.width = BIG_F;
791 bound.height = static_cast<FLOAT>(bitmap.height());
792 } else if (SkShader::kClamp_TileMode == xy[1]) {
793 bound.x = 0;
794 bound.y = BIG_F / -2;
795 bound.width = static_cast<FLOAT>(bitmap.width());
796 bound.height = BIG_F;
797 }
798 SkTScopedComPtr<IXpsOMVisualBrush> clampBrush;
799 HRM(this->fXpsFactory->CreateVisualBrush(&bound, &bound, &clampBrush),
800 "Could not create visual brush for image brush.");
801 HRM(clampBrush->SetVisualLocal(brushCanvas.get()),
802 "Could not set canvas on visual brush for image brush.");
803 HRM(clampBrush->SetTileMode(SkToXpsTileMode[xy[0]][xy[1]]),
804 "Could not set tile mode on visual brush for image brush.");
805 HRM(clampBrush->SetOpacity(alpha / 255.0f),
806 "Could not set opacity on visual brush for image brush.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000807
bungeman@google.comb29c8832011-10-10 13:19:10 +0000808 HRM(clampBrush->QueryInterface(xpsBrush), "QI failed.");
809 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000810
bungeman@google.comb29c8832011-10-10 13:19:10 +0000811 SkTScopedComPtr<IXpsOMMatrixTransform> xpsMatrixToUse;
812 HR(this->createXpsTransform(localMatrix, &xpsMatrixToUse));
813 if (NULL != xpsMatrixToUse.get()) {
814 HRM((*xpsBrush)->SetTransformLocal(xpsMatrixToUse.get()),
815 "Could not set transform for image brush.");
816 } else {
817 //TODO(bungeman): perspective bitmaps in general.
818 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000819
bungeman@google.comb29c8832011-10-10 13:19:10 +0000820 return S_OK;
821}
822
823HRESULT SkXPSDevice::createXpsGradientStop(const SkColor skColor,
824 const SkScalar offset,
825 IXpsOMGradientStop** xpsGradStop) {
826 XPS_COLOR gradStopXpsColor = xps_color(skColor);
827 HRM(this->fXpsFactory->CreateGradientStop(&gradStopXpsColor,
828 NULL,
829 SkScalarToFLOAT(offset),
830 xpsGradStop),
831 "Could not create gradient stop.");
832 return S_OK;
833}
834
835HRESULT SkXPSDevice::createXpsLinearGradient(SkShader::GradientInfo info,
836 const SkAlpha alpha,
837 const SkMatrix& localMatrix,
838 IXpsOMMatrixTransform* xpsMatrix,
839 IXpsOMBrush** xpsBrush) {
840 XPS_POINT startPoint;
841 XPS_POINT endPoint;
842 if (NULL != xpsMatrix) {
843 startPoint = xps_point(info.fPoint[0]);
844 endPoint = xps_point(info.fPoint[1]);
845 } else {
846 transform_offsets(info.fColorOffsets, info.fColorCount,
847 info.fPoint[0], info.fPoint[1],
848 localMatrix);
849 startPoint = xps_point(info.fPoint[0], localMatrix);
850 endPoint = xps_point(info.fPoint[1], localMatrix);
851 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000852
bungeman@google.comb29c8832011-10-10 13:19:10 +0000853 SkTScopedComPtr<IXpsOMGradientStop> gradStop0;
854 HR(createXpsGradientStop(info.fColors[0],
855 info.fColorOffsets[0],
856 &gradStop0));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000857
bungeman@google.comb29c8832011-10-10 13:19:10 +0000858 SkTScopedComPtr<IXpsOMGradientStop> gradStop1;
859 HR(createXpsGradientStop(info.fColors[1],
860 info.fColorOffsets[1],
861 &gradStop1));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000862
bungeman@google.comb29c8832011-10-10 13:19:10 +0000863 SkTScopedComPtr<IXpsOMLinearGradientBrush> gradientBrush;
864 HRM(this->fXpsFactory->CreateLinearGradientBrush(gradStop0.get(),
865 gradStop1.get(),
866 &startPoint,
867 &endPoint,
868 &gradientBrush),
869 "Could not create linear gradient brush.");
870 if (NULL != xpsMatrix) {
871 HRM(gradientBrush->SetTransformLocal(xpsMatrix),
872 "Could not set transform on linear gradient brush.");
873 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000874
bungeman@google.comb29c8832011-10-10 13:19:10 +0000875 SkTScopedComPtr<IXpsOMGradientStopCollection> gradStopCollection;
876 HRM(gradientBrush->GetGradientStops(&gradStopCollection),
877 "Could not get linear gradient stop collection.");
878 for (int i = 2; i < info.fColorCount; ++i) {
879 SkTScopedComPtr<IXpsOMGradientStop> gradStop;
880 HR(createXpsGradientStop(info.fColors[i],
881 info.fColorOffsets[i],
882 &gradStop));
883 HRM(gradStopCollection->Append(gradStop.get()),
884 "Could not add linear gradient stop.");
885 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000886
bungeman@google.comb29c8832011-10-10 13:19:10 +0000887 HRM(gradientBrush->SetSpreadMethod(xps_spread_method(info.fTileMode)),
888 "Could not set spread method of linear gradient.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000889
bungeman@google.comb29c8832011-10-10 13:19:10 +0000890 HRM(gradientBrush->SetOpacity(alpha / 255.0f),
891 "Could not set opacity of linear gradient brush.");
892 HRM(gradientBrush->QueryInterface<IXpsOMBrush>(xpsBrush), "QI failed");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000893
bungeman@google.comb29c8832011-10-10 13:19:10 +0000894 return S_OK;
895}
896
897HRESULT SkXPSDevice::createXpsRadialGradient(SkShader::GradientInfo info,
898 const SkAlpha alpha,
899 const SkMatrix& localMatrix,
900 IXpsOMMatrixTransform* xpsMatrix,
901 IXpsOMBrush** xpsBrush) {
902 SkTScopedComPtr<IXpsOMGradientStop> gradStop0;
903 HR(createXpsGradientStop(info.fColors[0],
904 info.fColorOffsets[0],
905 &gradStop0));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000906
bungeman@google.comb29c8832011-10-10 13:19:10 +0000907 SkTScopedComPtr<IXpsOMGradientStop> gradStop1;
908 HR(createXpsGradientStop(info.fColors[1],
909 info.fColorOffsets[1],
910 &gradStop1));
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000911
bungeman@google.comb29c8832011-10-10 13:19:10 +0000912 //TODO: figure out how to fake better if not affine
913 XPS_POINT centerPoint;
914 XPS_POINT gradientOrigin;
915 XPS_SIZE radiiSizes;
916 if (NULL != xpsMatrix) {
917 centerPoint = xps_point(info.fPoint[0]);
918 gradientOrigin = xps_point(info.fPoint[0]);
919 radiiSizes.width = SkScalarToFLOAT(info.fRadius[0]);
920 radiiSizes.height = SkScalarToFLOAT(info.fRadius[0]);
921 } else {
922 centerPoint = xps_point(info.fPoint[0], localMatrix);
923 gradientOrigin = xps_point(info.fPoint[0], localMatrix);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000924
bungeman@google.comb29c8832011-10-10 13:19:10 +0000925 SkScalar radius = info.fRadius[0];
926 SkVector vec[2];
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000927
bungeman@google.comb29c8832011-10-10 13:19:10 +0000928 vec[0].set(radius, 0);
929 vec[1].set(0, radius);
930 localMatrix.mapVectors(vec, 2);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000931
bungeman@google.comb29c8832011-10-10 13:19:10 +0000932 SkScalar d0 = vec[0].length();
933 SkScalar d1 = vec[1].length();
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000934
bungeman@google.comb29c8832011-10-10 13:19:10 +0000935 radiiSizes.width = SkScalarToFLOAT(d0);
936 radiiSizes.height = SkScalarToFLOAT(d1);
937 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000938
bungeman@google.comb29c8832011-10-10 13:19:10 +0000939 SkTScopedComPtr<IXpsOMRadialGradientBrush> gradientBrush;
940 HRM(this->fXpsFactory->CreateRadialGradientBrush(gradStop0.get(),
941 gradStop1.get(),
942 &centerPoint,
943 &gradientOrigin,
944 &radiiSizes,
945 &gradientBrush),
946 "Could not create radial gradient brush.");
947 if (NULL != xpsMatrix) {
948 HRM(gradientBrush->SetTransformLocal(xpsMatrix),
949 "Could not set transform on radial gradient brush.");
950 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000951
bungeman@google.comb29c8832011-10-10 13:19:10 +0000952 SkTScopedComPtr<IXpsOMGradientStopCollection> gradStopCollection;
953 HRM(gradientBrush->GetGradientStops(&gradStopCollection),
954 "Could not get radial gradient stop collection.");
955 for (int i = 2; i < info.fColorCount; ++i) {
956 SkTScopedComPtr<IXpsOMGradientStop> gradStop;
957 HR(createXpsGradientStop(info.fColors[i],
958 info.fColorOffsets[i],
959 &gradStop));
960 HRM(gradStopCollection->Append(gradStop.get()),
961 "Could not add radial gradient stop.");
962 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000963
bungeman@google.comb29c8832011-10-10 13:19:10 +0000964 HRM(gradientBrush->SetSpreadMethod(xps_spread_method(info.fTileMode)),
965 "Could not set spread method of radial gradient.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000966
bungeman@google.comb29c8832011-10-10 13:19:10 +0000967 HRM(gradientBrush->SetOpacity(alpha / 255.0f),
968 "Could not set opacity of radial gradient brush.");
969 HRM(gradientBrush->QueryInterface<IXpsOMBrush>(xpsBrush), "QI failed.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000970
bungeman@google.comb29c8832011-10-10 13:19:10 +0000971 return S_OK;
972}
973
974HRESULT SkXPSDevice::createXpsBrush(const SkPaint& skPaint,
975 IXpsOMBrush** brush,
976 const SkMatrix* parentTransform) {
977 const SkShader *shader = skPaint.getShader();
978 if (NULL == shader) {
979 HR(this->createXpsSolidColorBrush(skPaint.getColor(), 0xFF, brush));
980 return S_OK;
981 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000982
bungeman@google.comb29c8832011-10-10 13:19:10 +0000983 //Gradient shaders.
984 SkShader::GradientInfo info;
985 info.fColorCount = 0;
986 info.fColors = NULL;
987 info.fColorOffsets = NULL;
988 SkShader::GradientType gradientType = shader->asAGradient(&info);
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000989
bungeman@google.comb29c8832011-10-10 13:19:10 +0000990 if (SkShader::kNone_GradientType == gradientType) {
991 //Nothing to see, move along.
vandebo@chromium.org74b46192012-01-28 01:45:11 +0000992
bungeman@google.comb29c8832011-10-10 13:19:10 +0000993 } else if (SkShader::kColor_GradientType == gradientType) {
994 SkASSERT(1 == info.fColorCount);
995 SkColor color;
996 info.fColors = &color;
bsalomon@google.comb58a6392013-03-21 20:29:05 +0000997 shader->asAGradient(&info);
bungeman@google.comb29c8832011-10-10 13:19:10 +0000998 SkAlpha alpha = skPaint.getAlpha();
999 HR(this->createXpsSolidColorBrush(color, alpha, brush));
1000 return S_OK;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001001
bungeman@google.comb29c8832011-10-10 13:19:10 +00001002 } else {
1003 if (info.fColorCount == 0) {
1004 const SkColor color = skPaint.getColor();
1005 HR(this->createXpsSolidColorBrush(color, 0xFF, brush));
1006 return S_OK;
1007 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001008
bungeman@google.comb29c8832011-10-10 13:19:10 +00001009 SkAutoTArray<SkColor> colors(info.fColorCount);
1010 SkAutoTArray<SkScalar> colorOffsets(info.fColorCount);
1011 info.fColors = colors.get();
1012 info.fColorOffsets = colorOffsets.get();
1013 shader->asAGradient(&info);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001014
bungeman@google.comb29c8832011-10-10 13:19:10 +00001015 if (1 == info.fColorCount) {
1016 SkColor color = info.fColors[0];
1017 SkAlpha alpha = skPaint.getAlpha();
1018 HR(this->createXpsSolidColorBrush(color, alpha, brush));
1019 return S_OK;
1020 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001021
bsalomon@google.comf94b3a42012-10-31 18:09:01 +00001022 SkMatrix localMatrix = shader->getLocalMatrix();
bungeman@google.comb29c8832011-10-10 13:19:10 +00001023 if (NULL != parentTransform) {
1024 localMatrix.preConcat(*parentTransform);
1025 }
1026 SkTScopedComPtr<IXpsOMMatrixTransform> xpsMatrixToUse;
1027 HR(this->createXpsTransform(localMatrix, &xpsMatrixToUse));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001028
bungeman@google.comb29c8832011-10-10 13:19:10 +00001029 if (SkShader::kLinear_GradientType == gradientType) {
1030 HR(this->createXpsLinearGradient(info,
1031 skPaint.getAlpha(),
1032 localMatrix,
1033 xpsMatrixToUse.get(),
1034 brush));
1035 return S_OK;
1036 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001037
bungeman@google.comb29c8832011-10-10 13:19:10 +00001038 if (SkShader::kRadial_GradientType == gradientType) {
1039 HR(this->createXpsRadialGradient(info,
1040 skPaint.getAlpha(),
1041 localMatrix,
1042 xpsMatrixToUse.get(),
1043 brush));
1044 return S_OK;
1045 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001046
reed@google.com83226972012-06-07 20:26:47 +00001047 if (SkShader::kRadial2_GradientType == gradientType ||
1048 SkShader::kConical_GradientType == gradientType) {
bungeman@google.comb29c8832011-10-10 13:19:10 +00001049 //simple if affine and one is 0, otherwise will have to fake
1050 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001051
bungeman@google.comb29c8832011-10-10 13:19:10 +00001052 if (SkShader::kSweep_GradientType == gradientType) {
1053 //have to fake
1054 }
1055 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001056
bungeman@google.comb29c8832011-10-10 13:19:10 +00001057 SkBitmap outTexture;
1058 SkMatrix outMatrix;
1059 SkShader::TileMode xy[2];
bungeman@google.comb29c8832011-10-10 13:19:10 +00001060 SkShader::BitmapType bitmapType = shader->asABitmap(&outTexture,
1061 &outMatrix,
rileya@google.com91f319c2012-07-25 17:18:31 +00001062 xy);
bungeman@google.comb29c8832011-10-10 13:19:10 +00001063 switch (bitmapType) {
1064 case SkShader::kNone_BitmapType:
1065 break;
1066 case SkShader::kDefault_BitmapType: {
1067 //TODO: outMatrix??
bsalomon@google.comf94b3a42012-10-31 18:09:01 +00001068 SkMatrix localMatrix = shader->getLocalMatrix();
bungeman@google.comb29c8832011-10-10 13:19:10 +00001069 if (NULL != parentTransform) {
1070 localMatrix.preConcat(*parentTransform);
1071 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001072
bungeman@google.comb29c8832011-10-10 13:19:10 +00001073 SkTScopedComPtr<IXpsOMTileBrush> tileBrush;
1074 HR(this->createXpsImageBrush(outTexture,
1075 localMatrix,
1076 xy,
1077 skPaint.getAlpha(),
1078 &tileBrush));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001079
bungeman@google.comb29c8832011-10-10 13:19:10 +00001080 HRM(tileBrush->QueryInterface<IXpsOMBrush>(brush), "QI failed.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001081
bungeman@google.comb29c8832011-10-10 13:19:10 +00001082 return S_OK;
1083 }
1084 case SkShader::kRadial_BitmapType:
1085 case SkShader::kSweep_BitmapType:
1086 case SkShader::kTwoPointRadial_BitmapType:
1087 default:
1088 break;
1089 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001090
bungeman@google.comb29c8832011-10-10 13:19:10 +00001091 HR(this->createXpsSolidColorBrush(skPaint.getColor(), 0xFF, brush));
1092 return S_OK;
1093}
1094
1095static bool rect_must_be_pathed(const SkPaint& paint, const SkMatrix& matrix) {
1096 const bool zeroWidth = (0 == paint.getStrokeWidth());
1097 const bool stroke = (SkPaint::kFill_Style != paint.getStyle());
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001098
bungeman@google.comb29c8832011-10-10 13:19:10 +00001099 return paint.getPathEffect() ||
1100 paint.getMaskFilter() ||
1101 paint.getRasterizer() ||
1102 (stroke && (
1103 (matrix.hasPerspective() && !zeroWidth) ||
1104 SkPaint::kMiter_Join != paint.getStrokeJoin() ||
1105 (SkPaint::kMiter_Join == paint.getStrokeJoin() &&
1106 paint.getStrokeMiter() < SK_ScalarSqrt2)
1107 ))
1108 ;
1109}
1110
1111HRESULT SkXPSDevice::createXpsRect(const SkRect& rect, BOOL stroke, BOOL fill,
1112 IXpsOMGeometryFigure** xpsRect) {
1113 const SkPoint points[4] = {
1114 { rect.fLeft, rect.fTop },
1115 { rect.fRight, rect.fTop },
1116 { rect.fRight, rect.fBottom },
1117 { rect.fLeft, rect.fBottom },
1118 };
1119 return this->createXpsQuad(points, stroke, fill, xpsRect);
1120}
1121HRESULT SkXPSDevice::createXpsQuad(const SkPoint (&points)[4],
1122 BOOL stroke, BOOL fill,
1123 IXpsOMGeometryFigure** xpsQuad) {
1124 // Define the start point.
1125 XPS_POINT startPoint = xps_point(points[0]);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001126
bungeman@google.comb29c8832011-10-10 13:19:10 +00001127 // Create the figure.
1128 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint, xpsQuad),
1129 "Could not create quad geometry figure.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001130
bungeman@google.comb29c8832011-10-10 13:19:10 +00001131 // Define the type of each segment.
1132 XPS_SEGMENT_TYPE segmentTypes[3] = {
1133 XPS_SEGMENT_TYPE_LINE,
1134 XPS_SEGMENT_TYPE_LINE,
1135 XPS_SEGMENT_TYPE_LINE,
1136 };
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001137
bungeman@google.comb29c8832011-10-10 13:19:10 +00001138 // Define the x and y coordinates of each corner of the figure.
1139 FLOAT segmentData[6] = {
1140 SkScalarToFLOAT(points[1].fX), SkScalarToFLOAT(points[1].fY),
1141 SkScalarToFLOAT(points[2].fX), SkScalarToFLOAT(points[2].fY),
1142 SkScalarToFLOAT(points[3].fX), SkScalarToFLOAT(points[3].fY),
1143 };
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001144
bungeman@google.comb29c8832011-10-10 13:19:10 +00001145 // Describe if the segments are stroked.
1146 BOOL segmentStrokes[3] = {
1147 stroke, stroke, stroke,
1148 };
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001149
bungeman@google.comb29c8832011-10-10 13:19:10 +00001150 // Add the segment data to the figure.
1151 HRM((*xpsQuad)->SetSegments(
1152 3, 6,
1153 segmentTypes , segmentData, segmentStrokes),
1154 "Could not add segment data to quad.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001155
bungeman@google.comb29c8832011-10-10 13:19:10 +00001156 // Set the closed and filled properties of the figure.
1157 HRM((*xpsQuad)->SetIsClosed(stroke), "Could not set quad close.");
1158 HRM((*xpsQuad)->SetIsFilled(fill), "Could not set quad fill.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001159
bungeman@google.comb29c8832011-10-10 13:19:10 +00001160 return S_OK;
1161}
1162
1163void SkXPSDevice::clear(SkColor color) {
1164 //TODO: override this for XPS
1165 SkDEBUGF(("XPS clear not yet implemented."));
1166}
1167
1168void SkXPSDevice::drawPoints(const SkDraw& d, SkCanvas::PointMode mode,
1169 size_t count, const SkPoint points[],
1170 const SkPaint& paint) {
1171 //This will call back into the device to do the drawing.
1172 d.drawPoints(mode, count, points, paint, true);
1173}
1174
1175void SkXPSDevice::drawVertices(const SkDraw&, SkCanvas::VertexMode,
1176 int vertexCount, const SkPoint verts[],
1177 const SkPoint texs[], const SkColor colors[],
1178 SkXfermode* xmode, const uint16_t indices[],
1179 int indexCount, const SkPaint& paint) {
1180 //TODO: override this for XPS
1181 SkDEBUGF(("XPS drawVertices not yet implemented."));
1182}
1183
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001184void SkXPSDevice::drawPaint(const SkDraw& d, const SkPaint& origPaint) {
bungeman@google.comb29c8832011-10-10 13:19:10 +00001185 const SkRect r = SkRect::MakeSize(this->fCurrentCanvasSize);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001186
bungeman@google.comb29c8832011-10-10 13:19:10 +00001187 //If trying to paint with a stroke, ignore that and fill.
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001188 SkPaint* fillPaint = const_cast<SkPaint*>(&origPaint);
1189 SkTCopyOnFirstWrite<SkPaint> paint(origPaint);
1190 if (paint->getStyle() != SkPaint::kFill_Style) {
1191 paint.writable()->setStyle(SkPaint::kFill_Style);
bungeman@google.comb29c8832011-10-10 13:19:10 +00001192 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001193
bungeman@google.comb29c8832011-10-10 13:19:10 +00001194 this->internalDrawRect(d, r, false, *fillPaint);
1195}
1196
1197void SkXPSDevice::drawRect(const SkDraw& d,
1198 const SkRect& r,
1199 const SkPaint& paint) {
1200 this->internalDrawRect(d, r, true, paint);
1201}
1202
scroggo@google.comcac8d012013-11-12 17:10:02 +00001203void SkXPSDevice::drawRRect(const SkDraw& d,
1204 const SkRRect& rr,
1205 const SkPaint& paint) {
1206 SkPath path;
1207 path.addRRect(rr);
1208 this->drawPath(d, path, paint, NULL, true);
1209}
1210
bungeman@google.comb29c8832011-10-10 13:19:10 +00001211void SkXPSDevice::internalDrawRect(const SkDraw& d,
1212 const SkRect& r,
1213 bool transformRect,
1214 const SkPaint& paint) {
1215 //Exit early if there is nothing to draw.
1216 if (d.fClip->isEmpty() ||
1217 (paint.getAlpha() == 0 && paint.getXfermode() == NULL)) {
1218 return;
1219 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001220
bungeman@google.comb29c8832011-10-10 13:19:10 +00001221 //Path the rect if we can't optimize it.
1222 if (rect_must_be_pathed(paint, *d.fMatrix)) {
1223 SkPath tmp;
1224 tmp.addRect(r);
1225 tmp.setFillType(SkPath::kWinding_FillType);
1226 this->drawPath(d, tmp, paint, NULL, true);
1227 return;
1228 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001229
bungeman@google.comb29c8832011-10-10 13:19:10 +00001230 //Create the shaded path.
1231 SkTScopedComPtr<IXpsOMPath> shadedPath;
1232 HRVM(this->fXpsFactory->CreatePath(&shadedPath),
1233 "Could not create shaded path for rect.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001234
bungeman@google.comb29c8832011-10-10 13:19:10 +00001235 //Create the shaded geometry.
1236 SkTScopedComPtr<IXpsOMGeometry> shadedGeometry;
1237 HRVM(this->fXpsFactory->CreateGeometry(&shadedGeometry),
1238 "Could not create shaded geometry for rect.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001239
bungeman@google.comb29c8832011-10-10 13:19:10 +00001240 //Add the geometry to the shaded path.
1241 HRVM(shadedPath->SetGeometryLocal(shadedGeometry.get()),
1242 "Could not set shaded geometry for rect.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001243
bungeman@google.comb29c8832011-10-10 13:19:10 +00001244 //Set the brushes.
1245 BOOL fill = FALSE;
1246 BOOL stroke = FALSE;
1247 HRV(this->shadePath(shadedPath.get(), paint, *d.fMatrix, &fill, &stroke));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001248
bungeman@google.comb29c8832011-10-10 13:19:10 +00001249 bool xpsTransformsPath = true;
1250 //Transform the geometry.
1251 if (transformRect && xpsTransformsPath) {
1252 SkTScopedComPtr<IXpsOMMatrixTransform> xpsTransform;
1253 HRV(this->createXpsTransform(*d.fMatrix, &xpsTransform));
1254 if (xpsTransform.get()) {
1255 HRVM(shadedGeometry->SetTransformLocal(xpsTransform.get()),
1256 "Could not set transform for rect.");
1257 } else {
1258 xpsTransformsPath = false;
1259 }
1260 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001261
bungeman@google.comb29c8832011-10-10 13:19:10 +00001262 //Create the figure.
1263 SkTScopedComPtr<IXpsOMGeometryFigure> rectFigure;
1264 {
1265 SkPoint points[4] = {
1266 { r.fLeft, r.fTop },
1267 { r.fLeft, r.fBottom },
1268 { r.fRight, r.fBottom },
1269 { r.fRight, r.fTop },
1270 };
1271 if (!xpsTransformsPath && transformRect) {
1272 d.fMatrix->mapPoints(points, SK_ARRAY_COUNT(points));
1273 }
1274 HRV(this->createXpsQuad(points, stroke, fill, &rectFigure));
1275 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001276
bungeman@google.comb29c8832011-10-10 13:19:10 +00001277 //Get the figures of the shaded geometry.
1278 SkTScopedComPtr<IXpsOMGeometryFigureCollection> shadedFigures;
1279 HRVM(shadedGeometry->GetFigures(&shadedFigures),
1280 "Could not get shaded figures for rect.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001281
bungeman@google.comb29c8832011-10-10 13:19:10 +00001282 //Add the figure to the shaded geometry figures.
1283 HRVM(shadedFigures->Append(rectFigure.get()),
1284 "Could not add shaded figure for rect.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001285
bungeman@google.comb29c8832011-10-10 13:19:10 +00001286 HRV(this->clip(shadedPath.get(), d));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001287
bungeman@google.comb29c8832011-10-10 13:19:10 +00001288 //Add the shaded path to the current visuals.
1289 SkTScopedComPtr<IXpsOMVisualCollection> currentVisuals;
1290 HRVM(this->fCurrentXpsCanvas->GetVisuals(&currentVisuals),
1291 "Could not get current visuals for rect.");
1292 HRVM(currentVisuals->Append(shadedPath.get()),
1293 "Could not add rect to current visuals.");
1294}
1295
1296static HRESULT close_figure(const SkTDArray<XPS_SEGMENT_TYPE>& segmentTypes,
1297 const SkTDArray<BOOL>& segmentStrokes,
1298 const SkTDArray<FLOAT>& segmentData,
1299 BOOL stroke, BOOL fill,
1300 IXpsOMGeometryFigure* figure,
1301 IXpsOMGeometryFigureCollection* figures) {
1302 // Add the segment data to the figure.
1303 HRM(figure->SetSegments(segmentTypes.count(), segmentData.count(),
1304 segmentTypes.begin() , segmentData.begin(),
1305 segmentStrokes.begin()),
1306 "Could not set path segments.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001307
bungeman@google.comb29c8832011-10-10 13:19:10 +00001308 // Set the closed and filled properties of the figure.
1309 HRM(figure->SetIsClosed(stroke), "Could not set path closed.");
1310 HRM(figure->SetIsFilled(fill), "Could not set path fill.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001311
bungeman@google.comb29c8832011-10-10 13:19:10 +00001312 // Add the figure created above to this geometry.
1313 HRM(figures->Append(figure), "Could not add path to geometry.");
1314 return S_OK;
1315}
1316
1317HRESULT SkXPSDevice::addXpsPathGeometry(
1318 IXpsOMGeometryFigureCollection* xpsFigures,
1319 BOOL stroke, BOOL fill, const SkPath& path) {
1320 SkTDArray<XPS_SEGMENT_TYPE> segmentTypes;
1321 SkTDArray<BOOL> segmentStrokes;
1322 SkTDArray<FLOAT> segmentData;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001323
bungeman@google.comb29c8832011-10-10 13:19:10 +00001324 SkTScopedComPtr<IXpsOMGeometryFigure> xpsFigure;
1325 SkPath::Iter iter(path, true);
1326 SkPoint points[4];
1327 SkPath::Verb verb;
1328 while ((verb = iter.next(points)) != SkPath::kDone_Verb) {
1329 switch (verb) {
1330 case SkPath::kMove_Verb: {
1331 if (NULL != xpsFigure.get()) {
1332 HR(close_figure(segmentTypes, segmentStrokes, segmentData,
1333 stroke, fill,
1334 xpsFigure.get() , xpsFigures));
1335 xpsFigure.reset();
1336 segmentTypes.rewind();
1337 segmentStrokes.rewind();
1338 segmentData.rewind();
1339 }
1340 // Define the start point.
1341 XPS_POINT startPoint = xps_point(points[0]);
1342 // Create the figure.
1343 HRM(this->fXpsFactory->CreateGeometryFigure(&startPoint,
1344 &xpsFigure),
1345 "Could not create path geometry figure.");
1346 break;
1347 }
1348 case SkPath::kLine_Verb:
1349 if (iter.isCloseLine()) break; //ignore the line, auto-closed
1350 segmentTypes.push(XPS_SEGMENT_TYPE_LINE);
1351 segmentStrokes.push(stroke);
1352 segmentData.push(SkScalarToFLOAT(points[1].fX));
1353 segmentData.push(SkScalarToFLOAT(points[1].fY));
1354 break;
1355 case SkPath::kQuad_Verb:
1356 segmentTypes.push(XPS_SEGMENT_TYPE_QUADRATIC_BEZIER);
1357 segmentStrokes.push(stroke);
1358 segmentData.push(SkScalarToFLOAT(points[1].fX));
1359 segmentData.push(SkScalarToFLOAT(points[1].fY));
1360 segmentData.push(SkScalarToFLOAT(points[2].fX));
1361 segmentData.push(SkScalarToFLOAT(points[2].fY));
1362 break;
1363 case SkPath::kCubic_Verb:
1364 segmentTypes.push(XPS_SEGMENT_TYPE_BEZIER);
1365 segmentStrokes.push(stroke);
1366 segmentData.push(SkScalarToFLOAT(points[1].fX));
1367 segmentData.push(SkScalarToFLOAT(points[1].fY));
1368 segmentData.push(SkScalarToFLOAT(points[2].fX));
1369 segmentData.push(SkScalarToFLOAT(points[2].fY));
1370 segmentData.push(SkScalarToFLOAT(points[3].fX));
1371 segmentData.push(SkScalarToFLOAT(points[3].fY));
1372 break;
1373 case SkPath::kClose_Verb:
1374 // we ignore these, and just get the whole segment from
1375 // the corresponding line/quad/cubic verbs
1376 break;
1377 default:
mtklein@google.com330313a2013-08-22 15:37:26 +00001378 SkDEBUGFAIL("unexpected verb");
bungeman@google.comb29c8832011-10-10 13:19:10 +00001379 break;
1380 }
1381 }
1382 if (NULL != xpsFigure.get()) {
1383 HR(close_figure(segmentTypes, segmentStrokes, segmentData,
1384 stroke, fill,
1385 xpsFigure.get(), xpsFigures));
1386 }
1387 return S_OK;
1388}
1389
1390HRESULT SkXPSDevice::drawInverseWindingPath(const SkDraw& d,
1391 const SkPath& devicePath,
1392 IXpsOMPath* shadedPath) {
1393 const SkRect universeRect = SkRect::MakeLTRB(0, 0,
1394 this->fCurrentCanvasSize.fWidth, this->fCurrentCanvasSize.fHeight);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001395
bungeman@google.comb29c8832011-10-10 13:19:10 +00001396 const XPS_RECT universeRectXps = {
1397 0.0f, 0.0f,
1398 SkScalarToFLOAT(this->fCurrentCanvasSize.fWidth),
1399 SkScalarToFLOAT(this->fCurrentCanvasSize.fHeight),
1400 };
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001401
bungeman@google.comb29c8832011-10-10 13:19:10 +00001402 //Get the geometry.
1403 SkTScopedComPtr<IXpsOMGeometry> shadedGeometry;
1404 HRM(shadedPath->GetGeometry(&shadedGeometry),
1405 "Could not get shaded geometry for inverse path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001406
bungeman@google.comb29c8832011-10-10 13:19:10 +00001407 //Get the figures from the geometry.
1408 SkTScopedComPtr<IXpsOMGeometryFigureCollection> shadedFigures;
1409 HRM(shadedGeometry->GetFigures(&shadedFigures),
1410 "Could not get shaded figures for inverse path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001411
bungeman@google.comb29c8832011-10-10 13:19:10 +00001412 HRM(shadedGeometry->SetFillRule(XPS_FILL_RULE_NONZERO),
1413 "Could not set shaded fill rule for inverse path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001414
bungeman@google.comb29c8832011-10-10 13:19:10 +00001415 //Take everything drawn so far, and make a shared resource out of it.
1416 //Replace everything drawn so far with
1417 //inverse canvas
1418 // old canvas of everything so far
1419 // world shaded figure, clipped to current clip
1420 // top canvas of everything so far, clipped to path
1421 //Note: this is not quite right when there is nothing solid in the
1422 //canvas of everything so far, as the bit on top will allow
1423 //the world paint to show through.
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001424
bungeman@google.comb29c8832011-10-10 13:19:10 +00001425 //Create new canvas.
1426 SkTScopedComPtr<IXpsOMCanvas> newCanvas;
1427 HRM(this->fXpsFactory->CreateCanvas(&newCanvas),
1428 "Could not create inverse canvas.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001429
bungeman@google.comb29c8832011-10-10 13:19:10 +00001430 //Save the old canvas to a dictionary on the new canvas.
1431 SkTScopedComPtr<IXpsOMDictionary> newDictionary;
1432 HRM(this->fXpsFactory->CreateDictionary(&newDictionary),
1433 "Could not create inverse dictionary.");
1434 HRM(newCanvas->SetDictionaryLocal(newDictionary.get()),
1435 "Could not set inverse dictionary.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001436
bungeman@google.comb29c8832011-10-10 13:19:10 +00001437 const size_t size = SK_ARRAY_COUNT(L"ID" L_GUID_ID);
1438 wchar_t buffer[size];
1439 wchar_t id[GUID_ID_LEN];
1440 HR(create_id(id, GUID_ID_LEN, '_'));
1441 swprintf_s(buffer, size, L"ID%s", id);
1442 HRM(newDictionary->Append(buffer, this->fCurrentXpsCanvas.get()),
1443 "Could not add canvas to inverse dictionary.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001444
bungeman@google.comb29c8832011-10-10 13:19:10 +00001445 //Start drawing
1446 SkTScopedComPtr<IXpsOMVisualCollection> newVisuals;
1447 HRM(newCanvas->GetVisuals(&newVisuals),
1448 "Could not get inverse canvas visuals.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001449
bungeman@google.comb29c8832011-10-10 13:19:10 +00001450 //Draw old canvas from dictionary onto new canvas.
1451 SkTScopedComPtr<IXpsOMGeometry> oldGeometry;
1452 HRM(this->fXpsFactory->CreateGeometry(&oldGeometry),
1453 "Could not create old inverse geometry.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001454
bungeman@google.comb29c8832011-10-10 13:19:10 +00001455 SkTScopedComPtr<IXpsOMGeometryFigureCollection> oldFigures;
1456 HRM(oldGeometry->GetFigures(&oldFigures),
1457 "Could not get old inverse figures.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001458
bungeman@google.comb29c8832011-10-10 13:19:10 +00001459 SkTScopedComPtr<IXpsOMGeometryFigure> oldFigure;
1460 HR(this->createXpsRect(universeRect, FALSE, TRUE, &oldFigure));
1461 HRM(oldFigures->Append(oldFigure.get()),
1462 "Could not add old inverse figure.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001463
bungeman@google.comb29c8832011-10-10 13:19:10 +00001464 SkTScopedComPtr<IXpsOMVisualBrush> oldBrush;
1465 HRM(this->fXpsFactory->CreateVisualBrush(&universeRectXps,
1466 &universeRectXps,
1467 &oldBrush),
1468 "Could not create old inverse brush.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001469
bungeman@google.comb29c8832011-10-10 13:19:10 +00001470 SkTScopedComPtr<IXpsOMPath> oldPath;
1471 HRM(this->fXpsFactory->CreatePath(&oldPath),
1472 "Could not create old inverse path.");
1473 HRM(oldPath->SetGeometryLocal(oldGeometry.get()),
1474 "Could not set old inverse geometry.");
1475 HRM(oldPath->SetFillBrushLocal(oldBrush.get()),
1476 "Could not set old inverse fill brush.");
1477 //the brush must be parented before setting the lookup.
1478 HRM(newVisuals->Append(oldPath.get()),
1479 "Could not add old inverse path to new canvas visuals.");
1480 HRM(oldBrush->SetVisualLookup(buffer),
1481 "Could not set old inverse brush visual lookup.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001482
bungeman@google.comb29c8832011-10-10 13:19:10 +00001483 //Draw the clip filling shader.
1484 SkTScopedComPtr<IXpsOMGeometryFigure> shadedFigure;
1485 HR(this->createXpsRect(universeRect, FALSE, TRUE, &shadedFigure));
1486 HRM(shadedFigures->Append(shadedFigure.get()),
1487 "Could not add inverse shaded figure.");
1488 //the geometry is already set
1489 HR(this->clip(shadedPath, d));
1490 HRM(newVisuals->Append(shadedPath),
1491 "Could not add inverse shaded path to canvas visuals.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001492
bungeman@google.comb29c8832011-10-10 13:19:10 +00001493 //Draw the old canvas on top, clipped to the original path.
1494 SkTScopedComPtr<IXpsOMCanvas> topCanvas;
1495 HRM(this->fXpsFactory->CreateCanvas(&topCanvas),
1496 "Could not create top inverse canvas.");
1497 //Clip the canvas to prevent alpha spill.
1498 //This is the entire reason this canvas exists.
1499 HR(this->clip(topCanvas.get(), d));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001500
bungeman@google.comb29c8832011-10-10 13:19:10 +00001501 SkTScopedComPtr<IXpsOMGeometry> topGeometry;
1502 HRM(this->fXpsFactory->CreateGeometry(&topGeometry),
1503 "Could not create top inverse geometry.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001504
bungeman@google.comb29c8832011-10-10 13:19:10 +00001505 SkTScopedComPtr<IXpsOMGeometryFigureCollection> topFigures;
1506 HRM(topGeometry->GetFigures(&topFigures),
1507 "Could not get top inverse figures.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001508
bungeman@google.comb29c8832011-10-10 13:19:10 +00001509 SkTScopedComPtr<IXpsOMGeometryFigure> topFigure;
1510 HR(this->createXpsRect(universeRect, FALSE, TRUE, &topFigure));
1511 HRM(topFigures->Append(topFigure.get()),
1512 "Could not add old inverse figure.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001513
bungeman@google.comb29c8832011-10-10 13:19:10 +00001514 SkTScopedComPtr<IXpsOMVisualBrush> topBrush;
1515 HRM(this->fXpsFactory->CreateVisualBrush(&universeRectXps,
1516 &universeRectXps,
1517 &topBrush),
1518 "Could not create top inverse brush.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001519
bungeman@google.comb29c8832011-10-10 13:19:10 +00001520 SkTScopedComPtr<IXpsOMPath> topPath;
1521 HRM(this->fXpsFactory->CreatePath(&topPath),
1522 "Could not create top inverse path.");
1523 HRM(topPath->SetGeometryLocal(topGeometry.get()),
1524 "Could not set top inverse geometry.");
1525 HRM(topPath->SetFillBrushLocal(topBrush.get()),
1526 "Could not set top inverse fill brush.");
1527 //the brush must be parented before setting the lookup.
1528 HRM(newVisuals->Append(topCanvas.get()),
1529 "Could not add top canvas to inverse canvas visuals.");
1530 SkTScopedComPtr<IXpsOMVisualCollection> topVisuals;
1531 HRM(topCanvas->GetVisuals(&topVisuals),
1532 "Could not get top inverse canvas visuals.");
1533 HRM(topVisuals->Append(topPath.get()),
1534 "Could not add top inverse path to top canvas visuals.");
1535 HRM(topBrush->SetVisualLookup(buffer),
1536 "Could not set top inverse brush visual lookup.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001537
bungeman@google.comb29c8832011-10-10 13:19:10 +00001538 HR(this->clipToPath(topPath.get(), devicePath, XPS_FILL_RULE_NONZERO));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001539
bungeman@google.comb29c8832011-10-10 13:19:10 +00001540 //swap current canvas to new canvas
1541 this->fCurrentXpsCanvas.swap(newCanvas);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001542
bungeman@google.comb29c8832011-10-10 13:19:10 +00001543 return S_OK;
1544}
1545
1546void SkXPSDevice::convertToPpm(const SkMaskFilter* filter,
1547 SkMatrix* matrix,
1548 SkVector* ppuScale,
1549 const SkIRect& clip, SkIRect* clipIRect) {
bungeman@google.comb29c8832011-10-10 13:19:10 +00001550 //This action is in unit space, but the ppm is specified in physical space.
1551 ppuScale->fX = SkScalarDiv(this->fCurrentPixelsPerMeter.fX,
1552 this->fCurrentUnitsPerMeter.fX);
1553 ppuScale->fY = SkScalarDiv(this->fCurrentPixelsPerMeter.fY,
1554 this->fCurrentUnitsPerMeter.fY);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001555
bungeman@google.comb29c8832011-10-10 13:19:10 +00001556 matrix->postScale(ppuScale->fX, ppuScale->fY);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001557
bungeman@google.comb29c8832011-10-10 13:19:10 +00001558 const SkIRect& irect = clip;
1559 SkRect clipRect = SkRect::MakeLTRB(
1560 SkScalarMul(SkIntToScalar(irect.fLeft), ppuScale->fX),
1561 SkScalarMul(SkIntToScalar(irect.fTop), ppuScale->fY),
1562 SkScalarMul(SkIntToScalar(irect.fRight), ppuScale->fX),
1563 SkScalarMul(SkIntToScalar(irect.fBottom), ppuScale->fY));
1564 clipRect.roundOut(clipIRect);
1565}
1566
1567HRESULT SkXPSDevice::applyMask(const SkDraw& d,
1568 const SkMask& mask,
1569 const SkVector& ppuScale,
1570 IXpsOMPath* shadedPath) {
1571 //Get the geometry object.
1572 SkTScopedComPtr<IXpsOMGeometry> shadedGeometry;
1573 HRM(shadedPath->GetGeometry(&shadedGeometry),
1574 "Could not get mask shaded geometry.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001575
bungeman@google.comb29c8832011-10-10 13:19:10 +00001576 //Get the figures from the geometry.
1577 SkTScopedComPtr<IXpsOMGeometryFigureCollection> shadedFigures;
1578 HRM(shadedGeometry->GetFigures(&shadedFigures),
1579 "Could not get mask shaded figures.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001580
bungeman@google.comb29c8832011-10-10 13:19:10 +00001581 SkMatrix m;
1582 m.reset();
1583 m.setTranslate(SkIntToScalar(mask.fBounds.fLeft),
1584 SkIntToScalar(mask.fBounds.fTop));
1585 m.postScale(SkScalarInvert(ppuScale.fX), SkScalarInvert(ppuScale.fY));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001586
bungeman@google.comb29c8832011-10-10 13:19:10 +00001587 SkShader::TileMode xy[2];
1588 xy[0] = (SkShader::TileMode)3;
1589 xy[1] = (SkShader::TileMode)3;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001590
bungeman@google.comb29c8832011-10-10 13:19:10 +00001591 SkBitmap bm;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +00001592 bm.installMaskPixels(mask);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001593
bungeman@google.comb29c8832011-10-10 13:19:10 +00001594 SkTScopedComPtr<IXpsOMTileBrush> maskBrush;
1595 HR(this->createXpsImageBrush(bm, m, xy, 0xFF, &maskBrush));
1596 HRM(shadedPath->SetOpacityMaskBrushLocal(maskBrush.get()),
1597 "Could not set mask.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001598
bungeman@google.comb29c8832011-10-10 13:19:10 +00001599 const SkRect universeRect = SkRect::MakeLTRB(0, 0,
1600 this->fCurrentCanvasSize.fWidth, this->fCurrentCanvasSize.fHeight);
1601 SkTScopedComPtr<IXpsOMGeometryFigure> shadedFigure;
1602 HRM(this->createXpsRect(universeRect, FALSE, TRUE, &shadedFigure),
1603 "Could not create mask shaded figure.");
1604 HRM(shadedFigures->Append(shadedFigure.get()),
1605 "Could not add mask shaded figure.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001606
bungeman@google.comb29c8832011-10-10 13:19:10 +00001607 HR(this->clip(shadedPath, d));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001608
bungeman@google.comb29c8832011-10-10 13:19:10 +00001609 //Add the path to the active visual collection.
1610 SkTScopedComPtr<IXpsOMVisualCollection> currentVisuals;
1611 HRM(this->fCurrentXpsCanvas->GetVisuals(&currentVisuals),
1612 "Could not get mask current visuals.");
1613 HRM(currentVisuals->Append(shadedPath),
1614 "Could not add masked shaded path to current visuals.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001615
bungeman@google.comb29c8832011-10-10 13:19:10 +00001616 return S_OK;
1617}
1618
1619HRESULT SkXPSDevice::shadePath(IXpsOMPath* shadedPath,
1620 const SkPaint& shaderPaint,
1621 const SkMatrix& matrix,
1622 BOOL* fill, BOOL* stroke) {
1623 *fill = FALSE;
1624 *stroke = FALSE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001625
bungeman@google.comb29c8832011-10-10 13:19:10 +00001626 const SkPaint::Style style = shaderPaint.getStyle();
1627 const bool hasFill = SkPaint::kFill_Style == style
1628 || SkPaint::kStrokeAndFill_Style == style;
1629 const bool hasStroke = SkPaint::kStroke_Style == style
1630 || SkPaint::kStrokeAndFill_Style == style;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001631
bungeman@google.comb29c8832011-10-10 13:19:10 +00001632 //TODO(bungeman): use dictionaries and lookups.
1633 if (hasFill) {
1634 *fill = TRUE;
1635 SkTScopedComPtr<IXpsOMBrush> fillBrush;
1636 HR(this->createXpsBrush(shaderPaint, &fillBrush, &matrix));
1637 HRM(shadedPath->SetFillBrushLocal(fillBrush.get()),
1638 "Could not set fill for shaded path.");
1639 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001640
bungeman@google.comb29c8832011-10-10 13:19:10 +00001641 if (hasStroke) {
1642 *stroke = TRUE;
1643 SkTScopedComPtr<IXpsOMBrush> strokeBrush;
1644 HR(this->createXpsBrush(shaderPaint, &strokeBrush, &matrix));
1645 HRM(shadedPath->SetStrokeBrushLocal(strokeBrush.get()),
1646 "Could not set stroke brush for shaded path.");
1647 HRM(shadedPath->SetStrokeThickness(
1648 SkScalarToFLOAT(shaderPaint.getStrokeWidth())),
1649 "Could not set shaded path stroke thickness.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001650
bungeman@google.comb29c8832011-10-10 13:19:10 +00001651 if (0 == shaderPaint.getStrokeWidth()) {
1652 //XPS hair width is a hack. (XPS Spec 11.6.12).
1653 SkTScopedComPtr<IXpsOMDashCollection> dashes;
1654 HRM(shadedPath->GetStrokeDashes(&dashes),
1655 "Could not set dashes for shaded path.");
1656 XPS_DASH dash;
1657 dash.length = 1.0;
1658 dash.gap = 0.0;
1659 HRM(dashes->Append(&dash), "Could not add dashes to shaded path.");
1660 HRM(shadedPath->SetStrokeDashOffset(-2.0),
1661 "Could not set dash offset for shaded path.");
1662 }
1663 }
1664 return S_OK;
1665}
1666
1667void SkXPSDevice::drawPath(const SkDraw& d,
1668 const SkPath& platonicPath,
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001669 const SkPaint& origPaint,
bungeman@google.comb29c8832011-10-10 13:19:10 +00001670 const SkMatrix* prePathMatrix,
1671 bool pathIsMutable) {
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001672 SkTCopyOnFirstWrite<SkPaint> paint(origPaint);
1673
bungeman@google.comb29c8832011-10-10 13:19:10 +00001674 // nothing to draw
1675 if (d.fClip->isEmpty() ||
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001676 (paint->getAlpha() == 0 && paint->getXfermode() == NULL)) {
bungeman@google.comb29c8832011-10-10 13:19:10 +00001677 return;
1678 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001679
bungeman@google.comb29c8832011-10-10 13:19:10 +00001680 SkPath modifiedPath;
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001681 const bool paintHasPathEffect = paint->getPathEffect()
1682 || paint->getStyle() != SkPaint::kFill_Style;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001683
bungeman@google.comb29c8832011-10-10 13:19:10 +00001684 //Apply pre-path matrix [Platonic-path -> Skeletal-path].
1685 SkMatrix matrix = *d.fMatrix;
1686 SkPath* skeletalPath = const_cast<SkPath*>(&platonicPath);
1687 if (prePathMatrix) {
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001688 if (paintHasPathEffect || paint->getRasterizer()) {
bungeman@google.comb29c8832011-10-10 13:19:10 +00001689 if (!pathIsMutable) {
1690 skeletalPath = &modifiedPath;
1691 pathIsMutable = true;
1692 }
1693 platonicPath.transform(*prePathMatrix, skeletalPath);
1694 } else {
commit-bot@chromium.org92362382014-03-18 12:51:48 +00001695 matrix.preConcat(*prePathMatrix);
bungeman@google.comb29c8832011-10-10 13:19:10 +00001696 }
1697 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001698
bungeman@google.comb29c8832011-10-10 13:19:10 +00001699 //Apply path effect [Skeletal-path -> Fillable-path].
1700 SkPath* fillablePath = skeletalPath;
1701 if (paintHasPathEffect) {
1702 if (!pathIsMutable) {
1703 fillablePath = &modifiedPath;
1704 pathIsMutable = true;
1705 }
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001706 bool fill = paint->getFillPath(*skeletalPath, fillablePath);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001707
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001708 SkPaint* writablePaint = paint.writable();
1709 writablePaint->setPathEffect(NULL);
bungeman@google.comb29c8832011-10-10 13:19:10 +00001710 if (fill) {
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001711 writablePaint->setStyle(SkPaint::kFill_Style);
bungeman@google.comb29c8832011-10-10 13:19:10 +00001712 } else {
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001713 writablePaint->setStyle(SkPaint::kStroke_Style);
1714 writablePaint->setStrokeWidth(0);
bungeman@google.comb29c8832011-10-10 13:19:10 +00001715 }
1716 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001717
bungeman@google.comb29c8832011-10-10 13:19:10 +00001718 //Create the shaded path. This will be the path which is painted.
1719 SkTScopedComPtr<IXpsOMPath> shadedPath;
1720 HRVM(this->fXpsFactory->CreatePath(&shadedPath),
1721 "Could not create shaded path for path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001722
bungeman@google.comb29c8832011-10-10 13:19:10 +00001723 //Create the geometry for the shaded path.
1724 SkTScopedComPtr<IXpsOMGeometry> shadedGeometry;
1725 HRVM(this->fXpsFactory->CreateGeometry(&shadedGeometry),
1726 "Could not create shaded geometry for path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001727
bungeman@google.comb29c8832011-10-10 13:19:10 +00001728 //Add the geometry to the shaded path.
1729 HRVM(shadedPath->SetGeometryLocal(shadedGeometry.get()),
1730 "Could not add the shaded geometry to shaded path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001731
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001732 SkRasterizer* rasterizer = paint->getRasterizer();
1733 SkMaskFilter* filter = paint->getMaskFilter();
bungeman@google.comd998cbd2012-04-05 18:57:53 +00001734
1735 //Determine if we will draw or shade and mask.
1736 if (rasterizer || filter) {
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001737 if (paint->getStyle() != SkPaint::kFill_Style) {
1738 paint.writable()->setStyle(SkPaint::kFill_Style);
bungeman@google.comd998cbd2012-04-05 18:57:53 +00001739 }
1740 }
1741
bungeman@google.comb29c8832011-10-10 13:19:10 +00001742 //Set the brushes.
1743 BOOL fill;
1744 BOOL stroke;
1745 HRV(this->shadePath(shadedPath.get(),
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001746 *paint,
bungeman@google.comb29c8832011-10-10 13:19:10 +00001747 *d.fMatrix,
1748 &fill,
1749 &stroke));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001750
bungeman@google.comb29c8832011-10-10 13:19:10 +00001751 //Rasterizer
bungeman@google.comd998cbd2012-04-05 18:57:53 +00001752 if (rasterizer) {
bungeman@google.comb29c8832011-10-10 13:19:10 +00001753 SkIRect clipIRect;
1754 SkVector ppuScale;
1755 this->convertToPpm(filter,
1756 &matrix,
1757 &ppuScale,
1758 d.fClip->getBounds(),
1759 &clipIRect);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001760
bungeman@google.comb29c8832011-10-10 13:19:10 +00001761 SkMask* mask = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001762
bungeman@google.comb29c8832011-10-10 13:19:10 +00001763 //[Fillable-path -> Mask]
1764 SkMask rasteredMask;
bungeman@google.comd998cbd2012-04-05 18:57:53 +00001765 if (rasterizer->rasterize(
bungeman@google.comb29c8832011-10-10 13:19:10 +00001766 *fillablePath,
1767 matrix,
1768 &clipIRect,
1769 filter, //just to compute how much to draw.
1770 &rasteredMask,
1771 SkMask::kComputeBoundsAndRenderImage_CreateMode)) {
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001772
bungeman@google.comb29c8832011-10-10 13:19:10 +00001773 SkAutoMaskFreeImage rasteredAmi(rasteredMask.fImage);
1774 mask = &rasteredMask;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001775
bungeman@google.comb29c8832011-10-10 13:19:10 +00001776 //[Mask -> Mask]
1777 SkMask filteredMask;
1778 if (filter &&
1779 filter->filterMask(&filteredMask, *mask, *d.fMatrix, NULL)) {
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001780
bungeman@google.comb29c8832011-10-10 13:19:10 +00001781 mask = &filteredMask;
1782 } else {
1783 filteredMask.fImage = NULL;
1784 }
1785 SkAutoMaskFreeImage filteredAmi(filteredMask.fImage);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001786
bungeman@google.comb29c8832011-10-10 13:19:10 +00001787 //Draw mask.
1788 HRV(this->applyMask(d, *mask, ppuScale, shadedPath.get()));
1789 }
1790 return;
1791 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001792
bungeman@google.comb29c8832011-10-10 13:19:10 +00001793 //Mask filter
1794 if (filter) {
1795 SkIRect clipIRect;
1796 SkVector ppuScale;
1797 this->convertToPpm(filter,
1798 &matrix,
1799 &ppuScale,
1800 d.fClip->getBounds(),
1801 &clipIRect);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001802
bungeman@google.comb29c8832011-10-10 13:19:10 +00001803 //[Fillable-path -> Pixel-path]
1804 SkPath* pixelPath = pathIsMutable ? fillablePath : &modifiedPath;
1805 fillablePath->transform(matrix, pixelPath);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001806
bungeman@google.comb29c8832011-10-10 13:19:10 +00001807 SkMask* mask = NULL;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001808
bungeman@google.comb29c8832011-10-10 13:19:10 +00001809 //[Pixel-path -> Mask]
1810 SkMask rasteredMask;
1811 if (SkDraw::DrawToMask(
1812 *pixelPath,
1813 &clipIRect,
1814 filter, //just to compute how much to draw.
1815 &matrix,
1816 &rasteredMask,
junov@chromium.org2ac4ef52012-04-04 15:16:51 +00001817 SkMask::kComputeBoundsAndRenderImage_CreateMode,
bsalomon@google.com5dc26b92012-10-11 19:32:32 +00001818 paint->getStyle())) {
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001819
bungeman@google.comb29c8832011-10-10 13:19:10 +00001820 SkAutoMaskFreeImage rasteredAmi(rasteredMask.fImage);
1821 mask = &rasteredMask;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001822
bungeman@google.comb29c8832011-10-10 13:19:10 +00001823 //[Mask -> Mask]
1824 SkMask filteredMask;
1825 if (filter->filterMask(&filteredMask,
1826 rasteredMask,
1827 matrix,
1828 NULL)) {
1829 mask = &filteredMask;
1830 } else {
1831 filteredMask.fImage = NULL;
1832 }
1833 SkAutoMaskFreeImage filteredAmi(filteredMask.fImage);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001834
bungeman@google.comb29c8832011-10-10 13:19:10 +00001835 //Draw mask.
1836 HRV(this->applyMask(d, *mask, ppuScale, shadedPath.get()));
1837 }
1838 return;
1839 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001840
bungeman@google.comb29c8832011-10-10 13:19:10 +00001841 //Get the figures from the shaded geometry.
1842 SkTScopedComPtr<IXpsOMGeometryFigureCollection> shadedFigures;
1843 HRVM(shadedGeometry->GetFigures(&shadedFigures),
1844 "Could not get shaded figures for shaded path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001845
bungeman@google.comb29c8832011-10-10 13:19:10 +00001846 bool xpsTransformsPath = true;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001847
bungeman@google.comb29c8832011-10-10 13:19:10 +00001848 //Set the fill rule.
1849 XPS_FILL_RULE xpsFillRule;
1850 switch (platonicPath.getFillType()) {
1851 case SkPath::kWinding_FillType:
1852 xpsFillRule = XPS_FILL_RULE_NONZERO;
1853 break;
1854 case SkPath::kEvenOdd_FillType:
1855 xpsFillRule = XPS_FILL_RULE_EVENODD;
1856 break;
1857 case SkPath::kInverseWinding_FillType: {
1858 //[Fillable-path -> Device-path]
1859 SkPath* devicePath = pathIsMutable ? fillablePath : &modifiedPath;
1860 fillablePath->transform(matrix, devicePath);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001861
bungeman@google.comb29c8832011-10-10 13:19:10 +00001862 HRV(this->drawInverseWindingPath(d,
1863 *devicePath,
1864 shadedPath.get()));
1865 return;
1866 }
1867 case SkPath::kInverseEvenOdd_FillType: {
1868 const SkRect universe = SkRect::MakeLTRB(
1869 0, 0,
1870 this->fCurrentCanvasSize.fWidth,
1871 this->fCurrentCanvasSize.fHeight);
1872 SkTScopedComPtr<IXpsOMGeometryFigure> addOneFigure;
1873 HRV(this->createXpsRect(universe, FALSE, TRUE, &addOneFigure));
1874 HRVM(shadedFigures->Append(addOneFigure.get()),
1875 "Could not add even-odd flip figure to shaded path.");
1876 xpsTransformsPath = false;
1877 xpsFillRule = XPS_FILL_RULE_EVENODD;
1878 break;
1879 }
1880 default:
mtklein@google.com330313a2013-08-22 15:37:26 +00001881 SkDEBUGFAIL("Unknown SkPath::FillType.");
bungeman@google.comb29c8832011-10-10 13:19:10 +00001882 }
1883 HRVM(shadedGeometry->SetFillRule(xpsFillRule),
1884 "Could not set fill rule for shaded path.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001885
bungeman@google.comb29c8832011-10-10 13:19:10 +00001886 //Create the XPS transform, if possible.
1887 if (xpsTransformsPath) {
1888 SkTScopedComPtr<IXpsOMMatrixTransform> xpsTransform;
1889 HRV(this->createXpsTransform(matrix, &xpsTransform));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001890
bungeman@google.comb29c8832011-10-10 13:19:10 +00001891 if (xpsTransform.get()) {
1892 HRVM(shadedGeometry->SetTransformLocal(xpsTransform.get()),
1893 "Could not set transform on shaded path.");
1894 } else {
1895 xpsTransformsPath = false;
1896 }
1897 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001898
bungeman@google.comb29c8832011-10-10 13:19:10 +00001899 SkPath* devicePath = fillablePath;
1900 if (!xpsTransformsPath) {
1901 //[Fillable-path -> Device-path]
1902 devicePath = pathIsMutable ? fillablePath : &modifiedPath;
1903 fillablePath->transform(matrix, devicePath);
1904 }
1905 HRV(this->addXpsPathGeometry(shadedFigures.get(),
1906 stroke, fill, *devicePath));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001907
bungeman@google.comb29c8832011-10-10 13:19:10 +00001908 HRV(this->clip(shadedPath.get(), d));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001909
bungeman@google.comb29c8832011-10-10 13:19:10 +00001910 //Add the path to the active visual collection.
1911 SkTScopedComPtr<IXpsOMVisualCollection> currentVisuals;
1912 HRVM(this->fCurrentXpsCanvas->GetVisuals(&currentVisuals),
1913 "Could not get current visuals for shaded path.");
1914 HRVM(currentVisuals->Append(shadedPath.get()),
1915 "Could not add shaded path to current visuals.");
1916}
1917
1918HRESULT SkXPSDevice::clip(IXpsOMVisual* xpsVisual, const SkDraw& d) {
1919 SkPath clipPath;
1920 SkAssertResult(d.fClip->getBoundaryPath(&clipPath));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001921
bungeman@google.comb29c8832011-10-10 13:19:10 +00001922 return this->clipToPath(xpsVisual, clipPath, XPS_FILL_RULE_EVENODD);
1923}
1924HRESULT SkXPSDevice::clipToPath(IXpsOMVisual* xpsVisual,
1925 const SkPath& clipPath,
1926 XPS_FILL_RULE fillRule) {
1927 //Create the geometry.
1928 SkTScopedComPtr<IXpsOMGeometry> clipGeometry;
1929 HRM(this->fXpsFactory->CreateGeometry(&clipGeometry),
1930 "Could not create clip geometry.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001931
bungeman@google.comb29c8832011-10-10 13:19:10 +00001932 //Get the figure collection of the geometry.
1933 SkTScopedComPtr<IXpsOMGeometryFigureCollection> clipFigures;
1934 HRM(clipGeometry->GetFigures(&clipFigures),
1935 "Could not get the clip figures.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001936
bungeman@google.comb29c8832011-10-10 13:19:10 +00001937 //Create the figures into the geometry.
1938 HR(this->addXpsPathGeometry(
1939 clipFigures.get(),
1940 FALSE, TRUE, clipPath));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001941
bungeman@google.comb29c8832011-10-10 13:19:10 +00001942 HRM(clipGeometry->SetFillRule(fillRule),
1943 "Could not set fill rule.");
1944 HRM(xpsVisual->SetClipGeometryLocal(clipGeometry.get()),
1945 "Could not set clip geometry.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001946
bungeman@google.comb29c8832011-10-10 13:19:10 +00001947 return S_OK;
1948}
1949
1950void SkXPSDevice::drawBitmap(const SkDraw& d, const SkBitmap& bitmap,
bungeman@google.comb29c8832011-10-10 13:19:10 +00001951 const SkMatrix& matrix, const SkPaint& paint) {
1952 if (d.fClip->isEmpty()) {
1953 return;
1954 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001955
bungeman@google.comb29c8832011-10-10 13:19:10 +00001956 SkIRect srcRect;
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001957 srcRect.set(0, 0, bitmap.width(), bitmap.height());
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001958
bungeman@google.comb29c8832011-10-10 13:19:10 +00001959 //Create the new shaded path.
1960 SkTScopedComPtr<IXpsOMPath> shadedPath;
1961 HRVM(this->fXpsFactory->CreatePath(&shadedPath),
1962 "Could not create path for bitmap.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001963
bungeman@google.comb29c8832011-10-10 13:19:10 +00001964 //Create the shaded geometry.
1965 SkTScopedComPtr<IXpsOMGeometry> shadedGeometry;
1966 HRVM(this->fXpsFactory->CreateGeometry(&shadedGeometry),
1967 "Could not create geometry for bitmap.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001968
bungeman@google.comb29c8832011-10-10 13:19:10 +00001969 //Add the shaded geometry to the shaded path.
1970 HRVM(shadedPath->SetGeometryLocal(shadedGeometry.get()),
1971 "Could not set the geometry for bitmap.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001972
bungeman@google.comb29c8832011-10-10 13:19:10 +00001973 //Get the shaded figures from the shaded geometry.
1974 SkTScopedComPtr<IXpsOMGeometryFigureCollection> shadedFigures;
1975 HRVM(shadedGeometry->GetFigures(&shadedFigures),
1976 "Could not get the figures for bitmap.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001977
bungeman@google.comb29c8832011-10-10 13:19:10 +00001978 SkMatrix transform = matrix;
1979 transform.postConcat(*d.fMatrix);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001980
bungeman@google.comb29c8832011-10-10 13:19:10 +00001981 SkTScopedComPtr<IXpsOMMatrixTransform> xpsTransform;
1982 HRV(this->createXpsTransform(transform, &xpsTransform));
1983 if (xpsTransform.get()) {
1984 HRVM(shadedGeometry->SetTransformLocal(xpsTransform.get()),
1985 "Could not set transform for bitmap.");
1986 } else {
1987 //TODO: perspective that bitmap!
1988 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00001989
bungeman@google.comb29c8832011-10-10 13:19:10 +00001990 SkTScopedComPtr<IXpsOMGeometryFigure> rectFigure;
1991 if (NULL != xpsTransform.get()) {
1992 const SkShader::TileMode xy[2] = {
1993 SkShader::kClamp_TileMode,
1994 SkShader::kClamp_TileMode,
1995 };
1996 SkTScopedComPtr<IXpsOMTileBrush> xpsImageBrush;
robertphillips@google.com9bf380c2013-07-25 12:10:42 +00001997 HRV(this->createXpsImageBrush(bitmap,
bungeman@google.comb29c8832011-10-10 13:19:10 +00001998 transform,
1999 xy,
2000 paint.getAlpha(),
2001 &xpsImageBrush));
2002 HRVM(shadedPath->SetFillBrushLocal(xpsImageBrush.get()),
2003 "Could not set bitmap brush.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002004
bungeman@google.comb29c8832011-10-10 13:19:10 +00002005 const SkRect bitmapRect = SkRect::MakeLTRB(0, 0,
2006 SkIntToScalar(srcRect.width()), SkIntToScalar(srcRect.height()));
2007 HRV(this->createXpsRect(bitmapRect, FALSE, TRUE, &rectFigure));
2008 }
2009 HRVM(shadedFigures->Append(rectFigure.get()),
2010 "Could not add bitmap figure.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002011
bungeman@google.comb29c8832011-10-10 13:19:10 +00002012 //Get the current visual collection and add the shaded path to it.
2013 SkTScopedComPtr<IXpsOMVisualCollection> currentVisuals;
2014 HRVM(this->fCurrentXpsCanvas->GetVisuals(&currentVisuals),
2015 "Could not get current visuals for bitmap");
2016 HRVM(currentVisuals->Append(shadedPath.get()),
2017 "Could not add bitmap to current visuals.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002018
bungeman@google.comb29c8832011-10-10 13:19:10 +00002019 HRV(this->clip(shadedPath.get(), d));
2020}
2021
2022void SkXPSDevice::drawSprite(const SkDraw&, const SkBitmap& bitmap,
2023 int x, int y,
2024 const SkPaint& paint) {
2025 //TODO: override this for XPS
2026 SkDEBUGF(("XPS drawSprite not yet implemented."));
2027}
2028
2029HRESULT SkXPSDevice::CreateTypefaceUse(const SkPaint& paint,
2030 TypefaceUse** typefaceUse) {
reed@google.com398de9a2013-03-21 21:43:51 +00002031 SkAutoResolveDefaultTypeface typeface(paint.getTypeface());
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002032
bungeman@google.comb29c8832011-10-10 13:19:10 +00002033 //Check cache.
reed@google.com398de9a2013-03-21 21:43:51 +00002034 const SkFontID typefaceID = typeface->uniqueID();
bungeman@google.comb29c8832011-10-10 13:19:10 +00002035 if (!this->fTypefaces.empty()) {
2036 TypefaceUse* current = &this->fTypefaces.front();
2037 const TypefaceUse* last = &this->fTypefaces.back();
2038 for (; current <= last; ++current) {
2039 if (current->typefaceId == typefaceID) {
2040 *typefaceUse = current;
2041 return S_OK;
2042 }
2043 }
2044 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002045
bungeman@google.comb29c8832011-10-10 13:19:10 +00002046 //TODO: create glyph only fonts
2047 //and let the host deal with what kind of font we're looking at.
2048 XPS_FONT_EMBEDDING embedding = XPS_FONT_EMBEDDING_RESTRICTED;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002049
bungeman@google.comb29c8832011-10-10 13:19:10 +00002050 SkTScopedComPtr<IStream> fontStream;
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +00002051 int ttcIndex;
2052 SkStream* fontData = typeface->openStream(&ttcIndex);
bungeman@google.com635091f2013-10-01 15:03:18 +00002053 //TODO: cannot handle FON fonts.
bungeman@google.com8cddc8d2012-01-03 22:36:33 +00002054 HRM(SkIStream::CreateFromSkStream(fontData, true, &fontStream),
bungeman@google.comb29c8832011-10-10 13:19:10 +00002055 "Could not create font stream.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002056
bungeman@google.comb29c8832011-10-10 13:19:10 +00002057 const size_t size =
2058 SK_ARRAY_COUNT(L"/Resources/Fonts/" L_GUID_ID L".odttf");
2059 wchar_t buffer[size];
2060 wchar_t id[GUID_ID_LEN];
2061 HR(create_id(id, GUID_ID_LEN));
2062 swprintf_s(buffer, size, L"/Resources/Fonts/%s.odttf", id);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002063
bungeman@google.comb29c8832011-10-10 13:19:10 +00002064 SkTScopedComPtr<IOpcPartUri> partUri;
2065 HRM(this->fXpsFactory->CreatePartUri(buffer, &partUri),
2066 "Could not create font resource part uri.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002067
bungeman@google.comb29c8832011-10-10 13:19:10 +00002068 SkTScopedComPtr<IXpsOMFontResource> xpsFontResource;
2069 HRM(this->fXpsFactory->CreateFontResource(fontStream.get(),
2070 embedding,
2071 partUri.get(),
2072 FALSE,
2073 &xpsFontResource),
2074 "Could not create font resource.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002075
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +00002076 //TODO: change openStream to return -1 for non-ttc, get rid of this.
2077 uint8_t* data = (uint8_t*)fontData->getMemoryBase();
2078 bool isTTC = (data &&
2079 fontData->getLength() >= sizeof(SkTTCFHeader) &&
2080 ((SkTTCFHeader*)data)->ttcTag == SkTTCFHeader::TAG);
2081
bungeman@google.comb29c8832011-10-10 13:19:10 +00002082 TypefaceUse& newTypefaceUse = this->fTypefaces.push_back();
2083 newTypefaceUse.typefaceId = typefaceID;
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +00002084 newTypefaceUse.ttcIndex = isTTC ? ttcIndex : -1;
bungeman@google.comb29c8832011-10-10 13:19:10 +00002085 newTypefaceUse.fontData = fontData;
2086 newTypefaceUse.xpsFont = xpsFontResource.release();
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002087
mtklein@google.comcf4d0fb2013-11-18 16:33:08 +00002088 SkAutoGlyphCache agc(paint, NULL, &SkMatrix::I());
bungeman@google.comb29c8832011-10-10 13:19:10 +00002089 SkGlyphCache* glyphCache = agc.getCache();
2090 unsigned int glyphCount = glyphCache->getGlyphCount();
2091 newTypefaceUse.glyphsUsed = new SkBitSet(glyphCount);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002092
bungeman@google.comb29c8832011-10-10 13:19:10 +00002093 *typefaceUse = &newTypefaceUse;
2094 return S_OK;
2095}
2096
2097HRESULT SkXPSDevice::AddGlyphs(const SkDraw& d,
2098 IXpsOMObjectFactory* xpsFactory,
2099 IXpsOMCanvas* canvas,
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +00002100 TypefaceUse* font,
bungeman@google.comb29c8832011-10-10 13:19:10 +00002101 LPCWSTR text,
2102 XPS_GLYPH_INDEX* xpsGlyphs,
2103 UINT32 xpsGlyphsLen,
2104 XPS_POINT *origin,
2105 FLOAT fontSize,
2106 XPS_STYLE_SIMULATION sims,
2107 const SkMatrix& transform,
2108 const SkPaint& paint) {
2109 SkTScopedComPtr<IXpsOMGlyphs> glyphs;
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +00002110 HRM(xpsFactory->CreateGlyphs(font->xpsFont, &glyphs), "Could not create glyphs.");
2111 HRM(glyphs->SetFontFaceIndex(font->ttcIndex), "Could not set glyph font face index.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002112
bungeman@google.comb29c8832011-10-10 13:19:10 +00002113 //XPS uses affine transformations for everything...
2114 //...except positioning text.
2115 bool useCanvasForClip;
2116 if ((transform.getType() & ~SkMatrix::kTranslate_Mask) == 0) {
2117 origin->x += SkScalarToFLOAT(transform.getTranslateX());
2118 origin->y += SkScalarToFLOAT(transform.getTranslateY());
2119 useCanvasForClip = false;
2120 } else {
2121 SkTScopedComPtr<IXpsOMMatrixTransform> xpsMatrixToUse;
2122 HR(this->createXpsTransform(transform, &xpsMatrixToUse));
2123 if (xpsMatrixToUse.get()) {
2124 HRM(glyphs->SetTransformLocal(xpsMatrixToUse.get()),
2125 "Could not set transform matrix.");
2126 useCanvasForClip = true;
2127 } else {
mtklein@google.com330313a2013-08-22 15:37:26 +00002128 SkDEBUGFAIL("Attempt to add glyphs in perspective.");
bungeman@google.comb29c8832011-10-10 13:19:10 +00002129 useCanvasForClip = false;
2130 }
2131 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002132
bungeman@google.comb29c8832011-10-10 13:19:10 +00002133 SkTScopedComPtr<IXpsOMGlyphsEditor> glyphsEditor;
2134 HRM(glyphs->GetGlyphsEditor(&glyphsEditor), "Could not get glyph editor.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002135
bungeman@google.comb29c8832011-10-10 13:19:10 +00002136 if (NULL != text) {
2137 HRM(glyphsEditor->SetUnicodeString(text),
2138 "Could not set unicode string.");
2139 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002140
bungeman@google.comb29c8832011-10-10 13:19:10 +00002141 if (NULL != xpsGlyphs) {
2142 HRM(glyphsEditor->SetGlyphIndices(xpsGlyphsLen, xpsGlyphs),
2143 "Could not set glyphs.");
2144 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002145
bungeman@google.comb29c8832011-10-10 13:19:10 +00002146 HRM(glyphsEditor->ApplyEdits(), "Could not apply glyph edits.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002147
bungeman@google.comb29c8832011-10-10 13:19:10 +00002148 SkTScopedComPtr<IXpsOMBrush> xpsFillBrush;
2149 HR(this->createXpsBrush(
2150 paint,
2151 &xpsFillBrush,
2152 useCanvasForClip ? NULL : &transform));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002153
bungeman@google.comb29c8832011-10-10 13:19:10 +00002154 HRM(glyphs->SetFillBrushLocal(xpsFillBrush.get()),
2155 "Could not set fill brush.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002156
bungeman@google.comb29c8832011-10-10 13:19:10 +00002157 HRM(glyphs->SetOrigin(origin), "Could not set glyph origin.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002158
bungeman@google.comb29c8832011-10-10 13:19:10 +00002159 HRM(glyphs->SetFontRenderingEmSize(fontSize),
2160 "Could not set font size.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002161
bungeman@google.comb29c8832011-10-10 13:19:10 +00002162 HRM(glyphs->SetStyleSimulations(sims),
2163 "Could not set style simulations.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002164
bungeman@google.comb29c8832011-10-10 13:19:10 +00002165 SkTScopedComPtr<IXpsOMVisualCollection> visuals;
2166 HRM(canvas->GetVisuals(&visuals), "Could not get glyph canvas visuals.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002167
bungeman@google.comb29c8832011-10-10 13:19:10 +00002168 if (!useCanvasForClip) {
2169 HR(this->clip(glyphs.get(), d));
2170 HRM(visuals->Append(glyphs.get()), "Could not add glyphs to canvas.");
2171 } else {
2172 SkTScopedComPtr<IXpsOMCanvas> glyphCanvas;
2173 HRM(this->fXpsFactory->CreateCanvas(&glyphCanvas),
2174 "Could not create glyph canvas.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002175
bungeman@google.comb29c8832011-10-10 13:19:10 +00002176 SkTScopedComPtr<IXpsOMVisualCollection> glyphCanvasVisuals;
2177 HRM(glyphCanvas->GetVisuals(&glyphCanvasVisuals),
2178 "Could not get glyph visuals collection.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002179
bungeman@google.comb29c8832011-10-10 13:19:10 +00002180 HRM(glyphCanvasVisuals->Append(glyphs.get()),
2181 "Could not add glyphs to page.");
2182 HR(this->clip(glyphCanvas.get(), d));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002183
bungeman@google.comb29c8832011-10-10 13:19:10 +00002184 HRM(visuals->Append(glyphCanvas.get()),
2185 "Could not add glyph canvas to page.");
2186 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002187
bungeman@google.comb29c8832011-10-10 13:19:10 +00002188 return S_OK;
2189}
2190
2191struct SkXPSDrawProcs : public SkDrawProcs {
2192public:
2193 /** [in] Advance width and offsets for glyphs measured in
2194 hundredths of the font em size (XPS Spec 5.1.3). */
2195 FLOAT centemPerUnit;
2196 /** [in,out] The accumulated glyphs used in the current typeface. */
2197 SkBitSet* glyphUse;
2198 /** [out] The glyphs to draw. */
2199 SkTDArray<XPS_GLYPH_INDEX> xpsGlyphs;
2200};
2201
2202static void xps_draw_1_glyph(const SkDraw1Glyph& state,
2203 SkFixed x, SkFixed y,
2204 const SkGlyph& skGlyph) {
2205 SkASSERT(skGlyph.fWidth > 0 && skGlyph.fHeight > 0);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002206
bungeman@google.comb29c8832011-10-10 13:19:10 +00002207 SkXPSDrawProcs* procs = static_cast<SkXPSDrawProcs*>(state.fDraw->fProcs);
bungeman@google.com2211b622012-01-13 15:02:58 +00002208
2209 //Draw pre-adds half the sampling frequency for floor rounding.
bungeman@google.com94471032013-02-25 15:55:13 +00002210 x -= state.fHalfSampleX;
2211 y -= state.fHalfSampleY;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002212
bungeman@google.comb29c8832011-10-10 13:19:10 +00002213 XPS_GLYPH_INDEX* xpsGlyph = procs->xpsGlyphs.append();
2214 uint16_t glyphID = skGlyph.getGlyphID();
2215 procs->glyphUse->setBit(glyphID, true);
2216 xpsGlyph->index = glyphID;
2217 if (1 == procs->xpsGlyphs.count()) {
2218 xpsGlyph->advanceWidth = 0.0f;
2219 xpsGlyph->horizontalOffset = SkFixedToFloat(x) * procs->centemPerUnit;
2220 xpsGlyph->verticalOffset = SkFixedToFloat(y) * -procs->centemPerUnit;
2221 } else {
2222 const XPS_GLYPH_INDEX& first = procs->xpsGlyphs[0];
2223 xpsGlyph->advanceWidth = 0.0f;
2224 xpsGlyph->horizontalOffset = (SkFixedToFloat(x) * procs->centemPerUnit)
2225 - first.horizontalOffset;
2226 xpsGlyph->verticalOffset = (SkFixedToFloat(y) * -procs->centemPerUnit)
2227 - first.verticalOffset;
2228 }
2229}
2230
2231static void text_draw_init(const SkPaint& paint,
2232 const void* text, size_t byteLength,
2233 SkBitSet& glyphsUsed,
2234 SkDraw& myDraw, SkXPSDrawProcs& procs) {
2235 procs.fD1GProc = xps_draw_1_glyph;
bungeman@google.com4b18f572013-07-22 15:21:23 +00002236 size_t numGlyphGuess;
bungeman@google.comb29c8832011-10-10 13:19:10 +00002237 switch (paint.getTextEncoding()) {
2238 case SkPaint::kUTF8_TextEncoding:
2239 numGlyphGuess = SkUTF8_CountUnichars(
2240 static_cast<const char *>(text),
2241 byteLength);
2242 break;
2243 case SkPaint::kUTF16_TextEncoding:
2244 numGlyphGuess = SkUTF16_CountUnichars(
2245 static_cast<const uint16_t *>(text),
2246 byteLength);
2247 break;
2248 case SkPaint::kGlyphID_TextEncoding:
2249 numGlyphGuess = byteLength / 2;
2250 break;
2251 default:
commit-bot@chromium.org45d1d1d2014-04-30 18:24:16 +00002252 SK_ALWAYSBREAK(true);
bungeman@google.comb29c8832011-10-10 13:19:10 +00002253 }
2254 procs.xpsGlyphs.setReserve(numGlyphGuess);
2255 procs.glyphUse = &glyphsUsed;
2256 procs.centemPerUnit = 100.0f / SkScalarToFLOAT(paint.getTextSize());
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002257
bungeman@google.comb29c8832011-10-10 13:19:10 +00002258 myDraw.fProcs = &procs;
bungeman@google.comb29c8832011-10-10 13:19:10 +00002259}
2260
2261static bool text_must_be_pathed(const SkPaint& paint, const SkMatrix& matrix) {
2262 const SkPaint::Style style = paint.getStyle();
2263 return matrix.hasPerspective()
2264 || SkPaint::kStroke_Style == style
2265 || SkPaint::kStrokeAndFill_Style == style
2266 || paint.getMaskFilter()
2267 || paint.getRasterizer()
2268 ;
2269}
2270
2271void SkXPSDevice::drawText(const SkDraw& d,
2272 const void* text, size_t byteLen,
2273 SkScalar x, SkScalar y,
2274 const SkPaint& paint) {
2275 if (byteLen < 1) return;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002276
bungeman@google.comb29c8832011-10-10 13:19:10 +00002277 if (text_must_be_pathed(paint, *d.fMatrix)) {
2278 SkPath path;
2279 paint.getTextPath(text, byteLen, x, y, &path);
2280 this->drawPath(d, path, paint, NULL, true);
2281 //TODO: add automation "text"
2282 return;
2283 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002284
bungeman@google.comb29c8832011-10-10 13:19:10 +00002285 TypefaceUse* typeface;
2286 HRV(CreateTypefaceUse(paint, &typeface));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002287
bungeman@google.comb29c8832011-10-10 13:19:10 +00002288 SkDraw myDraw(d);
bungeman@google.com635091f2013-10-01 15:03:18 +00002289 myDraw.fMatrix = &SkMatrix::I();
bungeman@google.comb29c8832011-10-10 13:19:10 +00002290 SkXPSDrawProcs procs;
2291 text_draw_init(paint, text, byteLen, *typeface->glyphsUsed, myDraw, procs);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002292
bungeman@google.comb29c8832011-10-10 13:19:10 +00002293 myDraw.drawText(static_cast<const char*>(text), byteLen, x, y, paint);
reed@google.com089130c2011-12-12 21:52:18 +00002294
2295 // SkDraw may have clipped out the glyphs, so we need to check
2296 if (procs.xpsGlyphs.count() == 0) {
2297 return;
2298 }
2299
bungeman@google.comb29c8832011-10-10 13:19:10 +00002300 XPS_POINT origin = {
2301 procs.xpsGlyphs[0].horizontalOffset / procs.centemPerUnit,
2302 procs.xpsGlyphs[0].verticalOffset / -procs.centemPerUnit,
2303 };
2304 procs.xpsGlyphs[0].horizontalOffset = 0.0f;
2305 procs.xpsGlyphs[0].verticalOffset = 0.0f;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002306
bungeman@google.comb29c8832011-10-10 13:19:10 +00002307 HRV(AddGlyphs(d,
2308 this->fXpsFactory.get(),
2309 this->fCurrentXpsCanvas.get(),
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +00002310 typeface,
bungeman@google.comb29c8832011-10-10 13:19:10 +00002311 NULL,
2312 procs.xpsGlyphs.begin(), procs.xpsGlyphs.count(),
2313 &origin,
2314 SkScalarToFLOAT(paint.getTextSize()),
2315 XPS_STYLE_SIMULATION_NONE,
2316 *d.fMatrix,
2317 paint));
2318}
2319
2320void SkXPSDevice::drawPosText(const SkDraw& d,
2321 const void* text, size_t byteLen,
2322 const SkScalar pos[],
2323 SkScalar constY, int scalarsPerPos,
2324 const SkPaint& paint) {
2325 if (byteLen < 1) return;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002326
bungeman@google.comb29c8832011-10-10 13:19:10 +00002327 if (text_must_be_pathed(paint, *d.fMatrix)) {
2328 SkPath path;
2329 //TODO: make this work, Draw currently does not handle as well.
2330 //paint.getTextPath(text, byteLength, x, y, &path);
2331 //this->drawPath(d, path, paint, NULL, true);
2332 //TODO: add automation "text"
2333 return;
2334 }
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002335
bungeman@google.comb29c8832011-10-10 13:19:10 +00002336 TypefaceUse* typeface;
2337 HRV(CreateTypefaceUse(paint, &typeface));
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002338
bungeman@google.comb29c8832011-10-10 13:19:10 +00002339 SkDraw myDraw(d);
bungeman@google.com635091f2013-10-01 15:03:18 +00002340 myDraw.fMatrix = &SkMatrix::I();
bungeman@google.comb29c8832011-10-10 13:19:10 +00002341 SkXPSDrawProcs procs;
2342 text_draw_init(paint, text, byteLen, *typeface->glyphsUsed, myDraw, procs);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002343
bungeman@google.comb29c8832011-10-10 13:19:10 +00002344 myDraw.drawPosText(static_cast<const char*>(text), byteLen,
2345 pos, constY, scalarsPerPos,
2346 paint);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002347
reed@google.com089130c2011-12-12 21:52:18 +00002348 // SkDraw may have clipped out the glyphs, so we need to check
2349 if (procs.xpsGlyphs.count() == 0) {
2350 return;
2351 }
2352
bungeman@google.comb29c8832011-10-10 13:19:10 +00002353 XPS_POINT origin = {
2354 procs.xpsGlyphs[0].horizontalOffset / procs.centemPerUnit,
2355 procs.xpsGlyphs[0].verticalOffset / -procs.centemPerUnit,
2356 };
2357 procs.xpsGlyphs[0].horizontalOffset = 0.0f;
2358 procs.xpsGlyphs[0].verticalOffset = 0.0f;
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002359
bungeman@google.comb29c8832011-10-10 13:19:10 +00002360 HRV(AddGlyphs(d,
2361 this->fXpsFactory.get(),
2362 this->fCurrentXpsCanvas.get(),
commit-bot@chromium.orgb5e34e22013-05-07 15:28:15 +00002363 typeface,
bungeman@google.comb29c8832011-10-10 13:19:10 +00002364 NULL,
2365 procs.xpsGlyphs.begin(), procs.xpsGlyphs.count(),
2366 &origin,
2367 SkScalarToFLOAT(paint.getTextSize()),
2368 XPS_STYLE_SIMULATION_NONE,
2369 *d.fMatrix,
2370 paint));
2371}
2372
2373void SkXPSDevice::drawTextOnPath(const SkDraw& d, const void* text, size_t len,
2374 const SkPath& path, const SkMatrix* matrix,
2375 const SkPaint& paint) {
2376 //This will call back into the device to do the drawing.
2377 d.drawTextOnPath((const char*)text, len, path, matrix, paint);
2378}
2379
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00002380void SkXPSDevice::drawDevice(const SkDraw& d, SkBaseDevice* dev,
bungeman@google.comb29c8832011-10-10 13:19:10 +00002381 int x, int y,
2382 const SkPaint&) {
2383 SkXPSDevice* that = static_cast<SkXPSDevice*>(dev);
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002384
bungeman@google.comb29c8832011-10-10 13:19:10 +00002385 SkTScopedComPtr<IXpsOMMatrixTransform> xpsTransform;
2386 XPS_MATRIX rawTransform = {
2387 1.0f,
2388 0.0f,
2389 0.0f,
2390 1.0f,
2391 static_cast<FLOAT>(x),
2392 static_cast<FLOAT>(y),
2393 };
2394 HRVM(this->fXpsFactory->CreateMatrixTransform(&rawTransform, &xpsTransform),
2395 "Could not create layer transform.");
2396 HRVM(that->fCurrentXpsCanvas->SetTransformLocal(xpsTransform.get()),
2397 "Could not set layer transform.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002398
bungeman@google.comb29c8832011-10-10 13:19:10 +00002399 //Get the current visual collection and add the layer to it.
2400 SkTScopedComPtr<IXpsOMVisualCollection> currentVisuals;
2401 HRVM(this->fCurrentXpsCanvas->GetVisuals(&currentVisuals),
2402 "Could not get current visuals for layer.");
2403 HRVM(currentVisuals->Append(that->fCurrentXpsCanvas.get()),
2404 "Could not add layer to current visuals.");
2405}
2406
commit-bot@chromium.org15a14052014-02-16 00:59:25 +00002407SkBaseDevice* SkXPSDevice::onCreateDevice(const SkImageInfo&, Usage) {
bungeman@google.com635091f2013-10-01 15:03:18 +00002408//Conditional for bug compatibility with PDF device.
2409#if 0
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00002410 if (SkBaseDevice::kGeneral_Usage == usage) {
reed@google.comb55deeb2012-01-06 14:43:09 +00002411 return NULL;
bungeman@google.comb29c8832011-10-10 13:19:10 +00002412 SK_CRASH();
2413 //To what stream do we write?
2414 //SkXPSDevice* dev = new SkXPSDevice(this);
2415 //SkSize s = SkSize::Make(width, height);
2416 //dev->BeginCanvas(s, s, SkMatrix::I());
2417 //return dev;
2418 }
bungeman@google.com635091f2013-10-01 15:03:18 +00002419#endif
bungeman@google.comb29c8832011-10-10 13:19:10 +00002420 return new SkXPSDevice(this->fXpsFactory.get());
2421}
2422
2423SkXPSDevice::SkXPSDevice(IXpsOMObjectFactory* xpsFactory)
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00002424 : SkBitmapDevice(make_fake_bitmap(10000, 10000))
bungeman@google.comb29c8832011-10-10 13:19:10 +00002425 , fCurrentPage(0) {
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002426
bungeman@google.comb29c8832011-10-10 13:19:10 +00002427 HRVM(CoCreateInstance(
2428 CLSID_XpsOMObjectFactory,
2429 NULL,
2430 CLSCTX_INPROC_SERVER,
2431 IID_PPV_ARGS(&this->fXpsFactory)),
2432 "Could not create factory for layer.");
vandebo@chromium.org74b46192012-01-28 01:45:11 +00002433
bungeman@google.comb29c8832011-10-10 13:19:10 +00002434 HRVM(this->fXpsFactory->CreateCanvas(&this->fCurrentXpsCanvas),
2435 "Could not create canvas for layer.");
2436}
reed@google.comb55deeb2012-01-06 14:43:09 +00002437
senorblanco@chromium.orge629c7b2014-02-05 23:23:39 +00002438bool SkXPSDevice::allowImageFilter(const SkImageFilter*) {
reed@google.comb55deeb2012-01-06 14:43:09 +00002439 return false;
2440}