Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(528)

Side by Side Diff: ui/gfx/image/image_skia.h

Issue 10245003: Makes ImageSkia more like SkBitmap (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated comment Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gfx/image/image_mac_unittest.mm ('k') | ui/gfx/image/image_skia.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_GFX_IMAGE_IMAGE_SKIA_H_ 5 #ifndef UI_GFX_IMAGE_IMAGE_SKIA_H_
6 #define UI_GFX_IMAGE_IMAGE_SKIA_H_ 6 #define UI_GFX_IMAGE_IMAGE_SKIA_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h"
12 #include "third_party/skia/include/core/SkBitmap.h" 13 #include "third_party/skia/include/core/SkBitmap.h"
13 #include "ui/gfx/canvas.h" 14 #include "ui/base/ui_export.h"
14 #include "ui/gfx/size.h"
15 15
16 namespace gfx { 16 namespace gfx {
17 17
18 namespace internal {
19 class ImageSkiaStorage;
20 } // namespace internal
21
18 // Container for the same image at different densities, similar to NSImage. 22 // Container for the same image at different densities, similar to NSImage.
19 // Smallest image is assumed to represent 1x density. 23 // Image height and width are in DIP (Device Indepent Pixel) coordinates.
20 24 //
21 // ImageSkia should be used for caching and drawing images of different 25 // ImageSkia should be used whenever possible instead of SkBitmap.
22 // densities. It should not be used as an SkBitmap wrapper. 26 // Functions that mutate the image should operate on the SkBitmap returned
27 // from ImageSkia::GetBitmapForScale, not on ImageSkia.
28 //
29 // ImageSkia is cheap to copy and intentionally supports copy semantics.
23 class UI_EXPORT ImageSkia { 30 class UI_EXPORT ImageSkia {
24 public: 31 public:
25 explicit ImageSkia(const SkBitmap* bitmap); 32 // Creates instance with no bitmaps.
26 explicit ImageSkia(const std::vector<const SkBitmap*>& bitmaps); 33 ImageSkia();
34
35 // Adds ref to passed in bitmap.
36 // DIP width and height are set based on scale factor of 1x.
37 // TODO(pkotwicz): This is temporary till conversion to gfx::ImageSkia is
38 // done.
39 ImageSkia(const SkBitmap& bitmap);
40
41 // Adds ref to passed in bitmap.
42 // DIP width and height are set based on |dip_scale_factor|.
43 ImageSkia(const SkBitmap& bitmap, float dip_scale_factor);
44
45 // Copies a reference to |other|'s storage.
46 ImageSkia(const ImageSkia& other);
47
48 // Copies a reference to |other|'s storage.
49 ImageSkia& operator=(const ImageSkia& other);
50
51 // Converts from SkBitmap.
52 // Adds ref to passed in bitmap.
53 // DIP width and height are set based on scale factor of 1x.
54 // TODO(pkotwicz): This is temporary till conversion to gfx::ImageSkia is
55 // done.
56 ImageSkia& operator=(const SkBitmap& other);
57
58 // Converts to SkBitmap.
59 // TODO(pkotwicz): This is temporary till conversion to gfx::ImageSkia is
60 // done.
61 operator SkBitmap&() const;
62
27 ~ImageSkia(); 63 ~ImageSkia();
28 64
29 // Build mipmap at time of next call to |DrawToCanvasInt|. 65 // Adds |bitmap| for |dip_scale_factor| to bitmaps contained by this object.
30 void BuildMipMap(); 66 // Adds ref to passed in bitmap.
67 // DIP width and height are set based on |dip_scale_factor|.
68 void AddBitmapForScale(const SkBitmap& bitmap, float dip_scale_factor);
31 69
32 // Draws the image with the origin at the specified location. The upper left 70 // Returns the bitmap whose density best matches |x_scale_factor| and
33 // corner of the image is rendered at the specified location. 71 // |y_scale_factor|.
34 void DrawToCanvasInt(Canvas* canvas, int x, int y); 72 // Returns a null bitmap if object contains no bitmaps.
73 // |bitmap_scale_factor| is set to the scale factor of the returned bitmap.
74 const SkBitmap& GetBitmapForScale(float x_scale_factor,
75 float y_scale_factor,
76 float* bitmap_scale_factor) const;
35 77
36 // Draws the image with the origin at the specified location, using the 78 // Returns true if object is null or |size_| is empty.
37 // specified paint. The upper left corner of the image is rendered at the 79 bool empty() const;
38 // specified location.
39 void DrawToCanvasInt(Canvas* canvas,
40 int x, int y,
41 const SkPaint& paint);
42 80
43 // Draws a portion of the image in the specified location. The src parameters 81 // Returns true if this is a null object.
44 // correspond to the region of the image to draw in the region defined 82 // TODO(pkotwicz): Merge this function into empty().
45 // by the dest coordinates. 83 bool isNull() const { return storage_ == NULL; }
46 //
47 // If the width or height of the source differs from that of the destination,
48 // the image will be scaled. When scaling down, it is highly recommended
49 // that you call BuildMipMap() on your image to ensure that it has
50 // a mipmap, which will result in much higher-quality output. Set |filter| to
51 // use filtering for bitmaps, otherwise the nearest-neighbor algorithm is used
52 // for resampling.
53 //
54 // An optional custom SkPaint can be provided.
55 void DrawToCanvasInt(Canvas* canvas,
56 int src_x, int src_y, int src_w, int src_h,
57 int dest_x, int dest_y, int dest_w, int dest_h,
58 bool filter);
59 void DrawToCanvasInt(Canvas* canvas,
60 int src_x, int src_y, int src_w, int src_h,
61 int dest_x, int dest_y, int dest_w, int dest_h,
62 bool filter,
63 const SkPaint& paint);
64
65 // Returns true if |size_| is empty.
66 bool IsZeroSized() const { return size_.IsEmpty(); }
67 84
68 // Width and height of image in DIP coordinate system. 85 // Width and height of image in DIP coordinate system.
69 int width() const { return size_.width(); } 86 int width() const;
70 int height() const { return size_.height(); } 87 int height() const;
88
89 // Wrapper function for SkBitmap::extractBitmap.
90 // Operates on bitmap at index 0 if available.
91 // TODO(pkotwicz): This is temporary till conversion to gfx::ImageSkia is
92 // done.
93 bool extractSubset(ImageSkia* dst, SkIRect& subset) const;
94
95 // Returns pointer to an SkBitmap contained by this object.
96 // TODO(pkotwicz): This is temporary till conversion to gfx::ImageSkia is
97 // done.
98 const SkBitmap* bitmap() const;
71 99
72 // Returns a vector with the SkBitmaps contained in this object. 100 // Returns a vector with the SkBitmaps contained in this object.
73 const std::vector<const SkBitmap*>& bitmaps() const { return bitmaps_; } 101 const std::vector<SkBitmap> bitmaps() const;
74 102
75 private: 103 private:
76 // Returns the bitmap whose density best matches |x_scale_factor| and 104 // Initialize ImageStorage with passed in parameters.
77 // |y_scale_factor|. 105 // If |bitmap.isNull()|, ImageStorage is set to NULL.
78 const SkBitmap* GetBitmapForScale(float x_scale_factor, 106 // Scale factor is set based on default scale factor of 1x.
79 float y_scale_factor) const; 107 // TODO(pkotwicz): This is temporary till conversion to gfx::ImageSkia is
108 // done.
109 void Init(const SkBitmap& bitmap);
80 110
81 std::vector<const SkBitmap*> bitmaps_; 111 // Initialize ImageStorage with passed in parameters.
82 gfx::Size size_; 112 // If |bitmap.isNull()|, ImageStorage is set to NULL.
83 bool mip_map_build_pending_; 113 void Init(const SkBitmap& bitmap, float scale_factor);
84 114
85 DISALLOW_COPY_AND_ASSIGN(ImageSkia); 115 // A null bitmap to return as not to return a temporary.
116 static SkBitmap* null_bitmap_;
117
118 // A refptr so that ImageRepSkia can be copied cheaply.
119 scoped_refptr<internal::ImageSkiaStorage> storage_;
86 }; 120 };
87 121
88 } // namespace gfx 122 } // namespace gfx
89 123
90 #endif // UI_GFX_IMAGE_IMAGE_SKIA_H_ 124 #endif // UI_GFX_IMAGE_IMAGE_SKIA_H_
OLDNEW
« no previous file with comments | « ui/gfx/image/image_mac_unittest.mm ('k') | ui/gfx/image/image_skia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698