Commit db21d54ca for imagemagick.org
commit db21d54ca5e9f64d82b0e4107446cbf53d97aa9b
Author: Dirk Lemstra <dirk@lemstra.org>
Date: Sun Jan 11 10:08:51 2026 +0100
Trim trailing whitespace.
diff --git a/MagickCore/MagickCore.h b/MagickCore/MagickCore.h
index 67892d9bf..5ac5ff853 100644
--- a/MagickCore/MagickCore.h
+++ b/MagickCore/MagickCore.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -68,7 +68,7 @@ extern "C" {
# define MAGICKCORE_WINDOWS_SUPPORT
#else
# define MAGICKCORE_POSIX_SUPPORT
-#endif
+#endif
#include "MagickCore/method-attribute.h"
diff --git a/MagickCore/accelerate-kernels-private.h b/MagickCore/accelerate-kernels-private.h
index 21daf8f24..c5536e363 100644
--- a/MagickCore/accelerate-kernels-private.h
+++ b/MagickCore/accelerate-kernels-private.h
@@ -336,7 +336,7 @@ OPENCL_ENDIF()
{
if (value >= (CLQuantum) MaxMap)
return ((uint)MaxMap);
- else
+ else
return ((uint)value);
}
)
@@ -801,7 +801,7 @@ OPENCL_ENDIF()
}
case PoissonNoise:
{
- float
+ float
poisson;
unsigned int i;
poisson=exp(-SigmaPoisson*QuantumScale*pixel);
@@ -1085,14 +1085,14 @@ OPENCL_ENDIF()
/*
*/
__kernel void Histogram(__global CLPixelType * restrict im,
- const ChannelType channel,
+ const ChannelType channel,
const unsigned int colorspace,
const unsigned int method,
__global uint4 * restrict histogram)
{
- const int x = get_global_id(0);
- const int y = get_global_id(1);
- const int columns = get_global_size(0);
+ const int x = get_global_id(0);
+ const int y = get_global_id(1);
+ const int columns = get_global_size(0);
const int c = x + y * columns;
if ((channel & SyncChannels) != 0)
{
@@ -1116,13 +1116,13 @@ OPENCL_ENDIF()
/*
*/
__kernel void ContrastStretch(__global CLPixelType * restrict im,
- const ChannelType channel,
+ const ChannelType channel,
__global CLPixelType * restrict stretch_map,
const float4 white, const float4 black)
{
- const int x = get_global_id(0);
- const int y = get_global_id(1);
- const int columns = get_global_size(0);
+ const int x = get_global_id(0);
+ const int y = get_global_id(1);
+ const int columns = get_global_size(0);
const int c = x + y * columns;
uint ePos;
@@ -1136,7 +1136,7 @@ OPENCL_ENDIF()
{
if (getRedF4(white) != getRedF4(black))
{
- ePos = ScaleQuantumToMap(getRed(oValue));
+ ePos = ScaleQuantumToMap(getRed(oValue));
eValue = stretch_map[ePos];
red = getRed(eValue);
}
@@ -1146,7 +1146,7 @@ OPENCL_ENDIF()
{
if (getGreenF4(white) != getGreenF4(black))
{
- ePos = ScaleQuantumToMap(getGreen(oValue));
+ ePos = ScaleQuantumToMap(getGreen(oValue));
eValue = stretch_map[ePos];
green = getGreen(eValue);
}
@@ -1156,7 +1156,7 @@ OPENCL_ENDIF()
{
if (getBlueF4(white) != getBlueF4(black))
{
- ePos = ScaleQuantumToMap(getBlue(oValue));
+ ePos = ScaleQuantumToMap(getBlue(oValue));
eValue = stretch_map[ePos];
blue = getBlue(eValue);
}
@@ -1166,7 +1166,7 @@ OPENCL_ENDIF()
{
if (getAlphaF4(white) != getAlphaF4(black))
{
- ePos = ScaleQuantumToMap(getAlpha(oValue));
+ ePos = ScaleQuantumToMap(getAlpha(oValue));
eValue = stretch_map[ePos];
alpha = getAlpha(eValue);
}
@@ -1351,13 +1351,13 @@ OPENCL_ENDIF()
/*
*/
__kernel void Equalize(__global CLPixelType * restrict im,
- const ChannelType channel,
+ const ChannelType channel,
__global CLPixelType * restrict equalize_map,
const float4 white, const float4 black)
{
- const int x = get_global_id(0);
- const int y = get_global_id(1);
- const int columns = get_global_size(0);
+ const int x = get_global_id(0);
+ const int y = get_global_id(1);
+ const int columns = get_global_size(0);
const int c = x + y * columns;
uint ePos;
@@ -1371,19 +1371,19 @@ OPENCL_ENDIF()
{
if (getRedF4(white) != getRedF4(black))
{
- ePos = ScaleQuantumToMap(getRed(oValue));
+ ePos = ScaleQuantumToMap(getRed(oValue));
eValue = equalize_map[ePos];
red = getRed(eValue);
- ePos = ScaleQuantumToMap(getGreen(oValue));
+ ePos = ScaleQuantumToMap(getGreen(oValue));
eValue = equalize_map[ePos];
green = getRed(eValue);
- ePos = ScaleQuantumToMap(getBlue(oValue));
+ ePos = ScaleQuantumToMap(getBlue(oValue));
eValue = equalize_map[ePos];
blue = getRed(eValue);
- ePos = ScaleQuantumToMap(getAlpha(oValue));
+ ePos = ScaleQuantumToMap(getAlpha(oValue));
eValue = equalize_map[ePos];
alpha = getRed(eValue);
-
+
//write back
im[c]=(CLPixelType)(blue, green, red, alpha);
}
@@ -1475,7 +1475,7 @@ OPENCL_ENDIF()
Improve brightness / contrast of the image
channel : define which channel is improved
function : the function called to enhance the brightness contrast
- number_parameters : numbers of parameters
+ number_parameters : numbers of parameters
parameters : the parameter
*/
__kernel void ComputeFunction(__global CLQuantum *image,const unsigned int number_channels,
@@ -1567,7 +1567,7 @@ OPENCL_ENDIF()
STRINGIFY(
__kernel void LocalContrastBlurRow(__global CLPixelType *srcImage, __global CLPixelType *dstImage, __global float *tmpImage,
- const int radius,
+ const int radius,
const int imageWidth,
const int imageHeight)
{
@@ -1617,7 +1617,7 @@ OPENCL_ENDIF()
STRINGIFY(
__kernel void LocalContrastBlurApplyColumn(__global CLPixelType *srcImage, __global CLPixelType *dstImage, __global float *blurImage,
- const int radius,
+ const int radius,
const float strength,
const int imageWidth,
const int imageHeight)
@@ -1805,7 +1805,7 @@ OPENCL_ENDIF()
*blue=ClampToQuantum(QuantumRange*b);
}
- static inline void ModulateHSL(const float percent_hue, const float percent_saturation,const float percent_lightness,
+ static inline void ModulateHSL(const float percent_hue, const float percent_saturation,const float percent_lightness,
CLQuantum *red,CLQuantum *green,CLQuantum *blue)
{
float
@@ -1827,14 +1827,14 @@ OPENCL_ENDIF()
ConvertHSLToRGB(hue,saturation,lightness,red,green,blue);
}
- __kernel void Modulate(__global CLPixelType *im,
- const float percent_brightness,
- const float percent_hue,
- const float percent_saturation,
+ __kernel void Modulate(__global CLPixelType *im,
+ const float percent_brightness,
+ const float percent_hue,
+ const float percent_saturation,
const int colorspace)
{
- const int x = get_global_id(0);
+ const int x = get_global_id(0);
const int y = get_global_id(1);
const int columns = get_global_size(0);
const int c = x + y * columns;
@@ -1855,14 +1855,14 @@ OPENCL_ENDIF()
case HSLColorspace:
default:
{
- ModulateHSL(percent_hue, percent_saturation, percent_brightness,
+ ModulateHSL(percent_hue, percent_saturation, percent_brightness,
&red, &green, &blue);
}
}
CLPixelType filteredPixel;
-
+
setRed(&filteredPixel, red);
setGreen(&filteredPixel, green);
setBlue(&filteredPixel, blue);
@@ -1885,7 +1885,7 @@ OPENCL_ENDIF()
*/
STRINGIFY(
- __kernel
+ __kernel
void MotionBlur(const __global CLPixelType *input, __global CLPixelType *output,
const unsigned int imageWidth, const unsigned int imageHeight,
const __global float *filter, const unsigned int width, const __global int2* offset,
@@ -1907,7 +1907,7 @@ OPENCL_ENDIF()
pixel.w = (float)bias.w;
if (((channel & AlphaChannel) == 0) || (matte == 0)) {
-
+
for (int i = 0; i < width; i++) {
// only support EdgeVirtualPixelMethod through ClampToCanvas
// TODO: implement other virtual pixel method
@@ -1983,7 +1983,7 @@ OPENCL_ENDIF()
return 1.0f;
}
)
-
+
STRINGIFY(
// Based on CubicBC from resize.c
float CubicBC(const float x,const __global float* resizeFilterCoefficients)
@@ -2096,7 +2096,7 @@ OPENCL_ENDIF()
{
switch (filterType)
{
- /* Call Sinc even for SincFast to get better precision on GPU
+ /* Call Sinc even for SincFast to get better precision on GPU
and to avoid thread divergence. Sinc is pretty fast on GPU anyway...*/
case SincWeightingFunction:
case SincFastWeightingFunction:
@@ -2161,7 +2161,7 @@ OPENCL_ENDIF()
pixelIndex = (pixelIndex<pixelPerWorkgroup)?pixelIndex:-1;
return pixelIndex;
}
-
+
)
STRINGIFY(
diff --git a/MagickCore/accelerate-private.h b/MagickCore/accelerate-private.h
index ee66ee2e7..4aef0bd7c 100644
--- a/MagickCore/accelerate-private.h
+++ b/MagickCore/accelerate-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/annotate-private.h b/MagickCore/annotate-private.h
index 3c5692ad5..7e2f790fd 100644
--- a/MagickCore/annotate-private.h
+++ b/MagickCore/annotate-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/annotate.h b/MagickCore/annotate.h
index d79904c8a..a12004cd2 100644
--- a/MagickCore/annotate.h
+++ b/MagickCore/annotate.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/artifact.h b/MagickCore/artifact.h
index d84f3788f..90cf08b59 100644
--- a/MagickCore/artifact.h
+++ b/MagickCore/artifact.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/attribute.h b/MagickCore/attribute.h
index fbab25a3c..f5f3ed5e7 100644
--- a/MagickCore/attribute.h
+++ b/MagickCore/attribute.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/blob-private.h b/MagickCore/blob-private.h
index b97716679..e56c02e63 100644
--- a/MagickCore/blob-private.h
+++ b/MagickCore/blob-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/blob.h b/MagickCore/blob.h
index 6a53f4ae8..26d49ffcb 100644
--- a/MagickCore/blob.h
+++ b/MagickCore/blob.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/cache-view.h b/MagickCore/cache-view.h
index 7a820d5f2..be81e4107 100644
--- a/MagickCore/cache-view.h
+++ b/MagickCore/cache-view.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/cache.h b/MagickCore/cache.h
index 748383f4d..69d2ba3a5 100644
--- a/MagickCore/cache.h
+++ b/MagickCore/cache.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/cipher.h b/MagickCore/cipher.h
index 85a4cc99e..38f7002f9 100644
--- a/MagickCore/cipher.h
+++ b/MagickCore/cipher.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/client.h b/MagickCore/client.h
index 1dbe8d31c..f0610f896 100644
--- a/MagickCore/client.h
+++ b/MagickCore/client.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/coder-private.h b/MagickCore/coder-private.h
index 3601ce0ce..80e460b02 100644
--- a/MagickCore/coder-private.h
+++ b/MagickCore/coder-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/coder.h b/MagickCore/coder.h
index 73cf362ca..577f4b5ef 100644
--- a/MagickCore/coder.h
+++ b/MagickCore/coder.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/color.h b/MagickCore/color.h
index 0f043e903..812f9466d 100644
--- a/MagickCore/color.h
+++ b/MagickCore/color.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/colormap-private.h b/MagickCore/colormap-private.h
index cdf83d906..74317988a 100644
--- a/MagickCore/colormap-private.h
+++ b/MagickCore/colormap-private.h
@@ -41,7 +41,7 @@ static inline ssize_t ConstrainColormapIndex(Image *image,const ssize_t index,
static inline void ValidateColormapValue(Image *image,const ssize_t index,
Quantum *target,ExceptionInfo *exception)
-{
+{
if ((index < 0) || (index >= (ssize_t) image->colors))
{
if (exception->severity != CorruptImageError)
diff --git a/MagickCore/colormap.h b/MagickCore/colormap.h
index 72ca5bce3..de328e1a8 100644
--- a/MagickCore/colormap.h
+++ b/MagickCore/colormap.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/colorspace-private.h b/MagickCore/colorspace-private.h
index 6f1514cbf..a95a37f1d 100644
--- a/MagickCore/colorspace-private.h
+++ b/MagickCore/colorspace-private.h
@@ -753,7 +753,7 @@ static inline void ConvertXYZToCAT02LMS(const double X,const double Y,
{
*L=0.7328*X+0.4296*Y-0.1624*Z;
*M=(-0.7036)*X+1.6975*Y+0.0061*Z;
- *S=0.0030*X+0.0136*Y+0.9834*Z;
+ *S=0.0030*X+0.0136*Y+0.9834*Z;
}
static inline void ConvertRGBToXYZ(const double red,const double green,
diff --git a/MagickCore/compare-private.h b/MagickCore/compare-private.h
index e2aa6afff..1113742ff 100644
--- a/MagickCore/compare-private.h
+++ b/MagickCore/compare-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/compare.h b/MagickCore/compare.h
index a1aa6302a..8f32727f1 100644
--- a/MagickCore/compare.h
+++ b/MagickCore/compare.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/composite.h b/MagickCore/composite.h
index 558fd88a0..49607ad45 100644
--- a/MagickCore/composite.h
+++ b/MagickCore/composite.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/compress.h b/MagickCore/compress.h
index 0b9b954a2..2ae7b643a 100644
--- a/MagickCore/compress.h
+++ b/MagickCore/compress.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/configure-private.h b/MagickCore/configure-private.h
index 180ea3f02..606630505 100644
--- a/MagickCore/configure-private.h
+++ b/MagickCore/configure-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/configure.h b/MagickCore/configure.h
index 498f43663..69098c750 100644
--- a/MagickCore/configure.h
+++ b/MagickCore/configure.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/constitute-private.h b/MagickCore/constitute-private.h
index 9788b5dd4..f6a3222ef 100644
--- a/MagickCore/constitute-private.h
+++ b/MagickCore/constitute-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/constitute.h b/MagickCore/constitute.h
index 55c259679..973830986 100644
--- a/MagickCore/constitute.h
+++ b/MagickCore/constitute.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/decorate.h b/MagickCore/decorate.h
index 0fb0de920..98c8015ef 100644
--- a/MagickCore/decorate.h
+++ b/MagickCore/decorate.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/delegate-private.h b/MagickCore/delegate-private.h
index ae5779824..f76a3443c 100644
--- a/MagickCore/delegate-private.h
+++ b/MagickCore/delegate-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/delegate.h b/MagickCore/delegate.h
index aa7121cf3..4ce6a566b 100644
--- a/MagickCore/delegate.h
+++ b/MagickCore/delegate.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/deprecate.h b/MagickCore/deprecate.h
index 395c4c70c..8572f5288 100644
--- a/MagickCore/deprecate.h
+++ b/MagickCore/deprecate.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -38,7 +38,7 @@ extern MagickExport void
*ImageToHBITMAP(Image *,ExceptionInfo *);
#endif
-extern MagickExport void
+extern MagickExport void
InitializePixelChannelMap(Image *) magick_attribute((deprecated));
#endif
diff --git a/MagickCore/display-private.h b/MagickCore/display-private.h
index bd5a07561..ff04856b2 100644
--- a/MagickCore/display-private.h
+++ b/MagickCore/display-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/display.h b/MagickCore/display.h
index 74d8ee7b3..4bc937668 100644
--- a/MagickCore/display.h
+++ b/MagickCore/display.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/distort.h b/MagickCore/distort.h
index 6cc5856f3..14405ee9c 100644
--- a/MagickCore/distort.h
+++ b/MagickCore/distort.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/draw-private.h b/MagickCore/draw-private.h
index 37081d7f4..03d70d7c3 100644
--- a/MagickCore/draw-private.h
+++ b/MagickCore/draw-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/effect.h b/MagickCore/effect.h
index a90724f35..44064e693 100644
--- a/MagickCore/effect.h
+++ b/MagickCore/effect.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/exception.h b/MagickCore/exception.h
index c6c733e43..5eb83c072 100644
--- a/MagickCore/exception.h
+++ b/MagickCore/exception.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/feature.h b/MagickCore/feature.h
index fb28cd888..8ef7a93af 100644
--- a/MagickCore/feature.h
+++ b/MagickCore/feature.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/fourier.h b/MagickCore/fourier.h
index dae27aa1a..cb88cc5a7 100644
--- a/MagickCore/fourier.h
+++ b/MagickCore/fourier.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/fx-private.h b/MagickCore/fx-private.h
index 3122cfc9c..4c8bdf3dd 100644
--- a/MagickCore/fx-private.h
+++ b/MagickCore/fx-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 2022 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/fx.h b/MagickCore/fx.h
index 5a31245f1..94c0fc069 100644
--- a/MagickCore/fx.h
+++ b/MagickCore/fx.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/gem.h b/MagickCore/gem.h
index 68f826c79..adca0a017 100644
--- a/MagickCore/gem.h
+++ b/MagickCore/gem.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/geometry-private.h b/MagickCore/geometry-private.h
index b696dffd5..5dae07165 100644
--- a/MagickCore/geometry-private.h
+++ b/MagickCore/geometry-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/histogram.h b/MagickCore/histogram.h
index b850d2075..b9898a29f 100644
--- a/MagickCore/histogram.h
+++ b/MagickCore/histogram.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/identify.h b/MagickCore/identify.h
index 45216b2ad..1f93ceb6a 100644
--- a/MagickCore/identify.h
+++ b/MagickCore/identify.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/image-view.h b/MagickCore/image-view.h
index 7a004a44d..28591079f 100644
--- a/MagickCore/image-view.h
+++ b/MagickCore/image-view.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/layer.h b/MagickCore/layer.h
index 641e524f4..feba916e7 100644
--- a/MagickCore/layer.h
+++ b/MagickCore/layer.h
@@ -1,12 +1,12 @@
/*
Copyright @ 2006 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/linked-list.h b/MagickCore/linked-list.h
index a9cce418f..22c5efb09 100644
--- a/MagickCore/linked-list.h
+++ b/MagickCore/linked-list.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/list.h b/MagickCore/list.h
index 6ce4e9c36..565078e1b 100644
--- a/MagickCore/list.h
+++ b/MagickCore/list.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/locale-private.h b/MagickCore/locale-private.h
index 23264d16e..f04e0c113 100644
--- a/MagickCore/locale-private.h
+++ b/MagickCore/locale-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/locale_.h b/MagickCore/locale_.h
index 60a27e84f..8c6af66aa 100644
--- a/MagickCore/locale_.h
+++ b/MagickCore/locale_.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/log-private.h b/MagickCore/log-private.h
index 0d95bc8c6..f388d9fc2 100644
--- a/MagickCore/log-private.h
+++ b/MagickCore/log-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/log.h b/MagickCore/log.h
index c848f4c8a..2ee79dca8 100644
--- a/MagickCore/log.h
+++ b/MagickCore/log.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/magic-private.h b/MagickCore/magic-private.h
index 0ea430a74..f8d4fd3cf 100644
--- a/MagickCore/magic-private.h
+++ b/MagickCore/magic-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/magic.h b/MagickCore/magic.h
index 15934fe5e..8acc0d3c4 100644
--- a/MagickCore/magic.h
+++ b/MagickCore/magic.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/magick-private.h b/MagickCore/magick-private.h
index 119219580..d35ae833c 100644
--- a/MagickCore/magick-private.h
+++ b/MagickCore/magick-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/magick.h b/MagickCore/magick.h
index 97aadee96..49b23cdff 100644
--- a/MagickCore/magick.h
+++ b/MagickCore/magick.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/matrix-private.h b/MagickCore/matrix-private.h
index 8b5b3b63c..b665d4289 100644
--- a/MagickCore/matrix-private.h
+++ b/MagickCore/matrix-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/matrix.h b/MagickCore/matrix.h
index 7a7fc61cc..55b1b716f 100644
--- a/MagickCore/matrix.h
+++ b/MagickCore/matrix.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/memory-private.h b/MagickCore/memory-private.h
index 5d20c07ca..b21445727 100644
--- a/MagickCore/memory-private.h
+++ b/MagickCore/memory-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/methods.h b/MagickCore/methods.h
index 6abcad5cb..1f4f60f9f 100644
--- a/MagickCore/methods.h
+++ b/MagickCore/methods.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/mime-private.h b/MagickCore/mime-private.h
index f6f2613b1..8d0cfad89 100644
--- a/MagickCore/mime-private.h
+++ b/MagickCore/mime-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/mime.h b/MagickCore/mime.h
index 926900cca..ff0cd9a8e 100644
--- a/MagickCore/mime.h
+++ b/MagickCore/mime.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/module-private.h b/MagickCore/module-private.h
index 4c2eee291..4791c45b1 100644
--- a/MagickCore/module-private.h
+++ b/MagickCore/module-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/module.h b/MagickCore/module.h
index 14c2f5e6c..b11a176ad 100644
--- a/MagickCore/module.h
+++ b/MagickCore/module.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/monitor-private.h b/MagickCore/monitor-private.h
index 4ced010e6..9b62a7075 100644
--- a/MagickCore/monitor-private.h
+++ b/MagickCore/monitor-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/monitor.h b/MagickCore/monitor.h
index 6fc59e5ca..1771a930f 100644
--- a/MagickCore/monitor.h
+++ b/MagickCore/monitor.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/montage.h b/MagickCore/montage.h
index 53c5b5945..9dab33eea 100644
--- a/MagickCore/montage.h
+++ b/MagickCore/montage.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/morphology-private.h b/MagickCore/morphology-private.h
index 1cdccf35f..b73c6b680 100644
--- a/MagickCore/morphology-private.h
+++ b/MagickCore/morphology-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/morphology.h b/MagickCore/morphology.h
index 5a02c0306..0699d9764 100644
--- a/MagickCore/morphology.h
+++ b/MagickCore/morphology.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/nt-feature.h b/MagickCore/nt-feature.h
index 5f00c8f5a..f5bbf0ed4 100644
--- a/MagickCore/nt-feature.h
+++ b/MagickCore/nt-feature.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/opencl.h b/MagickCore/opencl.h
index a4b517967..0e3a4e74c 100644
--- a/MagickCore/opencl.h
+++ b/MagickCore/opencl.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/option-private.h b/MagickCore/option-private.h
index 7a80c1c66..8ae0d081a 100644
--- a/MagickCore/option-private.h
+++ b/MagickCore/option-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/option.h b/MagickCore/option.h
index 8c4a3ffb5..e087cc1e9 100644
--- a/MagickCore/option.h
+++ b/MagickCore/option.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/paint.h b/MagickCore/paint.h
index 624fcf02e..f2c755c79 100644
--- a/MagickCore/paint.h
+++ b/MagickCore/paint.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/policy-private.h b/MagickCore/policy-private.h
index 343c34c6e..41b4349e6 100644
--- a/MagickCore/policy-private.h
+++ b/MagickCore/policy-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/policy.h b/MagickCore/policy.h
index fb0578d54..369275cbd 100644
--- a/MagickCore/policy.h
+++ b/MagickCore/policy.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/prepress.h b/MagickCore/prepress.h
index 2c516cf76..efd4c8f2f 100644
--- a/MagickCore/prepress.h
+++ b/MagickCore/prepress.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/profile-private.h b/MagickCore/profile-private.h
index 5d70a8588..ddbe271c1 100644
--- a/MagickCore/profile-private.h
+++ b/MagickCore/profile-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -39,5 +39,5 @@ extern MagickPrivate void
#if defined(__cplusplus) || defined(c_plusplus)
}
-#endif
+#endif
#endif
diff --git a/MagickCore/profile.h b/MagickCore/profile.h
index 9d7e61a34..fbc3e6017 100644
--- a/MagickCore/profile.h
+++ b/MagickCore/profile.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -57,5 +57,5 @@ extern MagickExport void
#if defined(__cplusplus) || defined(c_plusplus)
}
-#endif
+#endif
#endif
diff --git a/MagickCore/property.h b/MagickCore/property.h
index 49d97c175..5f939fe65 100644
--- a/MagickCore/property.h
+++ b/MagickCore/property.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/quantize.h b/MagickCore/quantize.h
index 54d113ec1..39c326a29 100644
--- a/MagickCore/quantize.h
+++ b/MagickCore/quantize.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/random_.h b/MagickCore/random_.h
index 6ea06d890..2321d230a 100644
--- a/MagickCore/random_.h
+++ b/MagickCore/random_.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/registry-private.h b/MagickCore/registry-private.h
index 95a2fb158..04ca9a608 100644
--- a/MagickCore/registry-private.h
+++ b/MagickCore/registry-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/registry.h b/MagickCore/registry.h
index 54dc353ab..403a2575b 100644
--- a/MagickCore/registry.h
+++ b/MagickCore/registry.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/resample.h b/MagickCore/resample.h
index 2ca70d1c5..4df3bed17 100644
--- a/MagickCore/resample.h
+++ b/MagickCore/resample.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/resize-private.h b/MagickCore/resize-private.h
index 5f7624d91..689ba0053 100644
--- a/MagickCore/resize-private.h
+++ b/MagickCore/resize-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/resize.h b/MagickCore/resize.h
index 0f9f93288..9805545e0 100644
--- a/MagickCore/resize.h
+++ b/MagickCore/resize.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/resource-private.h b/MagickCore/resource-private.h
index b56846285..6a556971f 100644
--- a/MagickCore/resource-private.h
+++ b/MagickCore/resource-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/resource_.h b/MagickCore/resource_.h
index bb058ed7d..f5ab1609b 100644
--- a/MagickCore/resource_.h
+++ b/MagickCore/resource_.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/segment.h b/MagickCore/segment.h
index ecaff9f91..b895eec81 100644
--- a/MagickCore/segment.h
+++ b/MagickCore/segment.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/semaphore-private.h b/MagickCore/semaphore-private.h
index 3ab340da2..2e14c68f3 100644
--- a/MagickCore/semaphore-private.h
+++ b/MagickCore/semaphore-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/semaphore.h b/MagickCore/semaphore.h
index 414aad0c7..0288dcde7 100644
--- a/MagickCore/semaphore.h
+++ b/MagickCore/semaphore.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/shear.h b/MagickCore/shear.h
index 7dbea24d9..f74cfe6fd 100644
--- a/MagickCore/shear.h
+++ b/MagickCore/shear.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/signature-private.h b/MagickCore/signature-private.h
index ed1b36e85..9ec76a9ee 100644
--- a/MagickCore/signature-private.h
+++ b/MagickCore/signature-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/signature.h b/MagickCore/signature.h
index 5209f5d30..66e1d5f48 100644
--- a/MagickCore/signature.h
+++ b/MagickCore/signature.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/statistic.h b/MagickCore/statistic.h
index 93e472f66..c86562e36 100644
--- a/MagickCore/statistic.h
+++ b/MagickCore/statistic.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/stream-private.h b/MagickCore/stream-private.h
index b9ddec678..37de4b90b 100644
--- a/MagickCore/stream-private.h
+++ b/MagickCore/stream-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/stream.h b/MagickCore/stream.h
index 80f78591c..64a772215 100644
--- a/MagickCore/stream.h
+++ b/MagickCore/stream.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/string_.h b/MagickCore/string_.h
index 359563d44..458d23009 100644
--- a/MagickCore/string_.h
+++ b/MagickCore/string_.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/thread-private.h b/MagickCore/thread-private.h
index d14cd3e9c..64524771f 100644
--- a/MagickCore/thread-private.h
+++ b/MagickCore/thread-private.h
@@ -62,7 +62,7 @@ static inline int GetMagickNumberThreads(const Image *source,
/*
Determine number of threads based on workload.
*/
- number_threads=(chunk <= workload_factor) ? 1UL :
+ number_threads=(chunk <= workload_factor) ? 1UL :
(chunk >= (workload_factor << 6)) ? max_threads :
1UL+(chunk-workload_factor)*(max_threads-1L)/(((workload_factor << 6))-1L);
/*
diff --git a/MagickCore/threshold.h b/MagickCore/threshold.h
index 4c7b194c2..8d203ee90 100644
--- a/MagickCore/threshold.h
+++ b/MagickCore/threshold.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/timer.h b/MagickCore/timer.h
index 21df5c4e8..8ad079f0d 100644
--- a/MagickCore/timer.h
+++ b/MagickCore/timer.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -38,14 +38,14 @@ typedef struct _Timer
} Timer;
typedef struct _TimerInfo
-{
+{
Timer
user,
elapsed;
-
+
TimerState
state;
-
+
size_t
signature;
} TimerInfo;
diff --git a/MagickCore/token.h b/MagickCore/token.h
index da861cfe2..2c491dad8 100644
--- a/MagickCore/token.h
+++ b/MagickCore/token.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/transform-private.h b/MagickCore/transform-private.h
index 6dc25994d..3d4e123f1 100644
--- a/MagickCore/transform-private.h
+++ b/MagickCore/transform-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/transform.h b/MagickCore/transform.h
index 6f9ada924..eafeb5357 100644
--- a/MagickCore/transform.h
+++ b/MagickCore/transform.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/type-private.h b/MagickCore/type-private.h
index c0ffa9315..90587a1d2 100644
--- a/MagickCore/type-private.h
+++ b/MagickCore/type-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/type.h b/MagickCore/type.h
index 21cc8be10..3848bed14 100644
--- a/MagickCore/type.h
+++ b/MagickCore/type.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/utility-private.h b/MagickCore/utility-private.h
index b45e87516..0c05d24a9 100644
--- a/MagickCore/utility-private.h
+++ b/MagickCore/utility-private.h
@@ -322,7 +322,7 @@ static inline int set_file_timestamp(const char *path,struct stat *attributes)
#if !defined(MAGICKCORE_WINDOWS_SUPPORT) || defined(__CYGWIN__)
#if defined(MAGICKCORE_HAVE_UTIMENSAT)
-#if defined(__APPLE__) || defined(__NetBSD__)
+#if defined(__APPLE__) || defined(__NetBSD__)
#define st_atim st_atimespec
#define st_ctim st_ctimespec
#define st_mtim st_mtimespec
diff --git a/MagickCore/version-private.h b/MagickCore/version-private.h
index 96c4685b9..b3bf5f466 100644
--- a/MagickCore/version-private.h
+++ b/MagickCore/version-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/visual-effects.h b/MagickCore/visual-effects.h
index 4b4c0517e..59e225e1a 100644
--- a/MagickCore/visual-effects.h
+++ b/MagickCore/visual-effects.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/vms.h b/MagickCore/vms.h
index 387e7f6c3..53262c1ce 100644
--- a/MagickCore/vms.h
+++ b/MagickCore/vms.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -934,7 +934,7 @@ typedef struct _ile3
#if defined(__VMS_VER) && (__VMS_VER >= 70000000)
#include <dirent.h>
#else
-
+
/*
Typedef declarations.
*/
diff --git a/MagickCore/widget-private.h b/MagickCore/widget-private.h
index 4b73301a1..cc7a5c8f8 100644
--- a/MagickCore/widget-private.h
+++ b/MagickCore/widget-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -65,7 +65,7 @@ static inline void XTextViewHelp(Display *display,
XTextViewWidget(display,resource_info,windows,mono,title,(const char **)
help_list);
for (i=0; help_list[i] != (char *) NULL; i++)
- help_list[i]=DestroyString(help_list[i]);
+ help_list[i]=DestroyString(help_list[i]);
help_list=(char **) RelinquishMagickMemory(help_list);
}
diff --git a/MagickCore/widget.h b/MagickCore/widget.h
index 41b6e32dd..8a09d09d4 100644
--- a/MagickCore/widget.h
+++ b/MagickCore/widget.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/xwindow-private.h b/MagickCore/xwindow-private.h
index 029de91af..1a3cbd920 100644
--- a/MagickCore/xwindow-private.h
+++ b/MagickCore/xwindow-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickCore/xwindow.h b/MagickCore/xwindow.h
index a3603c4a1..52c6298e9 100644
--- a/MagickCore/xwindow.h
+++ b/MagickCore/xwindow.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/MagickWand.h b/MagickWand/MagickWand.h
index 6e95cdbaa..688a355d8 100644
--- a/MagickWand/MagickWand.h
+++ b/MagickWand/MagickWand.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -68,7 +68,7 @@ extern "C" {
# define MAGICKWAND_WINDOWS_SUPPORT
#else
# define MAGICKWAND_POSIX_SUPPORT
-#endif
+#endif
typedef struct _MagickWand
MagickWand;
diff --git a/MagickWand/animate.h b/MagickWand/animate.h
index b78225eb6..f4b09e858 100644
--- a/MagickWand/animate.h
+++ b/MagickWand/animate.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/compare.h b/MagickWand/compare.h
index c98f54dce..a33709c82 100644
--- a/MagickWand/compare.h
+++ b/MagickWand/compare.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/composite.h b/MagickWand/composite.h
index 3895c26da..ada7b8faf 100644
--- a/MagickWand/composite.h
+++ b/MagickWand/composite.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/conjure.h b/MagickWand/conjure.h
index 2d3bbe9fb..ed02b8eed 100644
--- a/MagickWand/conjure.h
+++ b/MagickWand/conjure.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/deprecate.h b/MagickWand/deprecate.h
index 318d8d65d..1b1d53b86 100644
--- a/MagickWand/deprecate.h
+++ b/MagickWand/deprecate.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/display.h b/MagickWand/display.h
index e39ad3b37..bdcf2628e 100644
--- a/MagickWand/display.h
+++ b/MagickWand/display.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/drawing-wand.h b/MagickWand/drawing-wand.h
index 59c7ab13d..720496dbb 100644
--- a/MagickWand/drawing-wand.h
+++ b/MagickWand/drawing-wand.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/identify.h b/MagickWand/identify.h
index 9bd6092a7..1c2d29293 100644
--- a/MagickWand/identify.h
+++ b/MagickWand/identify.h
@@ -1,12 +1,12 @@
/*
- Copyright @ 1999 ImageMagick Studio LLC, a non-profit organization
+ Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/import.h b/MagickWand/import.h
index 4ab10283e..b7231d6e6 100644
--- a/MagickWand/import.h
+++ b/MagickWand/import.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/magick-cli.h b/MagickWand/magick-cli.h
index e4c4664bf..a3816c434 100644
--- a/MagickWand/magick-cli.h
+++ b/MagickWand/magick-cli.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/magick-property.h b/MagickWand/magick-property.h
index 6fc750ca4..e83e46b54 100644
--- a/MagickWand/magick-property.h
+++ b/MagickWand/magick-property.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/magick-wand-private.h b/MagickWand/magick-wand-private.h
index 6564d0db6..89295d0d7 100644
--- a/MagickWand/magick-wand-private.h
+++ b/MagickWand/magick-wand-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/mogrify.h b/MagickWand/mogrify.h
index 0b55687db..a2f7d09dd 100644
--- a/MagickWand/mogrify.h
+++ b/MagickWand/mogrify.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/montage.h b/MagickWand/montage.h
index 4532c9e3e..a555b3df5 100644
--- a/MagickWand/montage.h
+++ b/MagickWand/montage.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/pixel-iterator.h b/MagickWand/pixel-iterator.h
index 3070efbf4..598d05a4e 100644
--- a/MagickWand/pixel-iterator.h
+++ b/MagickWand/pixel-iterator.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/pixel-wand-private.h b/MagickWand/pixel-wand-private.h
index 76b8f6476..680ac61a3 100644
--- a/MagickWand/pixel-wand-private.h
+++ b/MagickWand/pixel-wand-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/pixel-wand.h b/MagickWand/pixel-wand.h
index 03dd4b947..ed252de6b 100644
--- a/MagickWand/pixel-wand.h
+++ b/MagickWand/pixel-wand.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/script-token.h b/MagickWand/script-token.h
index cc4e4d895..39c216f3e 100644
--- a/MagickWand/script-token.h
+++ b/MagickWand/script-token.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/stream.h b/MagickWand/stream.h
index 2c7095321..8040b77ab 100644
--- a/MagickWand/stream.h
+++ b/MagickWand/stream.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/wand-view.h b/MagickWand/wand-view.h
index 2baee53cc..37a5ddf4f 100644
--- a/MagickWand/wand-view.h
+++ b/MagickWand/wand-view.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/MagickWand/wand.h b/MagickWand/wand.h
index 1db172a14..39eb251a9 100644
--- a/MagickWand/wand.h
+++ b/MagickWand/wand.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/aai.h b/coders/aai.h
index 31b69f674..807cbdf54 100644
--- a/coders/aai.h
+++ b/coders/aai.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/art.h b/coders/art.h
index 057749afe..c1f85b45e 100644
--- a/coders/art.h
+++ b/coders/art.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ashlar.h b/coders/ashlar.h
index 9f11be9a0..c5ea2744b 100644
--- a/coders/ashlar.h
+++ b/coders/ashlar.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/avs.h b/coders/avs.h
index e1ab0b235..7641f8463 100644
--- a/coders/avs.h
+++ b/coders/avs.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/bayer.h b/coders/bayer.h
index 313ca5266..43fce6b12 100644
--- a/coders/bayer.h
+++ b/coders/bayer.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/bgr.h b/coders/bgr.h
index 608b951cc..e692916e8 100644
--- a/coders/bgr.h
+++ b/coders/bgr.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/bmp.h b/coders/bmp.h
index 4e96fd306..d50acf11a 100644
--- a/coders/bmp.h
+++ b/coders/bmp.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/braille.h b/coders/braille.h
index 768c03a6f..3494e9d4c 100644
--- a/coders/braille.h
+++ b/coders/braille.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/bytebuffer-private.h b/coders/bytebuffer-private.h
index 3bca9450b..3a344fd63 100644
--- a/coders/bytebuffer-private.h
+++ b/coders/bytebuffer-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/cals.h b/coders/cals.h
index 54ca8eaf1..496ec6257 100644
--- a/coders/cals.h
+++ b/coders/cals.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/caption.h b/coders/caption.h
index 21ab0f6dc..c655f8662 100644
--- a/coders/caption.h
+++ b/coders/caption.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/cin.h b/coders/cin.h
index 3a743b676..d7bf2156d 100644
--- a/coders/cin.h
+++ b/coders/cin.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/cip.h b/coders/cip.h
index cd9f1e803..3ba36960c 100644
--- a/coders/cip.h
+++ b/coders/cip.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/clip.h b/coders/clip.h
index db7735e27..9f655b9b0 100644
--- a/coders/clip.h
+++ b/coders/clip.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/clipboard.h b/coders/clipboard.h
index 428432ed4..40d40d3ad 100644
--- a/coders/clipboard.h
+++ b/coders/clipboard.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/cmyk.h b/coders/cmyk.h
index 8a941c35c..87e022edc 100644
--- a/coders/cmyk.h
+++ b/coders/cmyk.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/coders-private.h b/coders/coders-private.h
index b3822b5ad..5e0581645 100644
--- a/coders/coders-private.h
+++ b/coders/coders-private.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/cube.h b/coders/cube.h
index 7fdd0113f..ab939aa4c 100644
--- a/coders/cube.h
+++ b/coders/cube.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/cut.h b/coders/cut.h
index 3829c3f9d..2dd63a4c4 100644
--- a/coders/cut.h
+++ b/coders/cut.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dcm.h b/coders/dcm.h
index eeaf195b0..0e873915b 100644
--- a/coders/dcm.h
+++ b/coders/dcm.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dds.h b/coders/dds.h
index 231c98165..6650bc937 100644
--- a/coders/dds.h
+++ b/coders/dds.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/debug.h b/coders/debug.h
index 9b01f5edd..73526fdbc 100644
--- a/coders/debug.h
+++ b/coders/debug.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dib.h b/coders/dib.h
index 4a6229fe9..12b4278bf 100644
--- a/coders/dib.h
+++ b/coders/dib.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/djvu.h b/coders/djvu.h
index 7ff236c12..c3c34c32e 100644
--- a/coders/djvu.h
+++ b/coders/djvu.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dmr.h b/coders/dmr.h
index 51f6d321f..35cce21df 100644
--- a/coders/dmr.h
+++ b/coders/dmr.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dng.h b/coders/dng.h
index f24346b00..185d4aa01 100644
--- a/coders/dng.h
+++ b/coders/dng.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dot.h b/coders/dot.h
index ebc5cbb76..b73797994 100644
--- a/coders/dot.h
+++ b/coders/dot.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dps.h b/coders/dps.h
index 3a4e77244..b19f55d3b 100644
--- a/coders/dps.h
+++ b/coders/dps.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/dpx.h b/coders/dpx.h
index bbaa8caab..8cafc6900 100644
--- a/coders/dpx.h
+++ b/coders/dpx.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/emf.h b/coders/emf.h
index d651e1c3c..723ec66ec 100644
--- a/coders/emf.h
+++ b/coders/emf.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ept.h b/coders/ept.h
index dfe8d613a..dffbcc25d 100644
--- a/coders/ept.h
+++ b/coders/ept.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/exr.h b/coders/exr.h
index a823d2aeb..20f0de22d 100644
--- a/coders/exr.h
+++ b/coders/exr.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/farbfeld.h b/coders/farbfeld.h
index d637b9db5..59ace7d35 100644
--- a/coders/farbfeld.h
+++ b/coders/farbfeld.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/fax.h b/coders/fax.h
index f46a5f344..9d425235e 100644
--- a/coders/fax.h
+++ b/coders/fax.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/fits.h b/coders/fits.h
index c28f08941..bc1dd2695 100644
--- a/coders/fits.h
+++ b/coders/fits.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/fl32.h b/coders/fl32.h
index 9697e0826..f3b9facf5 100644
--- a/coders/fl32.h
+++ b/coders/fl32.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/flif.h b/coders/flif.h
index 36c815e34..b35654a2e 100644
--- a/coders/flif.h
+++ b/coders/flif.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/fpx.h b/coders/fpx.h
index c0482843e..e69fe0bc0 100644
--- a/coders/fpx.h
+++ b/coders/fpx.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ftxt.h b/coders/ftxt.h
index 0e4408637..1c8dde930 100644
--- a/coders/ftxt.h
+++ b/coders/ftxt.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/gif.h b/coders/gif.h
index 430291f73..5afb152fd 100644
--- a/coders/gif.h
+++ b/coders/gif.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/gradient.h b/coders/gradient.h
index b9f0f4c77..b0db902e8 100644
--- a/coders/gradient.h
+++ b/coders/gradient.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/gray.h b/coders/gray.h
index 968773ac8..95450e41c 100644
--- a/coders/gray.h
+++ b/coders/gray.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/hald.h b/coders/hald.h
index dc7bd2e78..9f50d002c 100644
--- a/coders/hald.h
+++ b/coders/hald.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/hdr.h b/coders/hdr.h
index a0884e20d..b1834fae4 100644
--- a/coders/hdr.h
+++ b/coders/hdr.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/heic.h b/coders/heic.h
index dc17373f1..20a259eab 100644
--- a/coders/heic.h
+++ b/coders/heic.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/histogram.h b/coders/histogram.h
index 9d6c3e98f..7ce0243e8 100644
--- a/coders/histogram.h
+++ b/coders/histogram.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/hrz.h b/coders/hrz.h
index 9abce7ade..141671b8b 100644
--- a/coders/hrz.h
+++ b/coders/hrz.h
@@ -1,12 +1,12 @@
/*
% Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/html.h b/coders/html.h
index b98620214..b8c2b0bf6 100644
--- a/coders/html.h
+++ b/coders/html.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/icon.h b/coders/icon.h
index de5abfe68..65c70e0dd 100644
--- a/coders/icon.h
+++ b/coders/icon.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/info.h b/coders/info.h
index 4cc8b36a6..afa8868df 100644
--- a/coders/info.h
+++ b/coders/info.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/inline.h b/coders/inline.h
index e89851c8c..71077ad76 100644
--- a/coders/inline.h
+++ b/coders/inline.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ipl.h b/coders/ipl.h
index 0f6223168..e975ffd7d 100644
--- a/coders/ipl.h
+++ b/coders/ipl.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/jbig.h b/coders/jbig.h
index 913eef427..298b9d335 100644
--- a/coders/jbig.h
+++ b/coders/jbig.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/jnx.h b/coders/jnx.h
index eefec529b..be096bce5 100644
--- a/coders/jnx.h
+++ b/coders/jnx.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/jp2.h b/coders/jp2.h
index f16cbe02d..703c402c0 100644
--- a/coders/jp2.h
+++ b/coders/jp2.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/jpeg.h b/coders/jpeg.h
index ca5cf8034..dafc1b56d 100644
--- a/coders/jpeg.h
+++ b/coders/jpeg.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/json.h b/coders/json.h
index c74dccc03..23d0d6c8e 100644
--- a/coders/json.h
+++ b/coders/json.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/kernel.h b/coders/kernel.h
index c17fbbf09..20414628a 100644
--- a/coders/kernel.h
+++ b/coders/kernel.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/label.h b/coders/label.h
index 3877ac483..0452cfa17 100644
--- a/coders/label.h
+++ b/coders/label.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mac.h b/coders/mac.h
index d23746062..d2770ff15 100644
--- a/coders/mac.h
+++ b/coders/mac.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/magick.h b/coders/magick.h
index 67c72b48d..9823d6322 100644
--- a/coders/magick.h
+++ b/coders/magick.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/map.h b/coders/map.h
index 1bb6264c8..eab6c5459 100644
--- a/coders/map.h
+++ b/coders/map.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mask.h b/coders/mask.h
index d73310c2f..3f033e24e 100644
--- a/coders/mask.h
+++ b/coders/mask.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mat.h b/coders/mat.h
index 312830efe..bb6e8b66e 100644
--- a/coders/mat.h
+++ b/coders/mat.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/matte.h b/coders/matte.h
index 654f0371c..eef2bc3a2 100644
--- a/coders/matte.h
+++ b/coders/matte.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/meta.h b/coders/meta.h
index 011add821..8a4ae261f 100644
--- a/coders/meta.h
+++ b/coders/meta.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/miff.h b/coders/miff.h
index 22c972620..225a978fd 100644
--- a/coders/miff.h
+++ b/coders/miff.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mono.h b/coders/mono.h
index caa681b66..e1a745ad6 100644
--- a/coders/mono.h
+++ b/coders/mono.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mpc.h b/coders/mpc.h
index de589f615..92dd8b4b0 100644
--- a/coders/mpc.h
+++ b/coders/mpc.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mpr.h b/coders/mpr.h
index 18f50b8e1..b119e30b5 100644
--- a/coders/mpr.h
+++ b/coders/mpr.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/msl.h b/coders/msl.h
index f39570dda..f29748d58 100644
--- a/coders/msl.h
+++ b/coders/msl.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mtv.h b/coders/mtv.h
index c768f7d2f..dca3ae283 100644
--- a/coders/mtv.h
+++ b/coders/mtv.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/mvg.h b/coders/mvg.h
index 16ea6ff8c..23dfe07f9 100644
--- a/coders/mvg.h
+++ b/coders/mvg.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/null.h b/coders/null.h
index 6f93a2b01..016cbbf70 100644
--- a/coders/null.h
+++ b/coders/null.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ora.h b/coders/ora.h
index 163fd3100..551df4b55 100644
--- a/coders/ora.h
+++ b/coders/ora.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/otb.h b/coders/otb.h
index 2622794d8..0d425fdc2 100644
--- a/coders/otb.h
+++ b/coders/otb.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/palm.h b/coders/palm.h
index 6b68d1e35..49dfa8c5e 100644
--- a/coders/palm.h
+++ b/coders/palm.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pango.h b/coders/pango.h
index 664a61074..4b089a494 100644
--- a/coders/pango.h
+++ b/coders/pango.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pattern.h b/coders/pattern.h
index ae66d465e..c591f92e6 100644
--- a/coders/pattern.h
+++ b/coders/pattern.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pcd.h b/coders/pcd.h
index c50b9f5f8..1e2cfce56 100644
--- a/coders/pcd.h
+++ b/coders/pcd.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pcl.h b/coders/pcl.h
index 91ced55ed..c920221fd 100644
--- a/coders/pcl.h
+++ b/coders/pcl.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pcx.h b/coders/pcx.h
index 098948edb..b7f343569 100644
--- a/coders/pcx.h
+++ b/coders/pcx.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pdb.h b/coders/pdb.h
index 418f78e25..2b6287132 100644
--- a/coders/pdb.h
+++ b/coders/pdb.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pdf.h b/coders/pdf.h
index e165ab20a..edfa732f3 100644
--- a/coders/pdf.h
+++ b/coders/pdf.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pes.h b/coders/pes.h
index a650790b3..1b96efde0 100644
--- a/coders/pes.h
+++ b/coders/pes.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pgx.h b/coders/pgx.h
index 95fbfa021..96f41895d 100644
--- a/coders/pgx.h
+++ b/coders/pgx.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pict.h b/coders/pict.h
index 5f2dedf45..a91b7df90 100644
--- a/coders/pict.h
+++ b/coders/pict.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pix.h b/coders/pix.h
index ec8b24190..805eba6ff 100644
--- a/coders/pix.h
+++ b/coders/pix.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/plasma.h b/coders/plasma.h
index dafb30aaa..f8fa5c178 100644
--- a/coders/plasma.h
+++ b/coders/plasma.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/png.h b/coders/png.h
index d45ac368d..365c12824 100644
--- a/coders/png.h
+++ b/coders/png.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pnm.h b/coders/pnm.h
index b01a4f47b..25dbd9a69 100644
--- a/coders/pnm.h
+++ b/coders/pnm.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ps.h b/coders/ps.h
index 773c5fcc7..fa4b7e411 100644
--- a/coders/ps.h
+++ b/coders/ps.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ps2.h b/coders/ps2.h
index 2ffa46055..32f3712ad 100644
--- a/coders/ps2.h
+++ b/coders/ps2.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ps3.h b/coders/ps3.h
index 6a4369003..f441879bd 100644
--- a/coders/ps3.h
+++ b/coders/ps3.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/psd.h b/coders/psd.h
index 2fd2b8af5..cea92e7f8 100644
--- a/coders/psd.h
+++ b/coders/psd.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/pwp.h b/coders/pwp.h
index 79af87175..294e46750 100644
--- a/coders/pwp.h
+++ b/coders/pwp.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/qoi.h b/coders/qoi.h
index b4643dc1c..18b5d2884 100644
--- a/coders/qoi.h
+++ b/coders/qoi.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/raw.h b/coders/raw.h
index 19539cbea..ab4304ff2 100644
--- a/coders/raw.h
+++ b/coders/raw.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/rgb.h b/coders/rgb.h
index f9bb7eafd..03c324b72 100644
--- a/coders/rgb.h
+++ b/coders/rgb.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/rgf.h b/coders/rgf.h
index c6cf634ba..e137582ea 100644
--- a/coders/rgf.h
+++ b/coders/rgf.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/rla.h b/coders/rla.h
index c35c85287..6c8d83515 100644
--- a/coders/rla.h
+++ b/coders/rla.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/rle.h b/coders/rle.h
index 4bd443d61..54e3b4f08 100644
--- a/coders/rle.h
+++ b/coders/rle.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/scr.h b/coders/scr.h
index e8b4f15dd..4260acea3 100644
--- a/coders/scr.h
+++ b/coders/scr.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/screenshot.h b/coders/screenshot.h
index da22d0629..edbe06d96 100644
--- a/coders/screenshot.h
+++ b/coders/screenshot.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/sct.h b/coders/sct.h
index 13cdbc061..20830370a 100644
--- a/coders/sct.h
+++ b/coders/sct.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/sf3.h b/coders/sf3.h
index ec07d7e9f..263230aca 100644
--- a/coders/sf3.h
+++ b/coders/sf3.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/sfw.h b/coders/sfw.h
index 8cf8fb01e..b3f5f4fcb 100644
--- a/coders/sfw.h
+++ b/coders/sfw.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/sgi.h b/coders/sgi.h
index 104eae952..8333aab6a 100644
--- a/coders/sgi.h
+++ b/coders/sgi.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/sixel.h b/coders/sixel.h
index 50d46463e..268684101 100644
--- a/coders/sixel.h
+++ b/coders/sixel.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/stegano.h b/coders/stegano.h
index 6af3a3064..f66f82f21 100644
--- a/coders/stegano.h
+++ b/coders/stegano.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/strimg.h b/coders/strimg.h
index 6c9485c1f..ffbae9afd 100644
--- a/coders/strimg.h
+++ b/coders/strimg.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/sun.h b/coders/sun.h
index caec8ad01..b06c3d1d4 100644
--- a/coders/sun.h
+++ b/coders/sun.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/svg.h b/coders/svg.h
index a4b926526..58d697375 100644
--- a/coders/svg.h
+++ b/coders/svg.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/tga.h b/coders/tga.h
index 1ae649eb4..f8cd15627 100644
--- a/coders/tga.h
+++ b/coders/tga.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/thumbnail.h b/coders/thumbnail.h
index e29f11a91..0f802cd22 100644
--- a/coders/thumbnail.h
+++ b/coders/thumbnail.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/tiff.h b/coders/tiff.h
index e633f32e8..570c4ed87 100644
--- a/coders/tiff.h
+++ b/coders/tiff.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/tile.h b/coders/tile.h
index 842e770a5..f7afbaf9f 100644
--- a/coders/tile.h
+++ b/coders/tile.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/tim.h b/coders/tim.h
index 09a226a84..0f98cbd9c 100644
--- a/coders/tim.h
+++ b/coders/tim.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/tim2.h b/coders/tim2.h
index 200e4424b..03f28d877 100644
--- a/coders/tim2.h
+++ b/coders/tim2.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ttf.h b/coders/ttf.h
index 8370d7acb..ec403f1a2 100644
--- a/coders/ttf.h
+++ b/coders/ttf.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/txt.h b/coders/txt.h
index 5537f2520..7faa17e13 100644
--- a/coders/txt.h
+++ b/coders/txt.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/uil.h b/coders/uil.h
index ccc0beaec..0d476adac 100644
--- a/coders/uil.h
+++ b/coders/uil.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/url.h b/coders/url.h
index 527112c42..c8a7f8d42 100644
--- a/coders/url.h
+++ b/coders/url.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/uyvy.h b/coders/uyvy.h
index af12fdc72..d1022b7c5 100644
--- a/coders/uyvy.h
+++ b/coders/uyvy.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/vicar.h b/coders/vicar.h
index 61abbefa8..6f12751d6 100644
--- a/coders/vicar.h
+++ b/coders/vicar.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/vid.h b/coders/vid.h
index a2ac57e0f..7f91e9d0c 100644
--- a/coders/vid.h
+++ b/coders/vid.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/video.h b/coders/video.h
index 108881ec9..22130fc90 100644
--- a/coders/video.h
+++ b/coders/video.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/viff.h b/coders/viff.h
index a0c840e64..03fd8a85c 100644
--- a/coders/viff.h
+++ b/coders/viff.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/vips.h b/coders/vips.h
index c03104ebf..e75d9406c 100644
--- a/coders/vips.h
+++ b/coders/vips.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/wbmp.h b/coders/wbmp.h
index 850c6c8d7..a98bbded3 100644
--- a/coders/wbmp.h
+++ b/coders/wbmp.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/webp.h b/coders/webp.h
index ff16cd33d..b34551ffd 100644
--- a/coders/webp.h
+++ b/coders/webp.h
@@ -1,12 +1,12 @@
/*
Copyright @ 2011 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/wmf.h b/coders/wmf.h
index ead515b2c..70bc06b4e 100644
--- a/coders/wmf.h
+++ b/coders/wmf.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/wpg.h b/coders/wpg.h
index d1aeeec26..5882cbb03 100644
--- a/coders/wpg.h
+++ b/coders/wpg.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/x.h b/coders/x.h
index 091668760..eb36f71df 100644
--- a/coders/x.h
+++ b/coders/x.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/xbm.h b/coders/xbm.h
index 6251a7af3..15255a08f 100644
--- a/coders/xbm.h
+++ b/coders/xbm.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/xc.h b/coders/xc.h
index a9c7d72ee..40d1a2384 100644
--- a/coders/xc.h
+++ b/coders/xc.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/xcf.h b/coders/xcf.h
index 5ec512f45..216ead775 100644
--- a/coders/xcf.h
+++ b/coders/xcf.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/xpm.h b/coders/xpm.h
index 07bcb0f06..90d221fd0 100644
--- a/coders/xpm.h
+++ b/coders/xpm.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/xps.h b/coders/xps.h
index 010388687..6787c15c6 100644
--- a/coders/xps.h
+++ b/coders/xps.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/xwd.h b/coders/xwd.h
index 25404edb6..a454190d2 100644
--- a/coders/xwd.h
+++ b/coders/xwd.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/yaml.h b/coders/yaml.h
index 443727e7b..477777e5a 100644
--- a/coders/yaml.h
+++ b/coders/yaml.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/ycbcr.h b/coders/ycbcr.h
index decc814c4..b14bb2772 100644
--- a/coders/ycbcr.h
+++ b/coders/ycbcr.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/coders/yuv.h b/coders/yuv.h
index 141bc5546..11cad328b 100644
--- a/coders/yuv.h
+++ b/coders/yuv.h
@@ -1,12 +1,12 @@
/*
Copyright @ 1999 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
diff --git a/oss-fuzz/main.cc b/oss-fuzz/main.cc
index 3180e0e23..22393462b 100644
--- a/oss-fuzz/main.cc
+++ b/oss-fuzz/main.cc
@@ -1,12 +1,12 @@
/*
Copyright @ 2018 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
obtain a copy of the License at
-
+
https://imagemagick.org/script/license.php
-
+
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.