summaryrefslogtreecommitdiff
path: root/MagickWand/magick-property.c
diff options
context:
space:
mode:
Diffstat (limited to 'MagickWand/magick-property.c')
-rw-r--r--MagickWand/magick-property.c24
1 files changed, 14 insertions, 10 deletions
diff --git a/MagickWand/magick-property.c b/MagickWand/magick-property.c
index 4e2589197..c16046af5 100644
--- a/MagickWand/magick-property.c
+++ b/MagickWand/magick-property.c
@@ -23,7 +23,7 @@
% August 2003 %
% %
% %
-% Copyright 1999-2020 ImageMagick Studio LLC, a non-profit organization %
+% Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization %
% dedicated to making software imaging solutions freely available. %
% %
% You may not use this file except in compliance with the License. You may %
@@ -600,7 +600,7 @@ WandExport char **MagickGetImageArtifacts(MagickWand *wand,
const char
*artifact;
- register ssize_t
+ ssize_t
i;
size_t
@@ -752,7 +752,7 @@ WandExport char **MagickGetImageProfiles(MagickWand *wand,const char *pattern,
const char
*property;
- register ssize_t
+ ssize_t
i;
size_t
@@ -889,7 +889,7 @@ WandExport char **MagickGetImageProperties(MagickWand *wand,
const char
*property;
- register ssize_t
+ ssize_t
i;
size_t
@@ -1091,7 +1091,7 @@ WandExport char **MagickGetOptions(MagickWand *wand,const char *pattern,
const char
*option;
- register ssize_t
+ ssize_t
i;
size_t
@@ -1497,10 +1497,10 @@ WandExport double *MagickGetSamplingFactors(MagickWand *wand,
double
*sampling_factors;
- register const char
+ const char
*p;
- register ssize_t
+ ssize_t
i;
assert(wand != (MagickWand *) NULL);
@@ -2210,13 +2210,17 @@ WandExport MagickBooleanType MagickSetGravity(MagickWand *wand,
% %
% %
% %
-% M a g i c k S e t I m a g e A r t i f r c t %
+% M a g i c k S e t I m a g e A r t i f a c t %
% %
% %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
-% MagickSetImageArtifact() associates a artifact with an image.
+% MagickSetImageArtifact() sets a key-value pair in the image artifact
+% namespace. Artifacts differ from properties. Properties are public and are
+% generally exported to an external image format if the format supports it.
+% Artifacts are private and are utilized by the internal ImageMagick API to
+% modify the behavior of certain algorithms.
%
% The format of the MagickSetImageArtifact method is:
%
@@ -2775,7 +2779,7 @@ WandExport MagickBooleanType MagickSetSamplingFactors(MagickWand *wand,
char
sampling_factor[MagickPathExtent];
- register ssize_t
+ ssize_t
i;
assert(wand != (MagickWand *) NULL);