! @brief Complete any write operations on an ImageFile, and close the file on the disk. @details Completes the writing of the state of the ImageFile to the disk. Some API implementations may store significant portions of the state of the ImageFile in memory. This state is moved into the disk file before it is closed. Any errors in finishing the writing are reported by throwing an exception. If an
| 349 | @see ImageFile::cancel, ImageFile::isOpen |
| 350 | */ |
| 351 | void ImageFile::close() |
| 352 | { |
| 353 | impl_->close(); |
| 354 | } |
| 355 | |
| 356 | /*! |
| 357 | @brief Stop I/O operations and delete a partially written ImageFile on the disk. |
no outgoing calls