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

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: 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.
23 class UI_EXPORT ImageSkia { 28 class UI_EXPORT ImageSkia {
sky 2012/04/27 23:33:58 Document this supports copy semantics and why.
pkotwicz 2012/04/30 20:27:07 Done.
24 public: 29 public:
30 // Creates null instance.
31 ImageSkia();
32
33 // Adds ref to passed in bitmap.
34 // DIP width and height are set based on scale factor of 1x.
35 ImageSkia(const SkBitmap& bitmap);
sky 2012/04/27 15:47:56 explicit
pkotwicz 2012/04/27 16:14:41 This cannot be explicit. In this case we want it t
sky 2012/04/27 23:33:58 I would rather see us introduce this slowly than a
pkotwicz 2012/04/30 20:27:07 I am changing this to take the monitor scale facto
36
37 // Adds ref to passed in bitmap.
38 // DIP width and height are set based on |scale_factor|.
39 ImageSkia(const SkBitmap& bitmap, float scale_factor);
40
41 // Takes ownership of passed in bitmap.
42 // DIP width and height are set assuming scale factor of 1x.
25 explicit ImageSkia(const SkBitmap* bitmap); 43 explicit ImageSkia(const SkBitmap* bitmap);
sky 2012/04/27 23:33:58 Do we really need this to take ownership? Can't it
pkotwicz 2012/04/30 20:27:07 I think we need this as long as gfx::Image(SkBitma
44
45 // Takes ownership of passed in bitmap.
46 // DIP width and height are set assuming smallest bitmap has scale factor of
47 // 1x.
26 explicit ImageSkia(const std::vector<const SkBitmap*>& bitmaps); 48 explicit ImageSkia(const std::vector<const SkBitmap*>& bitmaps);
49
50 // Copies a reference to |other|'s storage.
51 ImageSkia(const ImageSkia& other);
52
53 // Copies a reference to |other|'s storage.
54 ImageSkia& operator=(const ImageSkia& other);
55
56 // Converts from SkBitmap.
57 // Adds ref to passed in bitmap.
58 // DIP width and height are set based on scale factor of 1x.
59 ImageSkia& operator=(const SkBitmap& other);
60
61 // Converts to SkBitmap.
62 // TODO(pkotwicz): Remove this function.
63 operator SkBitmap() const;
sky 2012/04/27 23:33:58 Why do you want this?
pkotwicz 2012/04/30 20:27:07 I want this temporarily to make the transition to
64
27 ~ImageSkia(); 65 ~ImageSkia();
28 66
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 67 // Returns the bitmap whose density best matches |x_scale_factor| and
77 // |y_scale_factor|. 68 // |y_scale_factor|.
78 const SkBitmap* GetBitmapForScale(float x_scale_factor, 69 const SkBitmap* GetBitmapForScale(float x_scale_factor,
79 float y_scale_factor) const; 70 float y_scale_factor) const;
80 71
81 std::vector<const SkBitmap*> bitmaps_; 72 // Returns true if object is null or |size_| is empty.
82 gfx::Size size_; 73 bool empty() const;
83 bool mip_map_build_pending_;
84 74
85 DISALLOW_COPY_AND_ASSIGN(ImageSkia); 75 // Returns true if this is a null object.
76 bool isNull() const { return storage_ == NULL; }
sky 2012/04/27 23:33:58 Do we really need to distinguish between empty() a
tfarina 2012/04/30 00:14:58 nit: also either is_null() or IsNull(), but not is
77
78 // Width and height of image in DIP coordinate system.
79 int width() const;
80 int height() const;
81
82 // Wrapper function for SkBitmap extractBitmap.
83 // Operates on bitmap at index 0 if available.
84 // TODO(pkotwicz): Remove this function from gfx::ImageSkia.
85 bool extractSubset(ImageSkia* dst, SkIRect& subset) const;
sky 2012/04/27 23:33:58 ExtractSubset, Make this take a SkIRect*
pkotwicz 2012/04/30 20:27:07 This is how the method is defined in the SkBitmap
86
87 // Build mipmap at time of next call to |DrawToCanvasInt| or |TileInCanvas|.
88 // TODO(pkotwicz): Do something smarter for building mipmap.
89 void BuildMipMap();
90
91 // Returns true if a mip map should be generated when the image is drawn.
92 bool ShouldBuildMipMap() 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
99 // A refptr so that ImageRepSkia can be copied cheaply.
100 scoped_refptr<internal::ImageSkiaStorage> storage_;
86 }; 101 };
87 102
88 } // namespace gfx 103 } // namespace gfx
89 104
90 #endif // UI_GFX_IMAGE_IMAGE_SKIA_H_ 105 #endif // UI_GFX_IMAGE_IMAGE_SKIA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698