diff -r 000000000000 -r 6474c204b198 image/src/OrientedImage.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/image/src/OrientedImage.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,70 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef MOZILLA_IMAGELIB_ORIENTEDIMAGE_H_ +#define MOZILLA_IMAGELIB_ORIENTEDIMAGE_H_ + +#include "ImageWrapper.h" +#include "mozilla/gfx/2D.h" +#include "mozilla/RefPtr.h" +#include "Orientation.h" + +namespace mozilla { +namespace image { + +/** + * An Image wrapper that rotates and/or flips an image according to a specified + * Orientation. + * + * XXX(seth): There a known (performance, not correctness) issue with + * GetImageContainer. See the comments for that method for more information. + */ +class OrientedImage : public ImageWrapper +{ + typedef mozilla::gfx::SourceSurface SourceSurface; + +public: + NS_DECL_ISUPPORTS + + virtual ~OrientedImage() { } + + virtual nsIntRect FrameRect(uint32_t aWhichFrame) MOZ_OVERRIDE; + + NS_IMETHOD GetWidth(int32_t* aWidth) MOZ_OVERRIDE; + NS_IMETHOD GetHeight(int32_t* aHeight) MOZ_OVERRIDE; + NS_IMETHOD GetIntrinsicSize(nsSize* aSize) MOZ_OVERRIDE; + NS_IMETHOD GetIntrinsicRatio(nsSize* aRatio) MOZ_OVERRIDE; + NS_IMETHOD_(mozilla::TemporaryRef) + GetFrame(uint32_t aWhichFrame, uint32_t aFlags) MOZ_OVERRIDE; + NS_IMETHOD GetImageContainer(mozilla::layers::LayerManager* aManager, + mozilla::layers::ImageContainer** _retval) MOZ_OVERRIDE; + NS_IMETHOD Draw(gfxContext* aContext, + GraphicsFilter aFilter, + const gfxMatrix& aUserSpaceToImageSpace, + const gfxRect& aFill, + const nsIntRect& aSubimage, + const nsIntSize& aViewportSize, + const SVGImageContext* aSVGContext, + uint32_t aWhichFrame, + uint32_t aFlags) MOZ_OVERRIDE; + +protected: + OrientedImage(Image* aImage, Orientation aOrientation) + : ImageWrapper(aImage) + , mOrientation(aOrientation) + { } + + gfxMatrix OrientationMatrix(const nsIntSize& aViewportSize); + +private: + Orientation mOrientation; + + friend class ImageOps; +}; + +} // namespace image +} // namespace mozilla + +#endif // MOZILLA_IMAGELIB_ORIENTEDIMAGE_H_