libfacade 1.1
A library for manipulating PNG images with payloads.
Loading...
Searching...
No Matches
Class Hierarchy
This inheritance list is sorted roughly, but not completely, alphabetically:
[detail level 123]
 Cfacade::png::ChunkPtrThe chunk class responsible for parsing the raw data of a PNG file
 Cfacade::png::ChunkTagThe string tag identifying a given facade::png::ChunkVec or facade::png::ChunkPtr
 Cfacade::png::ChunkVecA vector-based version of a given PNG chunk
 Cfacade::png::EndThe end chunk for a given PNG file
 Cfacade::png::HeaderA PNG header object
 Cfacade::png::TextA tEXt chunk object
 Cfacade::png::ZTextA compressed text chunk
 Cstd::exception
 Cfacade::exception::ExceptionThe base exception that all exceptions in this library are built upon
 Cfacade::exception::AlreadyFilteredAn exception thrown when the PNG image has already been filtered
 Cfacade::exception::BadCRCAn exception thrown when the CRC didn't match expectations
 Cfacade::exception::BadPNGSignatureAn exception thrown when the signature header of a given binary stream is not a PNG header
 Cfacade::exception::ChunkNotFoundAn exception thrown when the chunk is not found in the PNG data
 Cfacade::exception::ImageTooSmallAn exception thrown when the possible space provided by the image data is too small for the given operation
 Cfacade::exception::InsufficientSizeAn exception thrown when there was not enough data to complete the operation
 Cfacade::exception::IntegerOverflowAn exception thrown when a given integer overflows
 Cfacade::exception::InvalidBase64CharacterAn exception thrown when encountering an invalid Base64 character
 Cfacade::exception::InvalidBase64StringAn exception thrown when encountering an invalid base64 string
 Cfacade::exception::InvalidBitDepthAn exception thrown when the given bit depth isn't a valid value
 Cfacade::exception::InvalidBitOffsetAn exception thrown when the given bit offset is not a multiple of 4
 Cfacade::exception::InvalidChunkTagAn exception thrown when a provided chunk tag is not valid
 Cfacade::exception::InvalidColorTypeAn exception thrown when the color type does not match the facade::png::ColorType enum
 Cfacade::exception::InvalidFilterTypeAn exception thrown when the given filter type does not match the facade::png::FilterType enum
 Cfacade::exception::InvalidIconHeaderAn exception thrown when encountering an invalid icon file
 Cfacade::exception::InvalidPixelTypeAn exception thrown when the pixel type does not match the facade::png::PixelEnum enum
 Cfacade::exception::KeywordTooLongAn exception thrown when the given keyword is too long for the tEXt or zTXt chunk
 Cfacade::exception::NoDataAn exception thrown when no data is provided
 Cfacade::exception::NoHeaderChunkAn exception thrown when no header chunk is present in a PNG file
 Cfacade::exception::NoIconDataAn exception thrown when encountering no image data within an icon object
 Cfacade::exception::NoImageDataAn exception thrown when image data is not currently loaded in the PNG object
 Cfacade::exception::NoImageDataChunksAn exception thrown when no image data chunks are present in the PNG file
 Cfacade::exception::NoKeywordAn exception thrown when no keyword is present in the given tEXt or zTXt chunk of a PNG image
 Cfacade::exception::NoPNGIconAn exception thrown when no PNG image is present in icon data
 Cfacade::exception::NoPixelsAn exception thrown when no pixels appear in a given scanline
 Cfacade::exception::NoStegoDataAn exception thrown when no steganographic data is present
 Cfacade::exception::NoTrailingDataAn exception thrown when no trailing data is present in the PNG image
 Cfacade::exception::NullPointerAn exception thrown when encountering a null pointer
 Cfacade::exception::OpenFileFailureAn exception thrown when a file couldn't be opened, either for reading or writing
 Cfacade::exception::OutOfBoundsAn exception thrown when the operation goes out of bounds
 Cfacade::exception::PixelMismatchAn exception thrown when pixel types do not match up
 Cfacade::exception::ScanlineMismatchAn exception thrown when the scanline pixel types do not match up
 Cfacade::exception::TextNotFoundAn exception returned when the given tEXt or zTXt section parameters (typically the keyword) is not found in the PNG data
 Cfacade::exception::UnsupportedPixelTypeAn exception thrown when the given pixel enum type is not supported
 Cfacade::exception::ZLibErrorAn exception thrown when encountering a ZLib error
 Cfacade::ico::IconA Windows icon file
 Cfacade::ICOPayloadAn icon file containing a payload
 Cfacade::ico::IconDirThe C header for an icon directory, the root of an icon file
 Cfacade::ico::IconDirEntryThe C header for an icon bitmap entry
 Cfacade::png::ImageA class for loading and manipulating PNG images
 Cfacade::PNGPayloadA PNG-based payload helper class
 Cfacade::png::PixelSpan< PixelType >A span of data representing the underlying bits or bytes of a pixel
 Cfacade::png::Sample< _Base, _Bits >A sample of data for a given pixel
 Cfacade::png::GrayscalePixel< std::uint8_t >
 Cfacade::png::GrayscalePixel< _Base, _Bits >A grayscale pixel object, based on the facade::png::Sample class
 Cfacade::png::AlphaGrayscalePixel< _Base >A grayscale pixel with alpha channel
 Cfacade::png::PalettePixel< _Bits >A paletted pixel object
 Cfacade::png::Sample< std::uint8_t >
 Cfacade::png::Sample< std::uint8_t, sizeof(std::uint8_t) *8 >
 Cfacade::png::ScanlineBase< PixelType >The base scanline class containing a row of facade::png::PixelSpan of the given pixel type
 CScanlineVariant
 Cfacade::png::ScanlineA wrapper object for ScanlineVariant
 Cfacade::png::TrueColorPixel< _Sample >An RGB pixel object
 Cfacade::png::AlphaTrueColorPixel< _Sample >An RGB pixel with alpha channel
 Cfacade::png::TrueColorPixel< Sample8Bit >