Skip to content

Commit dfc3878

Browse files
committed
.
2 parents 7449db0 + d2fcee6 commit dfc3878

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CImg.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59502,7 +59502,11 @@ namespace cimg_library {
5950259502
S = handle.has_alpha_channel()?4:3;
5950359503
assign(W,H,1,S);
5950459504

59505-
int stride;
59505+
#if LIBHEIF_NUMERIC_VERSION < LIBHEIF_MAKE_VERSION(1, 20, 0)
59506+
int stride = 0;
59507+
#else
59508+
size_t stride = 0;
59509+
#endif
5950659510
const unsigned char *const buffer = image.get_plane(heif_channel_interleaved,&stride);
5950759511
T *ptr_r = _data, *ptr_g = data(0,0,0,1), *ptr_b = data(0,0,0,2), *ptr_a = S>3?data(0,0,0,3):0;
5950859512
cimg_forY(*this,y) {

html/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<div class="header">
2424
<a href="index.html"><img alt="Logo" src="img/logo_header.jpg" class="center_image" style="margin-top:1em;"/></a>
2525
<h2 style="padding-bottom: 1em">
26-
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.5.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.6.0</a></b> (2025/06/19)
26+
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.5.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.6.0</a></b> (2025/07/03)
2727
</h2>
2828

2929
<hr/>

html/header_doxygen.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<div class="header">
2727
<a href="../index.html"><img alt="Logo" src="../img/logo_header.jpg" class="center_image" style="margin-top:1em;"/></a>
2828
<h2 style="padding-bottom: 1em">
29-
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.5.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.6.0</a></b> (2025/06/19)
29+
Latest stable version: <b><a href="http://cimg.eu/files/CImg_.zip">3.5.5</a></b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current pre-release: <b><a href="http://cimg.eu/files/CImg_latest.zip">3.6.0</a></b> (2025/07/03)
3030
</h2>
3131

3232
<hr/>

0 commit comments

Comments
 (0)