![]() |
libfacade 1.1
A library for manipulating PNG images with payloads.
|
Cfacade::png::ChunkPtr | The chunk class responsible for parsing the raw data of a PNG file |
Cfacade::png::ChunkTag | The string tag identifying a given facade::png::ChunkVec or facade::png::ChunkPtr |
▼Cfacade::png::ChunkVec | A vector-based version of a given PNG chunk |
Cfacade::png::End | The end chunk for a given PNG file |
Cfacade::png::Header | A PNG header object |
Cfacade::png::Text | A tEXt chunk object |
Cfacade::png::ZText | A compressed text chunk |
▼Cstd::exception | |
▼Cfacade::exception::Exception | The base exception that all exceptions in this library are built upon |
Cfacade::exception::AlreadyFiltered | An exception thrown when the PNG image has already been filtered |
Cfacade::exception::BadCRC | An exception thrown when the CRC didn't match expectations |
Cfacade::exception::BadPNGSignature | An exception thrown when the signature header of a given binary stream is not a PNG header |
Cfacade::exception::ChunkNotFound | An exception thrown when the chunk is not found in the PNG data |
Cfacade::exception::ImageTooSmall | An exception thrown when the possible space provided by the image data is too small for the given operation |
Cfacade::exception::InsufficientSize | An exception thrown when there was not enough data to complete the operation |
Cfacade::exception::IntegerOverflow | An exception thrown when a given integer overflows |
Cfacade::exception::InvalidBase64Character | An exception thrown when encountering an invalid Base64 character |
Cfacade::exception::InvalidBase64String | An exception thrown when encountering an invalid base64 string |
Cfacade::exception::InvalidBitDepth | An exception thrown when the given bit depth isn't a valid value |
Cfacade::exception::InvalidBitOffset | An exception thrown when the given bit offset is not a multiple of 4 |
Cfacade::exception::InvalidChunkTag | An exception thrown when a provided chunk tag is not valid |
Cfacade::exception::InvalidColorType | An exception thrown when the color type does not match the facade::png::ColorType enum |
Cfacade::exception::InvalidFilterType | An exception thrown when the given filter type does not match the facade::png::FilterType enum |
Cfacade::exception::InvalidIconHeader | An exception thrown when encountering an invalid icon file |
Cfacade::exception::InvalidPixelType | An exception thrown when the pixel type does not match the facade::png::PixelEnum enum |
Cfacade::exception::KeywordTooLong | An exception thrown when the given keyword is too long for the tEXt or zTXt chunk |
Cfacade::exception::NoData | An exception thrown when no data is provided |
Cfacade::exception::NoHeaderChunk | An exception thrown when no header chunk is present in a PNG file |
Cfacade::exception::NoIconData | An exception thrown when encountering no image data within an icon object |
Cfacade::exception::NoImageData | An exception thrown when image data is not currently loaded in the PNG object |
Cfacade::exception::NoImageDataChunks | An exception thrown when no image data chunks are present in the PNG file |
Cfacade::exception::NoKeyword | An exception thrown when no keyword is present in the given tEXt or zTXt chunk of a PNG image |
Cfacade::exception::NoPNGIcon | An exception thrown when no PNG image is present in icon data |
Cfacade::exception::NoPixels | An exception thrown when no pixels appear in a given scanline |
Cfacade::exception::NoStegoData | An exception thrown when no steganographic data is present |
Cfacade::exception::NoTrailingData | An exception thrown when no trailing data is present in the PNG image |
Cfacade::exception::NullPointer | An exception thrown when encountering a null pointer |
Cfacade::exception::OpenFileFailure | An exception thrown when a file couldn't be opened, either for reading or writing |
Cfacade::exception::OutOfBounds | An exception thrown when the operation goes out of bounds |
Cfacade::exception::PixelMismatch | An exception thrown when pixel types do not match up |
Cfacade::exception::ScanlineMismatch | An exception thrown when the scanline pixel types do not match up |
Cfacade::exception::TextNotFound | An exception returned when the given tEXt or zTXt section parameters (typically the keyword) is not found in the PNG data |
Cfacade::exception::UnsupportedPixelType | An exception thrown when the given pixel enum type is not supported |
Cfacade::exception::ZLibError | An exception thrown when encountering a ZLib error |
▼Cfacade::ico::Icon | A Windows icon file |
Cfacade::ICOPayload | An icon file containing a payload |
Cfacade::ico::IconDir | The C header for an icon directory, the root of an icon file |
Cfacade::ico::IconDirEntry | The C header for an icon bitmap entry |
▼Cfacade::png::Image | A class for loading and manipulating PNG images |
Cfacade::PNGPayload | A 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::Scanline | A 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 > |