Browse Source
Merge pull request #9 from SLUB-digitalpreservation/hotfix_configuration_cit_tif6_baseline_slub
- bugfix, because tag value could be an array, only "any" is used; an…
pull/10/head
v0.4.1
Andreas R
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
3 deletions
-
example_configs/cit_tiff6_baseline_SLUB.cfg
|
|
@ -40,7 +40,9 @@ mode(enable_ifd_checks) |
|
|
|
262; mandatory; range(0, 2) |
|
|
|
|
|
|
|
# 273 0111 StripOffsets For each strip, the byte offset of that strip. |
|
|
|
273; mandatory; range(1, 4294967295) |
|
|
|
# TODO: 273; mandatory; range(1, 4294967295) |
|
|
|
# Hint: Because value could be an array, only "any" is used, an array of n elements not supported yet |
|
|
|
273; mandatory; any |
|
|
|
|
|
|
|
# 277 0115 SamplesPerPixel The number of components per pixel. |
|
|
|
### if RGB then 3 else 1 |
|
|
@ -53,8 +55,9 @@ mode(enable_ifd_checks) |
|
|
|
278; mandatory; range(1, 4294967295) |
|
|
|
|
|
|
|
# 279 0117 StripByteCounts For each strip, the number of bytes in the strip after compression. |
|
|
|
# Hint: Because value could be an array, only "any" is used |
|
|
|
279; mandatory; range(1, 4294967295) |
|
|
|
# TODO: 279; mandatory; range(1, 4294967295) |
|
|
|
# Hint: Because value could be an array, only "any" is used, an array of n elements not supported yet |
|
|
|
279; mandatory; any |
|
|
|
|
|
|
|
# 282 011A XResolution The number of pixels per ResolutionUnit in the ImageWidth direction. |
|
|
|
282; mandatory; range(300, 4000) |
|
|
|