mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
db2ca75447
--HG-- rename : image/src/BMPFileHeaders.h => image/BMPFileHeaders.h rename : image/src/ClippedImage.cpp => image/ClippedImage.cpp rename : image/src/ClippedImage.h => image/ClippedImage.h rename : image/src/DecodePool.cpp => image/DecodePool.cpp rename : image/src/DecodePool.h => image/DecodePool.h rename : image/src/Decoder.cpp => image/Decoder.cpp rename : image/src/Decoder.h => image/Decoder.h rename : image/src/Downscaler.cpp => image/Downscaler.cpp rename : image/src/Downscaler.h => image/Downscaler.h rename : image/src/DynamicImage.cpp => image/DynamicImage.cpp rename : image/src/DynamicImage.h => image/DynamicImage.h rename : image/src/FrameAnimator.cpp => image/FrameAnimator.cpp rename : image/src/FrameAnimator.h => image/FrameAnimator.h rename : image/src/FrozenImage.cpp => image/FrozenImage.cpp rename : image/src/FrozenImage.h => image/FrozenImage.h rename : image/src/ICOFileHeaders.h => image/ICOFileHeaders.h rename : image/src/IProgressObserver.h => image/IProgressObserver.h rename : image/src/Image.cpp => image/Image.cpp rename : image/src/Image.h => image/Image.h rename : image/src/ImageFactory.cpp => image/ImageFactory.cpp rename : image/src/ImageFactory.h => image/ImageFactory.h rename : image/src/ImageMetadata.cpp => image/ImageMetadata.cpp rename : image/src/ImageMetadata.h => image/ImageMetadata.h rename : image/src/ImageOps.cpp => image/ImageOps.cpp rename : image/src/ImageOps.h => image/ImageOps.h rename : image/src/ImageRegion.h => image/ImageRegion.h rename : image/src/ImageURL.h => image/ImageURL.h rename : image/src/ImageWrapper.cpp => image/ImageWrapper.cpp rename : image/src/ImageWrapper.h => image/ImageWrapper.h rename : image/src/MultipartImage.cpp => image/MultipartImage.cpp rename : image/src/MultipartImage.h => image/MultipartImage.h rename : image/src/Orientation.h => image/Orientation.h rename : image/src/OrientedImage.cpp => image/OrientedImage.cpp rename : image/src/OrientedImage.h => image/OrientedImage.h rename : image/src/ProgressTracker.cpp => image/ProgressTracker.cpp rename : image/src/ProgressTracker.h => image/ProgressTracker.h rename : image/src/RasterImage.cpp => image/RasterImage.cpp rename : image/src/RasterImage.h => image/RasterImage.h rename : image/src/SVGDocumentWrapper.cpp => image/SVGDocumentWrapper.cpp rename : image/src/SVGDocumentWrapper.h => image/SVGDocumentWrapper.h rename : image/src/ScriptedNotificationObserver.cpp => image/ScriptedNotificationObserver.cpp rename : image/src/ScriptedNotificationObserver.h => image/ScriptedNotificationObserver.h rename : image/src/ShutdownTracker.cpp => image/ShutdownTracker.cpp rename : image/src/ShutdownTracker.h => image/ShutdownTracker.h rename : image/src/SourceBuffer.cpp => image/SourceBuffer.cpp rename : image/src/SourceBuffer.h => image/SourceBuffer.h rename : image/src/SurfaceCache.cpp => image/SurfaceCache.cpp rename : image/src/SurfaceCache.h => image/SurfaceCache.h rename : image/src/VectorImage.cpp => image/VectorImage.cpp rename : image/src/VectorImage.h => image/VectorImage.h rename : image/src/imgFrame.cpp => image/imgFrame.cpp rename : image/src/imgFrame.h => image/imgFrame.h rename : image/src/imgLoader.cpp => image/imgLoader.cpp rename : image/src/imgLoader.h => image/imgLoader.h rename : image/src/imgRequest.cpp => image/imgRequest.cpp rename : image/src/imgRequest.h => image/imgRequest.h rename : image/src/imgRequestProxy.cpp => image/imgRequestProxy.cpp rename : image/src/imgRequestProxy.h => image/imgRequestProxy.h rename : image/src/imgTools.cpp => image/imgTools.cpp rename : image/src/imgTools.h => image/imgTools.h
145 lines
4.5 KiB
C++
145 lines
4.5 KiB
C++
/* 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_image_BMPFileHeaders_h
|
|
#define mozilla_image_BMPFileHeaders_h
|
|
|
|
namespace mozilla {
|
|
namespace image {
|
|
|
|
struct BMPFILEHEADER {
|
|
char signature[2]; // String "BM"
|
|
uint32_t filesize;
|
|
int32_t reserved; // Zero
|
|
uint32_t dataoffset; // Offset to raster data
|
|
|
|
uint32_t bihsize;
|
|
};
|
|
|
|
// The length of the bitmap file header as defined in the BMP spec.
|
|
#define BFH_LENGTH 14
|
|
// Internally we store the bitmap file header with an additional 4 bytes which
|
|
// is used to store the bitmap information header size.
|
|
#define BFH_INTERNAL_LENGTH 18
|
|
|
|
#define OS2_INTERNAL_BIH_LENGTH 8
|
|
#define WIN_V3_INTERNAL_BIH_LENGTH 36
|
|
#define WIN_V5_INTERNAL_BIH_LENGTH 120
|
|
|
|
#define OS2_BIH_LENGTH 12 // This is the real BIH size (as contained in the
|
|
// bihsize field of BMPFILEHEADER)
|
|
#define WIN_V3_BIH_LENGTH 40 // This is the real BIH size (as contained in the
|
|
// bihsize field of BMPFILEHEADER)
|
|
#define WIN_V5_BIH_LENGTH 124 // This is the real BIH size (as contained in the
|
|
// bihsize field of BMPFILEHEADER)
|
|
|
|
#define OS2_HEADER_LENGTH (BFH_INTERNAL_LENGTH + OS2_INTERNAL_BIH_LENGTH)
|
|
#define WIN_V3_HEADER_LENGTH (BFH_INTERNAL_LENGTH + WIN_V3_INTERNAL_BIH_LENGTH)
|
|
#define WIN_V5_HEADER_LENGTH (BFH_INTERNAL_LENGTH + WIN_V5_INTERNAL_BIH_LENGTH)
|
|
|
|
#ifndef LCS_sRGB
|
|
#define LCS_sRGB 0x73524742
|
|
#endif
|
|
|
|
struct xyz {
|
|
int32_t x, y, z;
|
|
};
|
|
|
|
struct xyzTriple {
|
|
xyz r, g, b;
|
|
};
|
|
|
|
struct BITMAPV5HEADER {
|
|
int32_t width; // Uint16 in OS/2 BMPs
|
|
int32_t height; // Uint16 in OS/2 BMPs
|
|
uint16_t planes; // =1
|
|
uint16_t bpp; // Bits per pixel.
|
|
// The rest of the header is not available in OS/2 BMP Files
|
|
uint32_t compression; // 0=no compression 1=8bit RLE 2=4bit RLE
|
|
uint32_t image_size; // (compressed) image size. Can be 0 if
|
|
// compression==0
|
|
uint32_t xppm; // Pixels per meter, horizontal
|
|
uint32_t yppm; // Pixels per meter, vertical
|
|
uint32_t colors; // Used Colors
|
|
uint32_t important_colors; // Number of important colors. 0=all
|
|
uint32_t red_mask; // Bits used for red component
|
|
uint32_t green_mask; // Bits used for green component
|
|
uint32_t blue_mask; // Bits used for blue component
|
|
uint32_t alpha_mask; // Bits used for alpha component
|
|
uint32_t color_space; // 0x73524742=LCS_sRGB ...
|
|
// These members are unused unless color_space == LCS_CALIBRATED_RGB
|
|
xyzTriple white_point; // Logical white point
|
|
uint32_t gamma_red; // Red gamma component
|
|
uint32_t gamma_green; // Green gamma component
|
|
uint32_t gamma_blue; // Blue gamma component
|
|
uint32_t intent; // Rendering intent
|
|
// These members are unused unless color_space == LCS_PROFILE_*
|
|
uint32_t profile_offset; // Offset to profile data in bytes
|
|
uint32_t profile_size; // Size of profile data in bytes
|
|
uint32_t reserved; // =0
|
|
};
|
|
|
|
struct colorTable {
|
|
uint8_t red;
|
|
uint8_t green;
|
|
uint8_t blue;
|
|
};
|
|
|
|
struct bitFields {
|
|
uint32_t red;
|
|
uint32_t green;
|
|
uint32_t blue;
|
|
uint8_t redLeftShift;
|
|
uint8_t redRightShift;
|
|
uint8_t greenLeftShift;
|
|
uint8_t greenRightShift;
|
|
uint8_t blueLeftShift;
|
|
uint8_t blueRightShift;
|
|
};
|
|
|
|
} // namespace image
|
|
} // namespace mozilla
|
|
|
|
#define BITFIELD_LENGTH 12 // Length of the bitfields structure in the bmp file
|
|
#define USE_RGB
|
|
|
|
// BMPINFOHEADER.compression defines
|
|
#ifndef BI_RGB
|
|
#define BI_RGB 0
|
|
#endif
|
|
#ifndef BI_RLE8
|
|
#define BI_RLE8 1
|
|
#endif
|
|
#ifndef BI_RLE4
|
|
#define BI_RLE4 2
|
|
#endif
|
|
#ifndef BI_BITFIELDS
|
|
#define BI_BITFIELDS 3
|
|
#endif
|
|
// BI_ALPHABITFIELDS means no compression and specifies alpha bits
|
|
// valid only for 32bpp and 16bpp
|
|
#ifndef BI_ALPHABITFIELDS
|
|
#define BI_ALPHABITFIELDS 4
|
|
#endif
|
|
|
|
// RLE Escape codes
|
|
#define RLE_ESCAPE 0
|
|
#define RLE_ESCAPE_EOL 0
|
|
#define RLE_ESCAPE_EOF 1
|
|
#define RLE_ESCAPE_DELTA 2
|
|
|
|
/// enums for mState
|
|
enum ERLEState {
|
|
eRLEStateInitial,
|
|
eRLEStateNeedSecondEscapeByte,
|
|
eRLEStateNeedXDelta,
|
|
eRLEStateNeedYDelta, ///< mStateData will hold x delta
|
|
eRLEStateAbsoluteMode, ///< mStateData will hold count of existing data
|
|
///< to read
|
|
eRLEStateAbsoluteModePadded ///< As above, but another byte of data has to
|
|
///< be read as padding
|
|
};
|
|
|
|
#endif // mozilla_image_BMPFileHeaders_h
|