2 Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
3 dedicated to making software imaging solutions freely available.
5 You may not use this file except in compliance with the License.
6 obtain a copy of the License at
8 http://www.imagemagick.org/script/license.php
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
16 MagickCore utility methods.
18 #ifndef _MAGICKCORE_UTILITY_H
19 #define _MAGICKCORE_UTILITY_H
21 #if defined(__cplusplus) || defined(c_plusplus)
38 extern MagickExport char
39 *Base64Encode(const unsigned char *,const size_t,size_t *);
41 extern MagickExport FILE
42 *OpenMagickStream(const char *,const char *);
44 extern MagickExport int
45 SystemCommand(const MagickBooleanType,const MagickBooleanType,const char *,
48 extern MagickExport MagickBooleanType
49 AcquireUniqueFilename(char *),
50 AcquireUniqueSymbolicLink(const char *,char *),
51 ExpandFilenames(int *,char ***),
52 GetPathAttributes(const char *,void *),
53 IsMagickTrue(const char *),
54 IsPathAccessible(const char *);
56 extern MagickExport size_t
57 MultilineCensus(const char *);
59 extern MagickExport unsigned char
60 *Base64Decode(const char *, size_t *);
62 extern MagickExport void
63 AppendImageFormat(const char *,char *),
64 GetPathComponent(const char *,PathType,char *);
66 #if defined(__cplusplus) || defined(c_plusplus)