Uses of Interface
quicktime.util.EncodedImage

Packages that use EncodedImage
quicktime.std.anim   
quicktime.std.image   
quicktime.util   
 

Uses of EncodedImage in quicktime.std.anim
 

Methods in quicktime.std.anim with parameters of type EncodedImage
 void Sprite.setImageData(EncodedImage data)
          This method sets the image data property of this sprite.
 boolean Sprite.setImageDataIfDifferent(EncodedImage data)
          This method sets the image data property of this sprite.
 

Constructors in quicktime.std.anim with parameters of type EncodedImage
Sprite(SpriteWorld itsSpriteWorld, ImageDescription idh, EncodedImage imageData, Matrix matrix, boolean visible, int layer)
          This constructor creates a new Sprite object for a specified sprite world.
 

Uses of EncodedImage in quicktime.std.image
 

Methods in quicktime.std.image that return EncodedImage
 EncodedImage QTImage.getImage()
          Return the image data
 

Methods in quicktime.std.image with parameters of type EncodedImage
 CompressedFrameInfo CSequence.compressFrame(QDGraphics src, QDRect srcRect, int flags, EncodedImage data)
          Your application calls this method to compress one of a sequence of frames.
static ImageDescription QTImage.compress(QDGraphics src, QDRect srcRect, int quality, int cType, EncodedImage data)
          Compresses a single frame image that is currently stored as a pixel map.
static ImageDescription QTImage.fCompress(QDGraphics src, QDRect srcRect, int colorDepth, int quality, int cType, CodecComponent c, ColorTable clut, int flags, EncodedImage data)
          Compresses a single frame image that is currently stored as a pixel map.
static ImageDescription QTImage.convert(ImageDescription srcDD, EncodedImage srcData, int colorDepth, ColorTable clut, int accuracy, int quality, int cType, CodecComponent codec, EncodedImage dstData)
          Converts the format of a compressed image.
static void QTImage.trim(ImageDescription desc, EncodedImage inData, EncodedImage outData, QDRect trimRect)
          Ajusts a compressed image to the boundaries defined by a QDRect specified by your application.
static void QTImage.decompress(EncodedImage data, ImageDescription desc, QDGraphics dst, QDRect dstRect, int mode)
          Decompresses a single frame image into a pixel map structure.
static void QTImage.decompress(EncodedImage data, ImageDescription desc, QDGraphics dst, QDRect srcRect, QDRect dstRect, int mode, Region mask)
          Decompresses a single frame image into a pixel map structure.
static void QTImage.fDecompress(EncodedImage data, ImageDescription desc, QDGraphics dst, QDRect srcRect, Matrix matrix, int mode, Region mask, PixMap matte, QDRect matteRect, int accuracy, CodecComponent codec)
          Decompresses a single frame image into a pixel map structure.
static int QTImage.getCompressedSize(ImageDescription desc, EncodedImage data)
          Determines the size in bytes of a compressed image.
static float QTImage.getSimilarity(QDGraphics src, QDRect srcRect, ImageDescription desc, EncodedImage data)
          Compares a compressed image to a picture stored in a pixel map and returns a value indicating the relative similarity of the two images.
 void GraphicsImporter.readData(EncodedImage data, int dataOffset, int dataSize)
          Reads image data.
 void ImageSequenceDataSource.setSourceData(EncodedImage data)
          The CDSequenceSetSourceData function is called to set data in a new frame to a specific source.
 int DSequence.decompressFrameS(EncodedImage data, int inFlags)
          Your application calls this method to decompress one of a sequence of frames.
 int DSequence.decompressFrame(EncodedImage data, int inFlags)
          Your application calls this method to decompress one of a sequence of frames.
 int DSequence.decompressFrameWhen(EncodedImage data, int inFlags, ICMFrameTime frameTime)
          Queues a frame for decompression and specifies the time at which decompression will begin.
 boolean DSequence.ptInData(EncodedImage data, QDPoint where)
          Tests to see if an image contains data at a given point.
 boolean DSequence.hitTestData(EncodedImage data, QDPoint where, int hitFlags)
          The HitTestDSequenceData function allows the calling application to perform hit testing on compressed data.
 

Constructors in quicktime.std.image with parameters of type EncodedImage
QTImage(ImageDescription id, EncodedImage im)
          Associate an image description with the image data that is described by the description.
DSequence(ImageDescription desc, EncodedImage data, QDGraphics port, QDRect srcRect, Matrix matrix, Region mask, int flags, int accuracy, CodecComponent codec)
          This constructor allows you to pass a compressed sample so the codec can perform preflighting before the first decompressFrame call.
 

Uses of EncodedImage in quicktime.util
 

Classes in quicktime.util that implement EncodedImage
 class ByteEncodedImage
          ByteEncodedImages keep the encoded image data as an array of bytes.
 class IntEncodedImage
          IntEncodedImage keep the encoded image data as an array of ints.
 class RawEncodedImage
          RawEncodedImages keep the encoded image data as a pointer to some block of memory.
 

Methods in quicktime.util with parameters of type EncodedImage
static QTHandle QTHandle.fromEncodedImage(EncodedImage image)
          Returns EncodedImage data as a QTHandle.
static QTPointer QTPointer.fromEncodedImage(EncodedImage image)
          Returns EncodedImage data as a QTPointer.