Bug 1523562 [wpt PR 14847] - Make named constructors' |prototype|s have the right...
[gecko.git] / image / ImageOps.h
blob744b4f3939e909fd5c8343a11f5ccb0c406865f6
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_image_ImageOps_h
8 #define mozilla_image_ImageOps_h
10 #include "nsCOMPtr.h"
11 #include "nsRect.h"
12 #include "ImageMetadata.h"
14 class gfxDrawable;
15 class imgIContainer;
16 class nsIInputStream;
18 namespace mozilla {
20 namespace gfx {
21 class SourceSurface;
24 namespace image {
26 class Image;
27 struct Orientation;
28 class SourceBuffer;
30 class ImageOps {
31 public:
32 class ImageBuffer {
33 public:
34 NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ImageOps::ImageBuffer);
36 protected:
37 friend class ImageOps;
39 ImageBuffer() {}
40 virtual ~ImageBuffer() {}
42 virtual already_AddRefed<SourceBuffer> GetSourceBuffer() const = 0;
45 /**
46 * Creates a version of an existing image which does not animate and is frozen
47 * at the first frame.
49 * @param aImage The existing image.
51 static already_AddRefed<Image> Freeze(Image* aImage);
52 static already_AddRefed<imgIContainer> Freeze(imgIContainer* aImage);
54 /**
55 * Creates a clipped version of an existing image. Animation is unaffected.
57 * @param aImage The existing image.
58 * @param aClip The rectangle to clip the image against.
59 * @param aSVGViewportSize The specific viewort size of aImage. Unless aImage
60 * is a vector image without intrinsic size, this
61 * argument should be pass as Nothing().
63 static already_AddRefed<Image> Clip(
64 Image* aImage, nsIntRect aClip,
65 const Maybe<nsSize>& aSVGViewportSize = Nothing());
66 static already_AddRefed<imgIContainer> Clip(
67 imgIContainer* aImage, nsIntRect aClip,
68 const Maybe<nsSize>& aSVGViewportSize = Nothing());
70 /**
71 * Creates a version of an existing image which is rotated and/or flipped to
72 * the specified orientation.
74 * @param aImage The existing image.
75 * @param aOrientation The desired orientation.
77 static already_AddRefed<Image> Orient(Image* aImage,
78 Orientation aOrientation);
79 static already_AddRefed<imgIContainer> Orient(imgIContainer* aImage,
80 Orientation aOrientation);
82 /**
83 * Creates an image from a gfxDrawable.
85 * @param aDrawable The gfxDrawable.
87 static already_AddRefed<imgIContainer> CreateFromDrawable(
88 gfxDrawable* aDrawable);
90 /**
91 * Create a buffer to be used with DecodeMetadata and DecodeToSurface. Reusing
92 * an ImageBuffer representing the given input stream is more efficient if one
93 * has multiple Decode* calls to make on that stream.
95 * @param aInputStream An input stream containing an encoded image. The
96 * ownership is taken.
97 * @return An image buffer derived from the input stream.
99 static already_AddRefed<ImageBuffer> CreateImageBuffer(
100 already_AddRefed<nsIInputStream> aInputStream);
103 * Decodes an image's metadata from an nsIInputStream into the given
104 * structure. This function may be called off-main-thread.
106 * @param aInputStream An input stream containing an encoded image. Ownership
107 * is taken.
108 * @param aMimeType The MIME type of the image.
109 * @param aMetadata Where the image metadata is stored upon success.
110 * @return The status of the operation.
112 static nsresult DecodeMetadata(already_AddRefed<nsIInputStream> aInputStream,
113 const nsACString& aMimeType,
114 ImageMetadata& aMetadata);
117 * Same as above but takes an ImageBuffer instead of nsIInputStream.
119 static nsresult DecodeMetadata(ImageBuffer* aBuffer,
120 const nsACString& aMimeType,
121 ImageMetadata& aMetadata);
124 * Decodes an image from an nsIInputStream directly into a SourceSurface,
125 * without ever creating an Image or imgIContainer (which are mostly
126 * main-thread-only). That means that this function may be called
127 * off-main-thread.
129 * @param aInputStream An input stream containing an encoded image. The
130 * ownership is taken.
131 * @param aMimeType The MIME type of the image.
132 * @param aFlags Flags of the imgIContainer::FLAG_DECODE_* variety.
133 * @return A SourceSurface containing the first frame of the image at its
134 * intrinsic size, or nullptr if the image cannot be decoded.
136 static already_AddRefed<gfx::SourceSurface> DecodeToSurface(
137 already_AddRefed<nsIInputStream> aInputStream,
138 const nsACString& aMimeType, uint32_t aFlags,
139 const Maybe<gfx::IntSize>& aSize = Nothing());
142 * Same as above but takes an ImageBuffer instead of nsIInputStream.
144 static already_AddRefed<gfx::SourceSurface> DecodeToSurface(
145 ImageBuffer* aBuffer, const nsACString& aMimeType, uint32_t aFlags,
146 const Maybe<gfx::IntSize>& aSize = Nothing());
148 private:
149 class ImageBufferImpl;
151 // This is a static utility class, so disallow instantiation.
152 virtual ~ImageOps() = 0;
155 } // namespace image
156 } // namespace mozilla
158 #endif // mozilla_image_ImageOps_h