From 96ed7e7c31b3a588b6071d876828b7cc72a8d0aa Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Wed, 20 Jul 2016 18:22:30 +1000 Subject: [PATCH] Use hex Former-commit-id: ac8bf5b9037a86dbd4ee9d99957b6898a8fc11c0 Former-commit-id: b3eab977b14fa51d583340c859838d587eefb086 Former-commit-id: 63c923257bd9340b3a27b92899a1818ea79c9717 --- src/ImageProcessorCore/Formats/Jpg/JpegConstants.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ImageProcessorCore/Formats/Jpg/JpegConstants.cs b/src/ImageProcessorCore/Formats/Jpg/JpegConstants.cs index 27514d667..91dab75c6 100644 --- a/src/ImageProcessorCore/Formats/Jpg/JpegConstants.cs +++ b/src/ImageProcessorCore/Formats/Jpg/JpegConstants.cs @@ -18,32 +18,32 @@ namespace ImageProcessorCore.Formats /// /// Represents high detail chroma horizontal subsampling. /// - public static readonly byte[] ChromaFourFourFourHorizontal = { 1, 1, 1 }; + public static readonly byte[] ChromaFourFourFourHorizontal = { 0x1, 0x1, 0x1 }; /// /// Represents high detail chroma vertical subsampling. /// - public static readonly byte[] ChromaFourFourFourVertical = { 1, 1, 1 }; + public static readonly byte[] ChromaFourFourFourVertical = { 0x1, 0x1, 0x1 }; /// /// Represents medium detail chroma horizontal subsampling. /// - public static readonly byte[] ChromaFourTwoTwoHorizontal = { 2, 1, 1 }; + public static readonly byte[] ChromaFourTwoTwoHorizontal = { 0x2, 0x1, 0x1 }; /// /// Represents medium detail chroma vertical subsampling. /// - public static readonly byte[] ChromaFourTwoTwoVertical = { 1, 1, 1 }; + public static readonly byte[] ChromaFourTwoTwoVertical = { 0x1, 0x1, 0x1 }; /// /// Represents low detail chroma horizontal subsampling. /// - public static readonly byte[] ChromaFourTwoZeroHorizontal = { 2, 1, 1 }; + public static readonly byte[] ChromaFourTwoZeroHorizontal = { 0x2, 0x1, 0x1 }; /// /// Represents low detail chroma vertical subsampling. /// - public static readonly byte[] ChromaFourTwoZeroVertical = { 2, 1, 1 }; + public static readonly byte[] ChromaFourTwoZeroVertical = { 0x2, 0x1, 0x1 }; /// /// Describes component ids for start of frame components.