2014-10-21 09:21:31 +08:00
|
|
|
// Aseprite Document Library
|
2016-05-14 04:08:07 +08:00
|
|
|
// Copyright (c) 2001-2016 David Capello
|
2014-10-21 09:21:31 +08:00
|
|
|
//
|
|
|
|
// This file is released under the terms of the MIT license.
|
|
|
|
// Read LICENSE.txt for more information.
|
|
|
|
|
|
|
|
#ifndef DOC_IMAGE_H_INCLUDED
|
|
|
|
#define DOC_IMAGE_H_INCLUDED
|
2014-03-30 06:40:17 +08:00
|
|
|
#pragma once
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/color.h"
|
2016-05-14 04:08:07 +08:00
|
|
|
#include "doc/color_mode.h"
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/image_buffer.h"
|
2016-05-14 04:08:07 +08:00
|
|
|
#include "doc/image_spec.h"
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/object.h"
|
|
|
|
#include "doc/pixel_format.h"
|
2014-12-28 22:06:11 +08:00
|
|
|
#include "gfx/clip.h"
|
|
|
|
#include "gfx/rect.h"
|
|
|
|
#include "gfx/size.h"
|
2012-02-13 10:21:06 +08:00
|
|
|
|
2014-10-21 09:21:31 +08:00
|
|
|
namespace doc {
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2013-11-10 06:59:05 +08:00
|
|
|
template<typename ImageTraits> class ImageBits;
|
2013-08-06 08:20:19 +08:00
|
|
|
class Palette;
|
|
|
|
class Pen;
|
|
|
|
class RgbMap;
|
|
|
|
|
2013-11-10 06:59:05 +08:00
|
|
|
class Image : public Object {
|
2013-08-06 08:20:19 +08:00
|
|
|
public:
|
2013-11-10 06:59:05 +08:00
|
|
|
enum LockType {
|
|
|
|
ReadLock, // Read-only lock
|
|
|
|
WriteLock, // Write-only lock
|
|
|
|
ReadWriteLock // Read and write
|
|
|
|
};
|
2013-08-06 08:20:19 +08:00
|
|
|
|
2013-11-11 00:26:48 +08:00
|
|
|
static Image* create(PixelFormat format, int width, int height,
|
|
|
|
const ImageBufferPtr& buffer = ImageBufferPtr());
|
2016-05-14 04:08:07 +08:00
|
|
|
static Image* create(const ImageSpec& spec,
|
|
|
|
const ImageBufferPtr& buffer = ImageBufferPtr());
|
2013-11-11 00:26:48 +08:00
|
|
|
static Image* createCopy(const Image* image,
|
|
|
|
const ImageBufferPtr& buffer = ImageBufferPtr());
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
virtual ~Image();
|
|
|
|
|
2016-05-14 04:08:07 +08:00
|
|
|
const ImageSpec& spec() const { return m_spec; }
|
|
|
|
ColorMode colorMode() const { return m_spec.colorMode(); }
|
|
|
|
PixelFormat pixelFormat() const { return (PixelFormat)colorMode(); }
|
|
|
|
int width() const { return m_spec.width(); }
|
|
|
|
int height() const { return m_spec.height(); }
|
|
|
|
gfx::Size size() const { return m_spec.size(); }
|
|
|
|
gfx::Rect bounds() const { return m_spec.bounds(); }
|
|
|
|
color_t maskColor() const { return m_spec.maskColor(); }
|
|
|
|
void setMaskColor(color_t c) { m_spec.setMaskColor(c); }
|
2013-11-10 06:59:05 +08:00
|
|
|
|
2014-11-17 08:32:18 +08:00
|
|
|
virtual int getMemSize() const override;
|
2013-11-10 06:59:05 +08:00
|
|
|
int getRowStrideSize() const;
|
|
|
|
int getRowStrideSize(int pixels_per_row) const;
|
|
|
|
|
|
|
|
template<typename ImageTraits>
|
|
|
|
ImageBits<ImageTraits> lockBits(LockType lockType, const gfx::Rect& bounds) {
|
|
|
|
return ImageBits<ImageTraits>(this, bounds);
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
2013-11-10 06:59:05 +08:00
|
|
|
template<typename ImageTraits>
|
|
|
|
ImageBits<ImageTraits> lockBits(LockType lockType, const gfx::Rect& bounds) const {
|
|
|
|
return ImageBits<ImageTraits>(const_cast<Image*>(this), bounds);
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
2013-11-10 06:59:05 +08:00
|
|
|
template<typename ImageTraits>
|
|
|
|
void unlockBits(ImageBits<ImageTraits>& imageBits) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
// Warning: These functions doesn't have (and shouldn't have)
|
2014-10-21 09:21:31 +08:00
|
|
|
// bounds checks. Use the primitives defined in doc/primitives.h
|
2013-11-10 06:59:05 +08:00
|
|
|
// in case that you need bounds check.
|
|
|
|
virtual uint8_t* getPixelAddress(int x, int y) const = 0;
|
|
|
|
virtual color_t getPixel(int x, int y) const = 0;
|
|
|
|
virtual void putPixel(int x, int y, color_t color) = 0;
|
|
|
|
virtual void clear(color_t color) = 0;
|
2014-12-28 22:06:11 +08:00
|
|
|
virtual void copy(const Image* src, gfx::Clip area) = 0;
|
2013-11-10 06:59:05 +08:00
|
|
|
virtual void drawHLine(int x1, int y, int x2, color_t color) = 0;
|
|
|
|
virtual void fillRect(int x1, int y1, int x2, int y2, color_t color) = 0;
|
|
|
|
virtual void blendRect(int x1, int y1, int x2, int y2, color_t color, int opacity) = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Image(PixelFormat format, int width, int height);
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
private:
|
2016-05-14 04:08:07 +08:00
|
|
|
ImageSpec m_spec;
|
2013-08-06 08:20:19 +08:00
|
|
|
};
|
|
|
|
|
2014-10-21 09:21:31 +08:00
|
|
|
} // namespace doc
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
// It's here because it needs a complete definition of Image class,
|
|
|
|
// and then ImageTraits are used in the next functions below.
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/image_traits.h"
|
2010-10-11 08:17:59 +08:00
|
|
|
|
2014-10-21 09:21:31 +08:00
|
|
|
namespace doc {
|
2013-08-06 08:20:19 +08:00
|
|
|
|
2013-11-10 06:59:05 +08:00
|
|
|
inline int calculate_rowstride_bytes(PixelFormat pixelFormat, int pixels_per_row)
|
2013-08-06 08:20:19 +08:00
|
|
|
{
|
|
|
|
switch (pixelFormat) {
|
2013-11-10 06:59:05 +08:00
|
|
|
case IMAGE_RGB: return RgbTraits::getRowStrideBytes(pixels_per_row);
|
|
|
|
case IMAGE_GRAYSCALE: return GrayscaleTraits::getRowStrideBytes(pixels_per_row);
|
|
|
|
case IMAGE_INDEXED: return IndexedTraits::getRowStrideBytes(pixels_per_row);
|
|
|
|
case IMAGE_BITMAP: return BitmapTraits::getRowStrideBytes(pixels_per_row);
|
2013-08-06 08:20:19 +08:00
|
|
|
}
|
|
|
|
return 0;
|
2012-02-20 09:32:44 +08:00
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
2014-10-21 09:21:31 +08:00
|
|
|
} // namespace doc
|
2009-06-01 00:02:32 +08:00
|
|
|
|
2009-08-18 05:38:00 +08:00
|
|
|
#endif
|