Skip to content

Commit

Permalink
VID images not permitted when compositing
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Jan 31, 2022
1 parent 0ec8137 commit f4529c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion magick/draw.c
Original file line number Diff line number Diff line change
Expand Up @@ -5482,8 +5482,9 @@ MagickExport MagickBooleanType DrawPrimitive(Image *image,
}
else
if ((LocaleCompare(clone_info->magick,"ftp") != 0) &&
(LocaleCompare(clone_info->magick,"http") != 0) &&
(LocaleCompare(clone_info->magick,"https") != 0) &&
(LocaleCompare(clone_info->magick,"http") != 0))
(LocaleCompare(clone_info->magick,"vid") != 0))
composite_images=ReadImage(clone_info,exception);
else
(void) ThrowMagickException(exception,GetMagickModule(),
Expand Down

0 comments on commit f4529c0

Please sign in to comment.