Updated The DZI File Format (markdown)

Ophir LOJKINE 2019-08-24 17:54:04 +02:00
parent 46448cfe5a
commit f374fdd020

@ -16,7 +16,19 @@ The tile size is usually chosen so that non-edge tiles are a power of two along
Tiles are written even if they contribute no new pixels to the image. With overlap one, for example, you can have a two-pixel edge tile which simply repeats pixels in the previous tile. Tiles are written even if they contribute no new pixels to the image. With overlap one, for example, you can have a two-pixel edge tile which simply repeats pixels in the previous tile.
![DZI image overlap schema](http://pix.toile-libre.org/upload/original/1566662441.png) Here is an example of a 8 x 4 image with a tile size of 3 and an overlap of 1.
<table>
<td><img src="http://pix.toile-libre.org/upload/original/1566663036.png" alt="DZI image overlap schema"/>
<td>6 tiles would be generated:
<ul>
<li> 0_0.jpg (4x4)
<li> 1_0.jpg (5x4)
<li> 2_0.jpg (2x4)
<li> 0_1.jpg (4x2)
<li> 1_2.jpg (5x2)
<li> 2_3.jpg (2x2)
</table>
## Folder Structure ## Folder Structure