ComTextParser Class |
Namespace: Atalasoft.Imaging.Metadata
The ComTextParser type exposes the following members.
Name | Description | |
---|---|---|
ComTextParser | Initializes a new instance of ComTextParser. |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ParseFromImage(Stream) | Parses COM Text data from an image file stream. | |
ParseFromImage(String) | Parses COM Text data from an image file. | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
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.
ComTextParser comParser = new ComTextParser(); ComTextCollection comTags = comParser.Parse("myimage.jpg");
Dim comParser As ComTextParser = New ComTextParser(); Dim comTags As ComTextCollection = comParser.Parse("myimage.jpg");