Click or drag to resize

ComTextParser Class

Parses COM Markers from a JPEG or PNG image into a collection of COM Text tags.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.MetadataComTextParser

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

The ComTextParser type exposes the following members.

Constructors
  NameDescription
Public methodComTextParser
Initializes a new instance of ComTextParser.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodParseFromImage(Stream)
Parses COM Text data from an image file stream.
Public methodParseFromImage(String)
Parses COM Text data from an image file.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

PNG and JPEG images support a type of metadata called COM Text. This is simple textual information that can be stored into an image. DotImage supports reading and writing this information to an image.

Examples
EX (C#)
ComTextParser comParser = new ComTextParser();
ComTextCollection comTags = comParser.Parse("myimage.jpg");
EX (Visual Basic)
Dim comParser As ComTextParser = New ComTextParser();
Dim comTags As ComTextCollection = comParser.Parse("myimage.jpg");
See Also