This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
commit 0fef99c62d325246f0b5f0e9470de3ac90e92aa9 Author: Gary Gregory <[email protected]> AuthorDate: Tue Jul 4 08:11:24 2023 -0400 Update URLs in comments - Document broken URLs - Use HTTPS instead of HTTP in comments where available - Format tweaks --- .../apache/commons/imaging/formats/tiff/constants/DngTagConstants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/tiff/constants/DngTagConstants.java b/src/main/java/org/apache/commons/imaging/formats/tiff/constants/DngTagConstants.java index ea037009..56dcd789 100644 --- a/src/main/java/org/apache/commons/imaging/formats/tiff/constants/DngTagConstants.java +++ b/src/main/java/org/apache/commons/imaging/formats/tiff/constants/DngTagConstants.java @@ -42,7 +42,7 @@ import org.apache.commons.imaging.formats.tiff.taginfos.TagInfoUndefineds; /** * Digital Negative (DNG) Specification. * <p> - * http://www.adobe.com/products/dng/pdfs/dng_spec_1_3_0_0.pdf -> https://helpx.adobe.com/camera-raw/digital-negative.html + * http://www.adobe.com/products/dng/pdfs/dng_spec_1_3_0_0.pdf -> https://helpx.adobe.com/camera-raw/digital-negative.html * </p> */ public final class DngTagConstants { @@ -70,6 +70,7 @@ public final class DngTagConstants { public static final TagInfoShort EXIF_TAG_CFALAYOUT = new TagInfoShort( "CFALayout", 0xc617, TiffDirectoryType.EXIF_DIRECTORY_UNKNOWN); + public static final int CFALAYOUT_VALUE_RECTANGULAR = 1; public static final int CFALAYOUT_VALUE_EVEN_COLUMNS_OFFSET_DOWN_1_2_ROW = 2; public static final int CFALAYOUT_VALUE_EVEN_COLUMNS_OFFSET_UP_1_2_ROW = 3;
