Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify overview IFD subfile type and IFD order #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ of overview metadata, and finally the imagery itself. To make it friendly with s
rendering, we recommend starting with the imagery of the smallest overview and finishing with the imagery
of the full resolution level.

More formally, the structure of such a file is:
More formally, the layout of such a file is:

* TIFF / BigTIFF signature
* IFD ([Image File Directory](https://www.awaresystems.be/imaging/tiff/faq.html#q3)) of full resolution image
Expand All @@ -25,6 +25,10 @@ More formally, the structure of such a file is:
* Optional: tile content of first overview level
* Tile content of full resolution image.

The IFDs shall be linked by the pointers (the offset of the first IFD in the file header and the offset of the next IFD in each IFD) so that the full resolution image is first, followed by the overviews.

Each IFD representing an overview shall have the tag NewSubfileType (254) with a value of 1, indicating the "reduced resolution image" subfile type.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IFDs representing a mask should have value 4
IFDs representing the overview of a mask should have value 5

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, I'll study this suggestion and update the pull request.


### Unspecified points

* size of tile: 256 or 512 pixels are typical however
Expand Down