writeRegion
R2026bClass: ImageAdapter
(Not recommended) Write block of data to region of image
The writeRegion method of the ImageAdapter class is not recommended. Instead of ImageAdapter, use
a blockedImage
object. For more information, see Version History.
Syntax
writeRegion(adapter,region_start,region_data)
Description
writeRegion(
writes a contiguous block of data adapter,region_start,region_data)region_data to the region of the image
with top-left pixel at coordinate region_start.
Input Arguments
Tips
When you construct a class that inherits from the
ImageAdapterclass, you can optionally implement this method to enable incremental, region-based writing of images. Image adapter classes that do not implement thewriteRegionmethod are read-only.