Saves zones to a multi-page zones disk file.
public void SaveZones(
string fileName
)
Overloads Sub SaveZones( _
ByVal fileName As String _
)
void SaveZones(
string fileName
)
function Leadtools.Forms.Ocr.IOcrDocument.SaveZones(String)(
fileName
)
void SaveZones(
String^ fileName
)
fileName
The name of the file that will contain the zones data.
To save and load the zones of OCR pages, you can use one of these methods:
IOcrPage.SaveZones(filename) or IOcrPage.SaveZones(stream): These methods save the zones of a particular OCR page to a single-page disk file or stream. These methods will not use the page number, and hence, the file or stream will contain zones that are not tied to any particular page and can be loaded back into any OCR page regardless of its number. To load these zones back into any OCR page, use IOcrPage.LoadZones(filename) or IOcrPage.LoadZones(stream).
IOcrPage.SaveZones(fileName, pageNumber) or IOcrPage.SaveZones(stream, pageNumber): These methods save the zones of a particular OCR page to a multi-page disk file or stream. If the file or stream exist previously, these methods will replace the zones specified in 'pageNumber' with the zones of the IOcrPage. If the file or stream does not contain zones for the specified page number, the zones will be appended to the file or stream at the end and can be loaded later using IOcrPage.LoadZones(fileName, pageNumber) or IOcrPage.LoadZones(stream, pageNumber).
IOcrDocument.SaveZones(filename) or IOcrDocument.SaveZones(stream): These methods save the zones of all the OCR pages in a document to a multi-page disk file or stream. The saved data will contain the page number of the zones. To load these zones, you can either use IOcrDocument.LoadZones(filename) or IOcrDocument.LoadZones(stream) to load the zones from a multi-page file or stream back into a multi-page OCR document. Or IOcrPage.LoadZones(fileName, pageNumber) and IOcrPage.LoadZones(stream, pageNumber) to load any single page from a multi-page OCR document into a particular OCR page.
Note on loading zones from a multi-page zone file: If the file does not contain zones data with the correct page number, the engine will not load any zones for this page. After the method returns, any OCR page that did not have zones data will contain zero zones. (the IOcrPage.Zones property contains 0 items). You can then use IOcrPage.AutoZone if required to re-zone this page.
Use IOcrDocument.LoadZones(filename) or IOcrPage.LoadZones(fileName, pageNumber) to load all or one page zones saved by this method.
To load and save the zones to a .NET stream, use IOcrDocument.SaveZones(stream), IOcrDocument.LoadZones(stream) and IOcrPage.LoadZones(stream, pageNumber).
For an example, refer to IOcrDocument.SaveZones(filename).
IOcrPage.LoadZones(fileName, pageNumber)
IOcrDocument.LoadZones(filename)
IOcrPage.LoadZones(Stream, pageNumber)
IOcrDocument.LoadZones(stream)
IOcrPage.SaveZones(fileName, pageNumber)
IOcrPage.SaveZones(stream, pageNumber)
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET