| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- //
- // SPDX-License-Identifier: BSD-3-Clause
- // Copyright (c) Contributors to the OpenEXR Project.
- //
- #ifndef IMFTILEDOUTPUTPART_H_
- #define IMFTILEDOUTPUTPART_H_
- #include "ImfForward.h"
- #include "ImfTileDescription.h"
- #include <ImathBox.h>
- OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
- //-------------------------------------------------------------------------------
- // class TiledOutputPart:
- //
- // Same interface as TiledOutputFile. Please have a reference to TiledOutputFile.
- //-------------------------------------------------------------------------------
- class TiledOutputPart
- {
- public:
- IMF_EXPORT
- TiledOutputPart(MultiPartOutputFile& multiPartFile, int partNumber);
- IMF_EXPORT
- const char * fileName () const;
- IMF_EXPORT
- const Header & header () const;
- IMF_EXPORT
- void setFrameBuffer (const FrameBuffer &frameBuffer);
- IMF_EXPORT
- const FrameBuffer & frameBuffer () const;
- IMF_EXPORT
- unsigned int tileXSize () const;
- IMF_EXPORT
- unsigned int tileYSize () const;
- IMF_EXPORT
- LevelMode levelMode () const;
- IMF_EXPORT
- LevelRoundingMode levelRoundingMode () const;
- IMF_EXPORT
- int numLevels () const;
- IMF_EXPORT
- int numXLevels () const;
- IMF_EXPORT
- int numYLevels () const;
- IMF_EXPORT
- bool isValidLevel (int lx, int ly) const;
- IMF_EXPORT
- int levelWidth (int lx) const;
- IMF_EXPORT
- int levelHeight (int ly) const;
- IMF_EXPORT
- int numXTiles (int lx = 0) const;
- IMF_EXPORT
- int numYTiles (int ly = 0) const;
- IMF_EXPORT
- IMATH_NAMESPACE::Box2i dataWindowForLevel (int l = 0) const;
- IMF_EXPORT
- IMATH_NAMESPACE::Box2i dataWindowForLevel (int lx, int ly) const;
- IMF_EXPORT
- IMATH_NAMESPACE::Box2i dataWindowForTile (int dx, int dy,
- int l = 0) const;
- IMF_EXPORT
- IMATH_NAMESPACE::Box2i dataWindowForTile (int dx, int dy,
- int lx, int ly) const;
- IMF_EXPORT
- void writeTile (int dx, int dy, int l = 0);
- IMF_EXPORT
- void writeTile (int dx, int dy, int lx, int ly);
- IMF_EXPORT
- void writeTiles (int dx1, int dx2, int dy1, int dy2,
- int lx, int ly);
- IMF_EXPORT
- void writeTiles (int dx1, int dx2, int dy1, int dy2,
- int l = 0);
- IMF_EXPORT
- void copyPixels (TiledInputFile &in);
- IMF_EXPORT
- void copyPixels (InputFile &in);
- IMF_EXPORT
- void copyPixels (TiledInputPart &in);
- IMF_EXPORT
- void copyPixels (InputPart &in);
-
-
- IMF_EXPORT
- void updatePreviewImage (const PreviewRgba newPixels[]);
- IMF_EXPORT
- void breakTile (int dx, int dy,
- int lx, int ly,
- int offset,
- int length,
- char c);
- private:
- TiledOutputFile* file;
- };
- OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
- #endif /* IMFTILEDOUTPUTPART_H_ */
|