FileImageTag
The FileImageTag
class represents an image tag that is associated with a file. It inherits from the ImageTag
class and adds additional attributes.
Definition
Namespace: Dynamsoft.Core
Assembly: Dynamsoft.Core.dll
public class FileImageTag : ImageTag
Methods
Method | Description |
---|---|
GetFilePath |
Gets the file path of the image. |
GetPageNumber |
Gets the page number of the current image in the Multi-Page image file. |
GetTotalPages |
Gets the total page number of the Multi-Page image file. |
FileImageTag |
The constructor of the FileImageTag class. |
GetImageTagType |
Gets the type of the image tag. |
Clone |
Creates a copy of the image tag. |
GetFilePath
Gets the file path of the image tag.
string GetFilePath()
Return Value
Returns the file path of the image tag.
GetPageNumber
Get the page number of the current image in the Multi-Page image file.
int GetPageNumber()
Return Value
Returns the page number of the current image in the Multi-Page image file.
GetTotalPages
Gets the total page number of the Multi-Page image file.
int GetTotalPages()
Return Value
Returns the total page number of the Multi-Page image file.
FileImageTag Constructor
The constructor of the FileImageTag
class.
FileImageTag(string filePath, int pageNumber, int totalPages)
Parameters
[in] filePath
The file path of the image tag.
[in] pageNumber
The page number of the current image in the Multi-Page image file.
[in] totalPages
The total page number of the Multi-Page image file.
GetImageTagType
Gets the type of the image tag.
EnumImageTagType GetImageTagType()
Return Value
Returns the type of the image tag.
See Also
Clone
Creates a copy of the image tag.
ImageTag Clone()
Return Value
Returns a copy of the image tag.