stuff
This commit is contained in:
parent
651557367b
commit
a8fa211e51
10
configure.in
10
configure.in
@ -196,12 +196,14 @@ if test x"$with_magick" != "xno"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if test x"$with_magick" != "xno"; then
|
if test x"$with_magick" != "xno"; then
|
||||||
# we need ResetImageAttributeIterator() / GetNextImageAttribute() to get
|
# we need ResetImageAttributeIterator() / GetNextImageAttribute() to loop
|
||||||
# attrs, but that's 6.2+ I think ... test for them
|
# over attrs, but that's 6.2+ I think ... test for them
|
||||||
|
# graphicsmagick only has GetImageAttribute(), test for that as a fallback
|
||||||
save_LIBS=$LIBS
|
save_LIBS=$LIBS
|
||||||
LIBS="$LIBS $MAGICK_LIBS"
|
LIBS="$LIBS $MAGICK_LIBS"
|
||||||
AC_CHECK_FUNCS(GetNextImageAttribute,
|
AC_CHECK_FUNCS(GetNextImageAttribute GetImageAttribute,
|
||||||
AC_DEFINE(HAVE_MAGICK_ATTR,1,[define if your magick has attribute support.]))
|
AC_DEFINE(HAVE_MAGICK_ATTR,1,
|
||||||
|
[define if your magick has attribute support.]))
|
||||||
LIBS=$save_LIBS
|
LIBS=$save_LIBS
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -16,9 +16,10 @@
|
|||||||
* - set RGB16/GREY16 if appropriate
|
* - set RGB16/GREY16 if appropriate
|
||||||
* 10/8/07
|
* 10/8/07
|
||||||
* - support 32/64 bit imagemagick too
|
* - support 32/64 bit imagemagick too
|
||||||
* 21/2/08 Bob Friesenhahn
|
* 21/2/08
|
||||||
* - use MaxRGB if QuantumRange is missing
|
* - use MaxRGB if QuantumRange is missing (thanks Bob)
|
||||||
* - look for MAGICKCORE_HDRI_SUPPORT (thanks Marcel)
|
* - look for MAGICKCORE_HDRI_SUPPORT (thanks Marcel)
|
||||||
|
* - use image->attributes if GetNextImageAttribute() is missing
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -226,9 +227,9 @@ parse_header( Read *read )
|
|||||||
IMAGE *im = read->im;
|
IMAGE *im = read->im;
|
||||||
Image *image = read->image;
|
Image *image = read->image;
|
||||||
|
|
||||||
#ifdef HAVE_GETNEXTIMAGEATTRIBUTE
|
#ifdef HAVE_MAGICK_ATTR
|
||||||
const ImageAttribute *attr;
|
const ImageAttribute *attr;
|
||||||
#endif /*HAVE_GETNEXTIMAGEATTRIBUTE*/
|
#endif /*HAVE_MAGICK_ATTR*/
|
||||||
Image *p;
|
Image *p;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -328,11 +329,21 @@ parse_header( Read *read )
|
|||||||
*/
|
*/
|
||||||
im->Coding = IM_CODING_NONE;
|
im->Coding = IM_CODING_NONE;
|
||||||
|
|
||||||
|
#ifdef HAVE_MAGICK_ATTR
|
||||||
#ifdef HAVE_GETNEXTIMAGEATTRIBUTE
|
#ifdef HAVE_GETNEXTIMAGEATTRIBUTE
|
||||||
/* Gah, magick6.something and later only. Attach any attributes.
|
/* Gah, magick6.something and later only. Attach any attributes.
|
||||||
*/
|
*/
|
||||||
ResetImageAttributeIterator( image );
|
ResetImageAttributeIterator( image );
|
||||||
while( (attr = GetNextImageAttribute( image )) ) {
|
while( (attr = GetNextImageAttribute( image )) ) {
|
||||||
|
#elif defined(HAVE_GETIMAGEATTRIBUTE)
|
||||||
|
/* GraphicsMagick is missing the iterator: we have to loop ourselves.
|
||||||
|
* ->attributes is marked as private in the header, but there's no
|
||||||
|
* getter so we have to access it directly.
|
||||||
|
*/
|
||||||
|
for( attr = image->attributes; attr; attr = attr->next ) {
|
||||||
|
#else /*stuff*/
|
||||||
|
#error attributes enabled, but no access funcs found
|
||||||
|
#endif
|
||||||
char name_text[256];
|
char name_text[256];
|
||||||
VBuf name;
|
VBuf name;
|
||||||
|
|
||||||
@ -345,7 +356,7 @@ parse_header( Read *read )
|
|||||||
attr->key, attr->value );
|
attr->key, attr->value );
|
||||||
#endif /*DEBUG*/
|
#endif /*DEBUG*/
|
||||||
}
|
}
|
||||||
#endif /*HAVE_GETNEXTIMAGEATTRIBUTE*/
|
#endif /*HAVE_MAGICK_ATTR*/
|
||||||
|
|
||||||
/* Do we have a set of equal-sized frames? Append them.
|
/* Do we have a set of equal-sized frames? Append them.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user