rwlogo

Rogue Wave Views
Foundation Package API Reference Guide

Product Documentation:

Rogue Wave Views
Documentation Home

List of all members | Public Member Functions | Static Public Member Functions | Protected Member Functions
IlvPostScriptEncoder Class Referenceabstract

Base PostScript encoder class. More...

#include <ilviews/util/psencode.h>

Inheritance diagram for IlvPostScriptEncoder:
IlvASCII85Encoder IlvASCIIHexEncoder IlvRunLengthEncoder

Public Member Functions

virtual ~IlvPostScriptEncoder ()
 Destructor.
 
virtual void consumeByte (IlUChar byte)=0
 Consumes a byte. More...
 
virtual void consumeBytes (IlUInt count, IlUChar const *bytes)
 Consumes an array of bytes. The default implementation calls consumeByte for each byte in the array. More...
 
virtual void emitByte (IlUChar byte)
 Emits a byte. More...
 
virtual void emitBytes (IlUInt count, IlUChar const *bytes)
 Emits an array of bytes. More...
 
virtual void flush ()
 Flushes the processed data to the output. The default implementation does nothing.
 
IlvPostScriptEncodergetEmitter () const
 Return the emitter. More...
 
virtual const char * getPostScriptDecoderName () const =0
 Returns a string containing the PostScript decoding filter name. More...
 
ILVSTDPREF ostream * getStream () const
 Return the stream used by this instance. More...
 
virtual void init ()
 Initializes the instance. The default implementation does nothing.
 
void setEmitter (IlvPostScriptEncoder *emitter)
 Sets the emitter for this encoder. More...
 
virtual void setStream (ILVSTDPREF ostream *stream)
 Sets the output stream used by this instance. More...
 

Static Public Member Functions

static IlString GetFullDecoderString (const IlvPostScriptEncoder *encoder)
 Returns the full string for an encoder. It takes into account the sub filters. More...
 

Protected Member Functions

 IlvPostScriptEncoder (ILVSTDPREF ostream *stream=0)
 Constructor. More...
 

Detailed Description

Base PostScript encoder class.

Library: display

This class allows you to encode binary data to another data representation in a PostScript compatible format. These encoders can only be used when using PostScript Level 2. Encoders can be chained.

See also IlvHexEncoder, IlvASCII85Encoder, IlvRunLengthEncoder, IlvPSDevice, IlvPSColorDevice

Constructor & Destructor Documentation

IlvPostScriptEncoder::IlvPostScriptEncoder ( ILVSTDPREF ostream *  stream = 0)
protected

Constructor.

Initializes a new instance of IlvPostScriptEncoder.

Parameters
streamthe output stream used by this instance.

Member Function Documentation

virtual void IlvPostScriptEncoder::consumeByte ( IlUChar  byte)
pure virtual

Consumes a byte.

Parameters
byteThe received byte.

Implemented in IlvRunLengthEncoder, IlvASCII85Encoder, and IlvASCIIHexEncoder.

virtual void IlvPostScriptEncoder::consumeBytes ( IlUInt  count,
IlUChar const *  bytes 
)
virtual

Consumes an array of bytes. The default implementation calls consumeByte for each byte in the array.

Parameters
countThe number of bytes.
bytesA pointer to the first element in the array.
virtual void IlvPostScriptEncoder::emitByte ( IlUChar  byte)
virtual

Emits a byte.

Parameters
byteThe emitted byte.
virtual void IlvPostScriptEncoder::emitBytes ( IlUInt  count,
IlUChar const *  bytes 
)
virtual

Emits an array of bytes.

The default implementation calls consumeByte for each byte in the array.

Parameters
countThe number of bytes.
bytesA pointer to the first element in the array.
IlvPostScriptEncoder* IlvPostScriptEncoder::getEmitter ( ) const

Return the emitter.

Returns
The emitter.
static IlString IlvPostScriptEncoder::GetFullDecoderString ( const IlvPostScriptEncoder encoder)
static

Returns the full string for an encoder. It takes into account the sub filters.

Returns
The string for this encoder.
virtual const char* IlvPostScriptEncoder::getPostScriptDecoderName ( ) const
pure virtual

Returns a string containing the PostScript decoding filter name.

Returns
The name of the PostScript decoding filter.

Implemented in IlvRunLengthEncoder, IlvASCII85Encoder, and IlvASCIIHexEncoder.

ILVSTDPREF ostream* IlvPostScriptEncoder::getStream ( ) const

Return the stream used by this instance.

Returns
The stream.
void IlvPostScriptEncoder::setEmitter ( IlvPostScriptEncoder emitter)

Sets the emitter for this encoder.

Parameters
emitterThe new emitter.
virtual void IlvPostScriptEncoder::setStream ( ILVSTDPREF ostream *  stream)
virtual

Sets the output stream used by this instance.

Parameters
streamThe new output stream.

© Copyright 2014, 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.