OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 #ifndef SkPDFBitmap_DEFINED | 7 #ifndef SkPDFBitmap_DEFINED |
8 #define SkPDFBitmap_DEFINED | 8 #define SkPDFBitmap_DEFINED |
9 | 9 |
10 #include "SkPDFTypes.h" | 10 #include "SkPDFTypes.h" |
11 #include "SkBitmap.h" | 11 #include "SkBitmap.h" |
12 | 12 |
13 class SkPDFCanon; | 13 class SkPDFCanon; |
14 | 14 |
15 /** | 15 /** |
16 * SkPDFBitmap wraps a SkBitmap and serializes it as an image Xobject. | 16 * SkPDFBitmap wraps a SkBitmap and serializes it as an image Xobject. |
17 * It is designed to use a minimal amout of memory, aside from refing | 17 * It is designed to use a minimal amout of memory, aside from refing |
18 * the bitmap's pixels, and its emitObject() does not cache any data. | 18 * the bitmap's pixels, and its emitObject() does not cache any data. |
19 * | 19 * |
20 * If !bitmap.isImmutable(), then a copy of the bitmap must be made; | 20 * As of now, it only supports 8888 bitmaps (the most common case). |
21 * there is no way around this. | |
22 * | 21 * |
23 * The SkPDFBitmap::Create function will check the canon for duplicates. | 22 * The SkPDFBitmap::Create function will check the canon for duplicates. |
24 */ | 23 */ |
25 class SkPDFBitmap : public SkPDFObject { | 24 class SkPDFBitmap : public SkPDFObject { |
26 public: | 25 public: |
27 // Returns NULL on unsupported bitmap; | 26 // Returns NULL on unsupported bitmap; |
28 static SkPDFBitmap* Create(SkPDFCanon*, const SkBitmap&); | 27 // TODO(halcanary): support other bitmap colortypes and replace |
| 28 // SkPDFImage. |
| 29 static SkPDFBitmap* Create(SkPDFCanon*, |
| 30 const SkBitmap&, |
| 31 const SkIRect& subset); |
29 ~SkPDFBitmap(); | 32 ~SkPDFBitmap(); |
30 void emitObject(SkWStream*, SkPDFCatalog*) SK_OVERRIDE; | 33 void emitObject(SkWStream*, SkPDFCatalog*) SK_OVERRIDE; |
31 void addResources(SkTSet<SkPDFObject*>* resourceSet, | 34 void addResources(SkTSet<SkPDFObject*>* resourceSet, |
32 SkPDFCatalog* catalog) const SK_OVERRIDE; | 35 SkPDFCatalog* catalog) const SK_OVERRIDE; |
33 bool equals(const SkBitmap& other) const { | 36 bool equals(const SkBitmap& other) const { |
34 return fBitmap.getGenerationID() == other.getGenerationID() && | 37 return fBitmap.getGenerationID() == other.getGenerationID() && |
35 fBitmap.pixelRefOrigin() == other.pixelRefOrigin() && | 38 fBitmap.pixelRefOrigin() == other.pixelRefOrigin() && |
36 fBitmap.dimensions() == other.dimensions(); | 39 fBitmap.dimensions() == other.dimensions(); |
37 } | 40 } |
38 | 41 |
39 private: | 42 private: |
40 const SkBitmap fBitmap; | 43 const SkBitmap fBitmap; |
41 const SkAutoTUnref<SkPDFObject> fSMask; | 44 const SkAutoTUnref<SkPDFObject> fSMask; |
42 SkPDFBitmap(const SkBitmap&, SkPDFObject*); | 45 SkPDFBitmap(const SkBitmap&, SkPDFObject*); |
43 void emitDict(SkWStream*, SkPDFCatalog*, size_t) const; | 46 void emitDict(SkWStream*, SkPDFCatalog*, size_t, bool) const; |
44 }; | 47 }; |
45 | 48 |
46 #endif // SkPDFBitmap_DEFINED | 49 #endif // SkPDFBitmap_DEFINED |
OLD | NEW |