2005-04-06 01:54:26 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2005-04-06 01:54:26 +00:00
|
|
|
|
2005-04-11 04:36:18 +00:00
|
|
|
#ifndef GFX_IMAGESURFACE_H
|
|
|
|
#define GFX_IMAGESURFACE_H
|
2005-04-06 01:54:26 +00:00
|
|
|
|
|
|
|
#include "gfxASurface.h"
|
|
|
|
#include "gfxPoint.h"
|
|
|
|
|
|
|
|
// ARGB -- raw buffer.. wont be changed.. good for storing data.
|
|
|
|
|
2010-09-15 16:02:42 +00:00
|
|
|
class gfxSubimageSurface;
|
|
|
|
|
2012-06-14 22:00:44 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
class SourceSurface;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-20 05:36:47 +00:00
|
|
|
/**
|
|
|
|
* A raw image buffer. The format can be set in the constructor. Its main
|
|
|
|
* purpose is for storing read-only images and using it as a source surface,
|
|
|
|
* but it can also be drawn to.
|
|
|
|
*/
|
2006-04-27 14:41:11 +00:00
|
|
|
class THEBES_API gfxImageSurface : public gfxASurface {
|
2005-04-06 01:54:26 +00:00
|
|
|
public:
|
2005-08-20 05:36:47 +00:00
|
|
|
/**
|
2008-07-09 08:22:20 +00:00
|
|
|
* Construct an image surface around an existing buffer of image data.
|
|
|
|
* @param aData A buffer containing the image data
|
|
|
|
* @param aSize The size of the buffer
|
|
|
|
* @param aStride The stride of the buffer
|
2005-08-20 05:36:47 +00:00
|
|
|
* @param format Format of the data
|
|
|
|
*
|
|
|
|
* @see gfxImageFormat
|
2008-07-09 08:22:20 +00:00
|
|
|
*/
|
|
|
|
gfxImageSurface(unsigned char *aData, const gfxIntSize& aSize,
|
|
|
|
long aStride, gfxImageFormat aFormat);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct an image surface.
|
|
|
|
* @param aSize The size of the buffer
|
|
|
|
* @param format Format of the data
|
2005-08-20 05:36:47 +00:00
|
|
|
*
|
2008-07-09 08:22:20 +00:00
|
|
|
* @see gfxImageFormat
|
2005-08-20 05:36:47 +00:00
|
|
|
*/
|
2012-04-17 21:55:11 +00:00
|
|
|
gfxImageSurface(const gfxIntSize& size, gfxImageFormat format, bool aClear = true);
|
2006-04-04 21:54:22 +00:00
|
|
|
gfxImageSurface(cairo_surface_t *csurf);
|
|
|
|
|
2005-04-07 19:12:19 +00:00
|
|
|
virtual ~gfxImageSurface();
|
2005-04-06 01:54:26 +00:00
|
|
|
|
|
|
|
// ImageSurface methods
|
2006-03-25 00:34:48 +00:00
|
|
|
gfxImageFormat Format() const { return mFormat; }
|
2007-01-27 04:06:59 +00:00
|
|
|
|
2010-09-08 00:36:57 +00:00
|
|
|
virtual const gfxIntSize GetSize() const { return mSize; }
|
2008-06-10 23:46:32 +00:00
|
|
|
PRInt32 Width() const { return mSize.width; }
|
|
|
|
PRInt32 Height() const { return mSize.height; }
|
2007-01-27 04:06:59 +00:00
|
|
|
|
2005-08-20 05:36:47 +00:00
|
|
|
/**
|
|
|
|
* Distance in bytes between the start of a line and the start of the
|
|
|
|
* next line.
|
|
|
|
*/
|
2008-06-10 23:46:32 +00:00
|
|
|
PRInt32 Stride() const { return mStride; }
|
2005-08-20 05:36:47 +00:00
|
|
|
/**
|
|
|
|
* Returns a pointer for the image data. Users of this function can
|
|
|
|
* write to it, but must not attempt to free the buffer.
|
|
|
|
*/
|
2008-06-10 23:46:32 +00:00
|
|
|
unsigned char* Data() const { return mData; } // delete this data under us and die.
|
|
|
|
/**
|
|
|
|
* Returns the total size of the image data.
|
|
|
|
*/
|
|
|
|
PRInt32 GetDataSize() const { return mStride*mSize.height; }
|
2005-04-06 01:54:26 +00:00
|
|
|
|
2008-02-06 06:48:47 +00:00
|
|
|
/* Fast copy from another image surface; returns TRUE if successful, FALSE otherwise */
|
2011-09-29 06:19:26 +00:00
|
|
|
bool CopyFrom (gfxImageSurface *other);
|
2008-02-06 06:48:47 +00:00
|
|
|
|
2012-06-14 22:00:44 +00:00
|
|
|
/**
|
|
|
|
* Fast copy from a source surface; returns TRUE if successful, FALSE otherwise
|
|
|
|
* Assumes that the format of this surface is compatable with aSurface
|
|
|
|
*/
|
|
|
|
bool CopyFrom (mozilla::gfx::SourceSurface *aSurface);
|
|
|
|
|
2010-09-15 16:02:42 +00:00
|
|
|
/* return new Subimage with pointing to original image starting from aRect.pos
|
|
|
|
* and size of aRect.size. New subimage keeping current image reference
|
|
|
|
*/
|
|
|
|
already_AddRefed<gfxSubimageSurface> GetSubimage(const gfxRect& aRect);
|
|
|
|
|
2010-11-11 20:31:22 +00:00
|
|
|
virtual already_AddRefed<gfxImageSurface> GetAsImageSurface();
|
|
|
|
|
2011-03-09 17:27:37 +00:00
|
|
|
/** See gfxASurface.h. */
|
|
|
|
NS_OVERRIDE
|
|
|
|
virtual void MovePixels(const nsIntRect& aSourceRect,
|
|
|
|
const nsIntPoint& aDestTopLeft);
|
|
|
|
|
2010-05-13 15:52:59 +00:00
|
|
|
protected:
|
|
|
|
gfxImageSurface();
|
2010-10-25 17:57:13 +00:00
|
|
|
void InitWithData(unsigned char *aData, const gfxIntSize& aSize,
|
|
|
|
long aStride, gfxImageFormat aFormat);
|
2010-05-13 15:52:59 +00:00
|
|
|
void InitFromSurface(cairo_surface_t *csurf);
|
2011-01-04 16:40:54 +00:00
|
|
|
long ComputeStride() const { return ComputeStride(mSize, mFormat); }
|
|
|
|
|
|
|
|
static long ComputeStride(const gfxIntSize&, gfxImageFormat);
|
2006-08-09 22:43:06 +00:00
|
|
|
|
2011-09-13 14:49:01 +00:00
|
|
|
void MakeInvalid();
|
|
|
|
|
2007-02-08 20:47:48 +00:00
|
|
|
gfxIntSize mSize;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mOwnsData;
|
2005-06-30 04:58:27 +00:00
|
|
|
unsigned char *mData;
|
2006-03-25 00:34:48 +00:00
|
|
|
gfxImageFormat mFormat;
|
2006-08-09 22:43:06 +00:00
|
|
|
long mStride;
|
2005-04-06 01:54:26 +00:00
|
|
|
};
|
|
|
|
|
2010-09-15 16:02:42 +00:00
|
|
|
class THEBES_API gfxSubimageSurface : public gfxImageSurface {
|
|
|
|
protected:
|
|
|
|
friend class gfxImageSurface;
|
|
|
|
gfxSubimageSurface(gfxImageSurface* aParent,
|
|
|
|
unsigned char* aData,
|
|
|
|
const gfxIntSize& aSize);
|
|
|
|
private:
|
|
|
|
nsRefPtr<gfxImageSurface> mParent;
|
|
|
|
};
|
|
|
|
|
2005-04-11 04:36:18 +00:00
|
|
|
#endif /* GFX_IMAGESURFACE_H */
|