}
}
image=AppendImages(image,stack != 0 ? MagickTrue : MagickFalse,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
for ( ; image; image=image->next)
{
goto PerlException;
}
image=EvaluateImages(image,MeanEvaluateOperator,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
/*
Create blessed Perl array for the returned image.
for (i=number_images=0; i < n; i++)
{
image=BlobToImage(info->image_info,list[i],length[i],exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
break;
for ( ; image; image=image->next)
{
for ( ; image; image=image->next)
{
clone=CloneImage(image,0,0,MagickTrue,exception);
- if ((clone == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (clone == (Image *) NULL)
break;
AddImageToRegistry(sv,clone);
rv=newRV(sv);
goto PerlException;
}
image=CoalesceImages(image,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
for ( ; image; image=image->next)
{
}
}
image=CompareImagesLayers(image,method,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
for ( ; image; image=image->next)
{
}
}
image=EvaluateImages(image,op,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
/*
Create blessed Perl array for the returned image.
}
image->background_color=background_color;
image=MergeImageLayers(image,FlattenLayer,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
/*
Create blessed Perl array for the returned image.
image=FxImage(image,expression,exception);
if (image != (Image *) NULL)
(void) SetPixelChannelMask(image,channel_mask);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
for ( ; image; image=image->next)
{
}
if (layers != (Image *) NULL)
image=layers;
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
for ( ; image; image=image->next)
{
}
image=MontageImageList(info->image_info,montage_info,image,exception);
montage_info=DestroyMontageInfo(montage_info);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
if (transparent_color.alpha != TransparentAlpha)
for (next=image; next; next=next->next)
}
}
image=MorphImages(image,number_frames,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
for ( ; image; image=image->next)
{
(void) CopyMagickString(package_info->image_info->filename,list[i],
MaxTextExtent);
image=PingImage(package_info->image_info,exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
break;
if ((package_info->image_info->file != (FILE *) NULL) ||
(package_info->image_info->blob != (void *) NULL))
MaxTextExtent);
image=ReadImages(package_info->image_info,exception);
}
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
break;
for ( ; image; image=image->next)
{
}
image=SmushImages(image,stack != 0 ? MagickTrue : MagickFalse,offset,
exception);
- if ((image == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (image == (Image *) NULL)
goto PerlException;
for ( ; image; image=image->next)
{
for ( ; image; image=image->next)
{
clone=CloneImage(image,0,0,MagickTrue,exception);
- if ((clone == (Image *) NULL) || (exception->severity >= ErrorException))
+ if (clone == (Image *) NULL)
goto PerlException;
TransformImage(&clone,crop_geometry,geometry,exception);
for ( ; clone; clone=clone->next)