Click or drag to resize

RegisteredDecoders Class

This class includes static members containing information on image decoders to use in the project when reading images as well as methods to obtain a an appropriate decoder based on an image stream or filename.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.CodecRegisteredDecoders

Namespace:  Atalasoft.Imaging.Codec
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public sealed class RegisteredDecoders

The RegisteredDecoders type exposes the following members.

Properties
  NameDescription
Public propertyStatic memberDecoders
Gets a static collection of Image Decoders that will be used to decode any arbitrary image.
Public propertyStatic memberKnownTypeDecoders Obsolete.
Gets the known type decoders.
Public propertyStatic memberUnknownTypeDecoders Obsolete.
Returns a reference to the decoders that are used for reading images that dotImage doesn't recognize as a standard ImageType.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodStatic memberGetDecoder
Returns an ImageDecoderthat can be used to decode the given stream.
Public methodStatic memberCode exampleGetDecoderFromType
Returns an ImageDecoder that matches a specific type.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodStatic memberGetImageInfo(Stream)
Returns information about an encoded image file specifying a stream.
Public methodStatic memberGetImageInfo(String)
Returns information about an encoded image file specifying a filename.
Public methodStatic memberGetImageInfo(Stream, Int32)
Returns information about an encoded image file specifying a stream and frame index.
Public methodStatic memberGetImageInfo(String, Int32)
Returns information about an encoded image file specifying a filename and frame index.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
Any file format extensions, such as the DotImage Jpeg2000 should be registered using this class by adding the decoders to the Decoders collection.
See Also