aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <andreas@eversberg.eu>2024-05-07 19:31:45 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2024-05-07 21:08:39 +0200
commit5dc6844c90eb38e6af687af8e922b4695f4e35b5 (patch)
treeccf125d1fd5ad0989c46a73de5dd12be89ddd80f
parent7b0168c7133d33f6278dd8827a73e9b13afc425d (diff)
Support both versions of ImageMagick: 6 and 7HEADmaster
-rw-r--r--configure.ac8
-rw-r--r--src/libimage/Makefile.am9
-rwxr-xr-xsrc/libimage/img.c53
-rw-r--r--src/tv/Makefile.am9
4 files changed, 59 insertions, 20 deletions
diff --git a/configure.ac b/configure.ac
index 9e9897a..c06a72d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,7 +36,8 @@ AS_IF([test "x$with_alsa" != xno], [PKG_CHECK_MODULES(ALSA, alsa >= 1.0, with_al
AS_IF([test "x$with_uhd" != xno], [PKG_CHECK_MODULES(UHD, uhd >= 3.0.0, with_sdr=yes with_uhd=yes, with_uhd=no)])
AS_IF([test "x$with_soapy" != xno], [PKG_CHECK_MODULES(SOAPY, SoapySDR >= 0.8.0, soapy_0_8_0_or_higher="-DSOAPY_0_8_0_OR_HIGHER", soapy_0_8_0_or_higher=)])
AS_IF([test "x$with_soapy" != xno], [PKG_CHECK_MODULES(SOAPY, SoapySDR >= 0.5.0, with_sdr=yes with_soapy=yes, with_soapy=no)])
-AS_IF([test "x$with_imagemagick" != xno], [PKG_CHECK_MODULES(IMAGEMAGICK, ImageMagick >= 7.0.0, with_imagemagick=yes, with_imagemagick=no)])
+AS_IF([test "x$with_imagemagick" != xno], [PKG_CHECK_MODULES(IMAGEMAGICK6, ImageMagick >= 6.0.0, with_imagemagick6=yes, with_imagemagick6=no)])
+AS_IF([test "x$with_imagemagick" != xno], [PKG_CHECK_MODULES(IMAGEMAGICK7, ImageMagick >= 7.0.0, with_imagemagick7=yes with_imagemagick6=no, with_imagemagick7=no)])
AS_IF([test "x$with_fuse" != xno], with_fuse=check)
AS_IF([test "x$with_fuse" == xcheck], [PKG_CHECK_MODULES(FUSE, fuse3 >= 0.30.0, with_fuse=yes, with_fuse=check)])
AS_IF([test "x$with_fuse" == xcheck], [PKG_CHECK_MODULES(FUSE, fuse2 >= 0.29.0, with_fuse=yes, with_fuse=check)])
@@ -46,12 +47,13 @@ AM_CONDITIONAL(HAVE_ALSA, test "x$with_alsa" == "xyes" )
AM_CONDITIONAL(HAVE_UHD, test "x$with_uhd" == "xyes" )
AM_CONDITIONAL(HAVE_SOAPY, test "x$with_soapy" == "xyes" )
AM_CONDITIONAL(HAVE_SDR, test "x$with_sdr" == "xyes" )
-AM_CONDITIONAL(HAVE_MAGICK, test "x$with_imagemagick" == "xyes" )
+AM_CONDITIONAL(HAVE_MAGICK6, test "x$with_imagemagick6" == "xyes" )
+AM_CONDITIONAL(HAVE_MAGICK7, test "x$with_imagemagick7" == "xyes" )
AM_CONDITIONAL(HAVE_FUSE, test "x$with_fuse" == "xyes" )
AS_IF([test "x$with_alsa" == "xyes"],[AC_MSG_NOTICE( Compiling with Alsa support )], [AC_MSG_NOTICE( Alsa sound card not supported. Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. )])
AS_IF([test "x$with_uhd" == "xyes"],[AC_MSG_NOTICE( Compiling with UHD SDR support )], [AC_MSG_NOTICE( UHD SDR not supported. Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. )])
AS_IF([test "x$with_soapy" == "xyes"],[AC_MSG_NOTICE( Compiling with SoapySDR support )], [AC_MSG_NOTICE( SoapySDR not supported. Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. )])
-AS_IF([test "x$with_imagemagick" == "xyes"],[AC_MSG_NOTICE( Compiling with ImageMagick )],[AC_MSG_NOTICE( ImageMagick not supported. Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. )])
+AS_IF([test "x$with_imagemagick6" == "xyes" || "x$with_imagemagick7" == "xyes"],[AC_MSG_NOTICE( Compiling with ImageMagick )],[AC_MSG_NOTICE( ImageMagick not supported. Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. )])
AS_IF([test "x$with_fuse" == "xyes"],[AC_MSG_NOTICE( Compiling with FUSE )],[AC_MSG_NOTICE( FUSE not supported. There will be no analog modem support. Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. )])
AS_IF([test "x$with_alsa" != "xyes" -a "x$with_sdr" != "xyes"],[AC_MSG_NOTICE( Without sound nor SDR support this project does not make sense. Please support sound card for analog transceivers or better SDR!" )],[])
diff --git a/src/libimage/Makefile.am b/src/libimage/Makefile.am
index fbbe316..3e91308 100644
--- a/src/libimage/Makefile.am
+++ b/src/libimage/Makefile.am
@@ -1,12 +1,15 @@
AM_CPPFLAGS = -Wall -Wextra -Wmissing-prototypes -g $(all_includes) \
- $(IMAGEMAGICK_CFLAGS)
+ $(IMAGEMAGICK6_CFLAGS) $(IMAGEMAGICK7_CFLAGS)
noinst_LIBRARIES = libimage.a
libimage_a_SOURCES = \
img.c
-if HAVE_MAGICK
-AM_CPPFLAGS += -DHAVE_MAGICK
+if HAVE_MAGICK6
+AM_CPPFLAGS += -DHAVE_MAGICK6
+endif
+if HAVE_MAGICK7
+AM_CPPFLAGS += -DHAVE_MAGICK7
endif
diff --git a/src/libimage/img.c b/src/libimage/img.c
index 42f2c43..f59586a 100755
--- a/src/libimage/img.c
+++ b/src/libimage/img.c
@@ -5,25 +5,46 @@
int save_depth = 16;
-#ifdef HAVE_MAGICK
+#if defined(HAVE_MAGICK6) || (HAVE_MAGICK7)
+
+#if defined(HAVE_MAGICK6)
+#include <magick/MagickCore.h>
+#endif
+#if defined(HAVE_MAGICK7)
#include <MagickCore/MagickCore.h>
+#endif
/* load given image to memory. return short RGB values */
unsigned short *load_img(int *width, int *height, const char *filename, int index)
{
Image *image = NULL;
ImageInfo *imageinfo = NULL;
+#if defined(HAVE_MAGICK6)
+ ExceptionInfo exception;
+#endif
+#if defined(HAVE_MAGICK7)
ExceptionInfo *exception;
+#endif
unsigned short *img = NULL;
MagickCoreGenesis(NULL, MagickFalse);
// InitializeMagick(NULL);
imageinfo = CloneImageInfo(0);
+#if defined(HAVE_MAGICK6)
+ GetExceptionInfo(&exception);
+#endif
+#if defined(HAVE_MAGICK7)
exception = AcquireExceptionInfo();
+#endif
sprintf(imageinfo->filename, filename, index);
+#if defined(HAVE_MAGICK6)
+ image = ReadImage(imageinfo, &exception);
+#endif
+#if defined(HAVE_MAGICK7)
image = ReadImage(imageinfo, exception);
+#endif
if (!image) {
// printf("failed to read image '%s' via *magick\n", filename);
goto exit;
@@ -48,8 +69,10 @@ exit:
if (imageinfo)
DestroyImageInfo(imageinfo);
+#if defined(HAVE_MAGICK7)
if (exception)
DestroyExceptionInfo(exception);
+#endif
MagickCoreTerminus();
// DestroyMagick();
@@ -63,18 +86,33 @@ int save_img(unsigned short *img, int width, int height, int alpha, const char *
int rc = -1;
Image *image = NULL;
ImageInfo *imageinfo = NULL;
+#if defined(HAVE_MAGICK6)
+ ExceptionInfo exception;
+#endif
+#if defined(HAVE_MAGICK7)
ExceptionInfo *exception;
+#endif
MagickCoreGenesis(NULL, MagickFalse);
// InitializeMagick(NULL);
imageinfo = CloneImageInfo(0);
+#if defined(HAVE_MAGICK6)
+ GetExceptionInfo(&exception);
+#endif
+#if defined(HAVE_MAGICK7)
exception = AcquireExceptionInfo();
+#endif
imageinfo->quality = 100;
if (strlen(filename) >= 4 && !strcmp(filename + strlen(filename) - 4, ".png"))
imageinfo->quality = 1;
+#if defined(HAVE_MAGICK6)
+ image=ConstituteImage(width, height, (alpha)?"RGBA":"RGB", ShortPixel, img, &exception);
+#endif
+#if defined(HAVE_MAGICK7)
image=ConstituteImage(width, height, (alpha)?"RGBA":"RGB", ShortPixel, img, exception);
+#endif
if (!image) {
printf("%s:failed to prepare to write image\n", __func__);
goto exit;
@@ -84,7 +122,12 @@ int save_img(unsigned short *img, int width, int height, int alpha, const char *
image->depth = save_depth;
sprintf(image->filename, filename, index); /* ACHTUNG: nicht imageinfo!!! */
+#if defined(HAVE_MAGICK6)
+ if (!WriteImage(imageinfo, image)) {
+#endif
+#if defined(HAVE_MAGICK7)
if (!WriteImage(imageinfo, image, exception)) {
+#endif
printf("%s:failed to write image\n", __func__);
goto exit;
}
@@ -98,8 +141,10 @@ exit:
if (imageinfo)
DestroyImageInfo(imageinfo);
+#if defined(HAVE_MAGICK7)
if (exception)
DestroyExceptionInfo(exception);
+#endif
MagickCoreTerminus();
// DestroyMagick();
@@ -262,12 +307,6 @@ int save_img_array(double *array, int width, int height, int alpha, const char *
unsigned short *img = NULL;
int components;
-#ifndef HAVE_MAGICK
- if (alpha) {
- printf("%s:warning, cannot save alpha component with PPM support only\n", __func__);
- alpha = 0;
- }
-#endif
components = (alpha) ? 4 : 3;
img = (unsigned short *)malloc(width * height * components * 2);
diff --git a/src/tv/Makefile.am b/src/tv/Makefile.am
index 8297bf8..1d8bb22 100644
--- a/src/tv/Makefile.am
+++ b/src/tv/Makefile.am
@@ -1,5 +1,4 @@
-AM_CPPFLAGS = -Wall -Wextra -Wmissing-prototypes -g $(all_includes) \
- $(IMAGEMAGICK_CFLAGS)
+AM_CPPFLAGS = -Wall -Wextra -Wmissing-prototypes -g $(all_includes)
bin_PROGRAMS = \
osmotv
@@ -28,7 +27,7 @@ osmotv_LDADD = \
$(top_builddir)/src/liblogging/liblogging.a \
$(LIBOSMOCORE_LIBS) \
$(ALSA_LIBS) \
- $(IMAGEMAGICK_LIBS) \
+ $(IMAGEMAGICK6_LIBS) $(IMAGEMAGICK7_LIBS) \
-lm
if HAVE_SDR
@@ -51,7 +50,3 @@ if HAVE_SDR
AM_CPPFLAGS += -DHAVE_SDR
endif
-if HAVE_MAGICK
-AM_CPPFLAGS += -DHAVE_MAGICK
-endif
-