From 653e1f25bb2a85038c87539d366673b371aae2e6 Mon Sep 17 00:00:00 2001 From: dehobitto Date: Mon, 14 Sep 2026 16:13:38 +0300 Subject: [PATCH] fix(jpeg_component_info): Expose Height_in_blocks consistently with Width_in_blocks --- LibJpeg/Classic/jpeg_component_info.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/LibJpeg/Classic/jpeg_component_info.cs b/LibJpeg/Classic/jpeg_component_info.cs index 7397569..cbb0ab7 100644 --- a/LibJpeg/Classic/jpeg_component_info.cs +++ b/LibJpeg/Classic/jpeg_component_info.cs @@ -188,6 +188,16 @@ public int Width_in_blocks get { return width_in_blocks; } set { width_in_blocks = value; } } + + /// + /// Gets or sets the height in blocks. + /// + /// The height in blocks. + public int Height_in_blocks + { + get { return height_in_blocks; } + set { height_in_blocks = value; } + } /// /// Gets the downsampled width.