Once the end user of your application has created some marks, they may want to save them somewhere. Your application has the following choices of where to save them:
- Save them to a separate .ART file. This is a legacy ART storage format supported in previous versions of ImageGear ART. Using this method, your application will have to keep track of which .ART file goes with which image file, and load them together. Use ImGearART.SavePage Method with ImGearARTSaveType Enumeration.LEGACY parameter to do this.
- Save them to a separate .XML file. This is a more flexible and extendable storage format highly recommended for using. Using this method, your application will have to keep track of which .XML file goes with which image file, and load them together. Use ImGearART.SavePage Method with ImGearARTSaveType Enumeration.XML parameter to do this.
- Save the ART marks as tags or objects inside the image file. This option is only available for the raster file formats that support storing annotations, like TIFF files. Use the ImGearART.SavePage Method that takes ImGearPage Class to do this.
- Save the ART marks as annotations inside the PDF file. This option is only available for PDF format. Use the ImGearART.SavePage Method that takes ImGearPage Class to do this.
- "Burn In" the ART marks. This converts the ART marks from their native representation to the format of the raster image file, which usually destroys a lot of their functionality (for instance, once a mark is burned in to a JPEG image, it cannot be moved, resized or hidden). Use ImGearART.BurnIn Method to do this.
.ART files can be read by any other application developed with ImageGear. |