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

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: Nicer diff 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
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"
13 #include "ui/base/ui_export.h"
12 #include "third_party/skia/include/core/SkBitmap.h" 14 #include "third_party/skia/include/core/SkBitmap.h"
13 #include "ui/gfx/canvas.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 // Smallest image is assumed to represent 1x density.
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 which mutate the image should operate on the SkBitmap returned
27 // from ImageSkia::GetBitmapForScale, not on ImageSkia.
28 //
29 // ImageSkia supports copy semantics as legacy from SkBitmap. Ideally, this
30 // would not be necessary and all classes which add a ref to ImageSkia would
31 // hold a ref_ptr.
23 class UI_EXPORT ImageSkia { 32 class UI_EXPORT ImageSkia {
24 public: 33 public:
34 // Creates null instance.
35 ImageSkia();
36
37 // Adds ref to passed in bitmap.
38 // DIP width and height are set based on primary monitor scale factor.
39 // TODO(pkotwicz): Remove this constructor.
40 ImageSkia(const SkBitmap& bitmap);
41
42 // Adds ref to passed in bitmap.
43 // DIP width and height are set based on |scale_factor|.
oshima 2012/04/30 21:10:08 My understanding is that this creates ImageSkia wi
44 ImageSkia(const SkBitmap& bitmap, float scale_factor);
45
46 // Takes ownership of passed in bitmap.
47 // DIP width and height are set based on primary monitor scale factor.
25 explicit ImageSkia(const SkBitmap* bitmap); 48 explicit ImageSkia(const SkBitmap* bitmap);
49
50 // Takes ownership of passed in bitmap.
51 // DIP width and height are set assuming smallest bitmap has scale factor of
52 // 1x.
26 explicit ImageSkia(const std::vector<const SkBitmap*>& bitmaps); 53 explicit ImageSkia(const std::vector<const SkBitmap*>& bitmaps);
54
55 // Copies a reference to |other|'s storage.
56 // TODO(pkotwicz): Remove this method.
57 ImageSkia(const ImageSkia& other);
58
59 // Copies a reference to |other|'s storage.
60 ImageSkia& operator=(const ImageSkia& other);
61
62 // Converts from SkBitmap.
63 // Adds ref to passed in bitmap.
64 // DIP width and height are set based on primary monitor scale factor.
65 ImageSkia& operator=(const SkBitmap& other);
66
67 // Converts to SkBitmap.
68 // TODO(pkotwicz): Remove this function.
69 operator SkBitmap() const;
70
27 ~ImageSkia(); 71 ~ImageSkia();
28 72
29 // Build mipmap at time of next call to |DrawToCanvasInt|.
30 void BuildMipMap();
31
32 // Draws the image with the origin at the specified location. The upper left
33 // corner of the image is rendered at the specified location.
34 void DrawToCanvasInt(Canvas* canvas, int x, int y);
35
36 // Draws the image with the origin at the specified location, using the
37 // specified paint. The upper left corner of the image is rendered at the
38 // specified location.
39 void DrawToCanvasInt(Canvas* canvas,
40 int x, int y,
41 const SkPaint& paint);
42
43 // Draws a portion of the image in the specified location. The src parameters
44 // correspond to the region of the image to draw in the region defined
45 // by the dest coordinates.
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
68 // Width and height of image in DIP coordinate system.
69 int width() const { return size_.width(); }
70 int height() const { return size_.height(); }
71
72 // Returns a vector with the SkBitmaps contained in this object.
73 const std::vector<const SkBitmap*>& bitmaps() const { return bitmaps_; }
74
75 private:
76 // Returns the bitmap whose density best matches |x_scale_factor| and 73 // Returns the bitmap whose density best matches |x_scale_factor| and
77 // |y_scale_factor|. 74 // |y_scale_factor|.
78 const SkBitmap* GetBitmapForScale(float x_scale_factor, 75 const SkBitmap* GetBitmapForScale(float x_scale_factor,
79 float y_scale_factor) const; 76 float y_scale_factor) const;
80 77
81 std::vector<const SkBitmap*> bitmaps_; 78 // Returns true if object is null or |size_| is empty.
82 gfx::Size size_; 79 bool empty() const;
83 bool mip_map_build_pending_;
84 80
85 DISALLOW_COPY_AND_ASSIGN(ImageSkia); 81 // Returns true if this is a null object.
82 // TODO(pkotwicz): Merge this function into empty().
83 bool isNull() const { return storage_ == NULL; }
84
85 // Width and height of image in DIP coordinate system.
86 int width() const;
87 int height() const;
88
89 // Wrapper function for SkBitmap extractBitmap.
90 // Operates on bitmap at index 0 if available.
91 // TODO(pkotwicz): Remove this function from gfx::ImageSkia.
92 bool extractSubset(ImageSkia* dst, SkIRect& subset) const;
93
94 // Returns a vector with the SkBitmaps contained in this object.
95 const std::vector<const SkBitmap*>& bitmaps() const;
96
97 private:
98 // Initialize ImageStorage with passed in parameters.
99 // If |bitmap.isNull()|, ImageStorage is set to NULL.
100 // Scale factor if is set based on primary monitor scale factor.
101 void Init(const SkBitmap* bitmap);
102
103 // Initialize ImageStorage with passed in parameters.
104 // If |bitmap.isNull()|, ImageStorage is set to NULL.
105 void Init(const SkBitmap* bitmap, float scale_factor);
106
107 // A refptr so that ImageRepSkia can be copied cheaply.
108 scoped_refptr<internal::ImageSkiaStorage> storage_;
86 }; 109 };
87 110
88 } // namespace gfx 111 } // namespace gfx
89 112
90 #endif // UI_GFX_IMAGE_IMAGE_SKIA_H_ 113 #endif // UI_GFX_IMAGE_IMAGE_SKIA_H_
OLDNEW
« no previous file with comments | « ui/gfx/image/image.cc ('k') | ui/gfx/image/image_skia.cc » ('j') | ui/gfx/image/image_skia.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698