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
public class FileImageTag : ImageTag
Methods
| Method | Description |
|---|---|
FileImageTag |
The constructor of the FileImageTag class. |
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. |
GetImageTagType |
Gets the type of the image tag. |
Clone |
Creates a copy of the image tag. |
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.
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.
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.