Rogue Wave Views 5.5.1 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
Bitmap streamer class. More...
#include <ilviews/bitmaps/png.h>
Public Member Functions | |
IlvPNGStreamer () | |
Constructor. | |
IlBoolean | canRead () const |
Indicates that the instance can read from a stream. | |
IlBoolean | canWrite () const |
Indicates that the instance can write to a stream. | |
IlBoolean | checkSignature (const IlUChar *data, IlUInt size) |
Checks the signature of the input stream. | |
IlUInt | getAlphaLevel () const |
Gets the alpha level of the PNG streamer. | |
IlUInt | getCompressionLevel () const |
Gets the compression level of the generated PNG stream. | |
IlUShort | getIndexedColors () const |
Returns the number of colors to quantize to. | |
IlBoolean | hasInterlace () const |
Gets whether the generated PNG stream is interlaced. | |
IlBoolean | isIndexed () const |
IlvBitmapData * | read (istream &stream) |
Reads a PNG image from a stream. | |
void | setAlphaLevel (IlUInt level) |
Sets the alpha level for the PNG stream. | |
void | setCompressionLevel (IlUInt level) |
Sets the compression level of the generated PNG stream. | |
void | setIndexed (IlBoolean indexed, IlUShort numcols=256) |
Sets whether the generated PNG stream is indexed. | |
void | setInterlace (IlBoolean interlace) |
Sets whether the generated PNG stream is interlaced. | |
IlBoolean | write (IlvBitmapData *data, ostream &stream) |
Writes an IlvBitmapData to a PNG stream. |
Bitmap streamer class.
Library: display
This streamer provides methods to deal with a stream containing a PNG image. It supports reading from all PNG streams. It handles transparent images by mapping alpha values greater than 50 to opaque and others to transparent.
This streamer can read and write.
When writing, it is possible to force indexed output using a specified number of colors. When reading or writing interlaced images, callbacks will be called at each pass. When reading or writing non-interlaced images, callbacks will be called at each scanline.
IlBoolean IlvPNGStreamer::canRead | ( | ) | const [virtual] |
Indicates that the instance can read from a stream.
IlTrue
. Reimplemented from IlvBitmapStreamer.
IlBoolean IlvPNGStreamer::canWrite | ( | ) | const [virtual] |
Indicates that the instance can write to a stream.
IlTrue
. Reimplemented from IlvBitmapStreamer.
Checks the signature of the input stream.
data | The data containing the signature of the stream. | |
size | The size of the data containing the signature. |
IlTrue
if the data contains a PNG signature. Implements IlvBitmapStreamer.
IlUInt IlvPNGStreamer::getAlphaLevel | ( | ) | const |
Gets the alpha level of the PNG streamer.
IlUInt IlvPNGStreamer::getCompressionLevel | ( | ) | const |
Gets the compression level of the generated PNG stream.
IlUShort IlvPNGStreamer::getIndexedColors | ( | ) | const |
Returns the number of colors to quantize to.
IlBoolean IlvPNGStreamer::hasInterlace | ( | ) | const |
Gets whether the generated PNG stream is interlaced.
IlTrue
if the generated PNG stream is interlaced. IlBoolean IlvPNGStreamer::isIndexed | ( | ) | const |
Gets whether the generated PNG stream is indexed .
IlTrue
if the generated PNG stream is indexed. IlvBitmapData* IlvPNGStreamer::read | ( | istream & | stream | ) | [virtual] |
Reads a PNG image from a stream.
stream | The stream to read from. |
IlvBitmapData
. Reimplemented from IlvBitmapStreamer.
void IlvPNGStreamer::setAlphaLevel | ( | IlUInt | level | ) |
Sets the alpha level for the PNG stream.
Alpha levels greater than the given argument are converted to a fully opaque value while alpha levels smaller than the given argument are converted to a fully transparent value.
level | The alpha level. |
void IlvPNGStreamer::setCompressionLevel | ( | IlUInt | level | ) |
Sets the compression level of the generated PNG stream.
level | The compression level:
|
Sets whether the generated PNG stream is indexed.
indexed | IlTrue if the stream is generated in indexed mode. | |
numcols | The number of desired colors if quantization is performed. |
void IlvPNGStreamer::setInterlace | ( | IlBoolean | interlace | ) |
Sets whether the generated PNG stream is interlaced.
interlace | IlTrue if the stream is interlaced. |
IlBoolean IlvPNGStreamer::write | ( | IlvBitmapData * | data, | |
ostream & | stream | |||
) | [virtual] |
Writes an IlvBitmapData
to a PNG stream.
data | The bitmap data to write. | |
stream | The stream to write to. |
IlTrue
if the bitmap data has been written. Reimplemented from IlvBitmapStreamer.
© Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.