Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:23

0001 /*
0002   Copyright @ 2000 ImageMagick Studio LLC, a non-profit organization
0003   dedicated to making software imaging solutions freely available.
0004   
0005   You may not use this file except in compliance with the License.  You may
0006   obtain a copy of the License at
0007   
0008     https://imagemagick.org/script/license.php
0009   
0010   Unless required by applicable law or agreed to in writing, software
0011   distributed under the License is distributed on an "AS IS" BASIS,
0012   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0013   See the License for the specific language governing permissions and
0014   limitations under the License.
0015 
0016   MagickCore property methods.
0017 */
0018 #ifndef MAGICKCORE_PROPERTY_H
0019 #define MAGICKCORE_PROPERTY_H
0020 
0021 #if defined(__cplusplus) || defined(c_plusplus)
0022 extern "C" {
0023 #endif
0024 
0025 extern MagickExport char
0026   *InterpretImageProperties(ImageInfo *,Image *,const char *,
0027     ExceptionInfo *),
0028   *RemoveImageProperty(Image *,const char *);
0029 
0030 extern MagickExport const char
0031   *GetNextImageProperty(const Image *),
0032   *GetImageProperty(const Image *,const char *,ExceptionInfo *),
0033   *GetMagickProperty(ImageInfo *,Image *,const char *,ExceptionInfo *);
0034 
0035 extern MagickExport MagickBooleanType
0036   CloneImageProperties(Image *,const Image *),
0037   DefineImageProperty(Image *,const char *,ExceptionInfo *),
0038   DeleteImageProperty(Image *,const char *),
0039   FormatImageProperty(Image *,const char *,const char *,...)
0040     magick_attribute((__format__ (__printf__,3,4))),
0041   SetImageProperty(Image *,const char *,const char *,ExceptionInfo *);
0042 
0043 extern MagickExport void
0044   DestroyImageProperties(Image *),
0045   ResetImagePropertyIterator(const Image *);
0046 
0047 #if defined(__cplusplus) || defined(c_plusplus)
0048 }
0049 #endif
0050 
0051 #endif