MagickCore  6.9.10
Convert, Edit, Or Compose Bitmap Images
utility.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2018 ImageMagick Studio LLC, a non-profit organization
3  dedicated to making software imaging solutions freely available.
4 
5  You may not use this file except in compliance with the License.
6  obtain a copy of the License at
7 
8  https://www.imagemagick.org/script/license.php
9 
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.
15 
16  MagickCore utility methods.
17 */
18 #ifndef MAGICKCORE_UTILITY_H
19 #define MAGICKCORE_UTILITY_H
20 
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24 
25 typedef enum
26 {
36 } PathType;
37 
38 extern MagickExport char
39  *Base64Encode(const unsigned char *,const size_t,size_t *),
40  **GetPathComponents(const char *,size_t *),
41  **ListFiles(const char *,const char *,size_t *);
42 
44  AcquireUniqueFilename(char *),
45  AcquireUniqueSymbolicLink(const char *,char *),
46  ExpandFilenames(int *,char ***),
47  GetPathAttributes(const char *,void *),
48  GetExecutionPath(char *,const size_t),
49  IsPathAccessible(const char *);
50 
51 extern MagickExport size_t
52  MultilineCensus(const char *);
53 
54 extern MagickExport ssize_t
55  GetMagickPageSize(void);
56 
57 extern MagickExport unsigned char
58  *Base64Decode(const char *, size_t *);
59 
60 extern MagickExport void
61  AppendImageFormat(const char *,char *),
62  ChopPathComponents(char *,const size_t),
63  ExpandFilename(char *),
64  GetPathComponent(const char *,PathType,char *),
66 
67 #if defined(__cplusplus) || defined(c_plusplus)
68 }
69 #endif
70 
71 #endif
Definition: utility.h:28
MagickExport char ** GetPathComponents(const char *, size_t *)
MagickExport MagickBooleanType GetExecutionPath(char *, const size_t)
MagickExport MagickBooleanType GetPathAttributes(const char *, void *)
MagickExport void MagickDelay(const MagickSizeType)
Definition: utility.c:1683
MagickExport MagickBooleanType AcquireUniqueSymbolicLink(const char *, char *)
Definition: utility.h:33
MagickExport MagickBooleanType AcquireUniqueFilename(char *)
MagickExport ssize_t GetMagickPageSize(void)
Definition: utility.c:1117
Definition: utility.h:34
Definition: utility.h:27
Definition: utility.h:31
MagickBooleanType
Definition: magick-type.h:189
MagickExport void ExpandFilename(char *)
MagickExport char * Base64Encode(const unsigned char *, const size_t, size_t *)
MagickExport MagickBooleanType ExpandFilenames(int *, char ***)
size_t MagickSizeType
Definition: magick-type.h:134
MagickExport unsigned char * Base64Decode(const char *, size_t *)
Definition: utility.c:343
MagickExport void GetPathComponent(const char *, PathType, char *)
PathType
Definition: utility.h:25
MagickExport char ** ListFiles(const char *, const char *, size_t *)
Definition: utility.c:1563
MagickExport size_t MultilineCensus(const char *)
Definition: utility.c:1750
MagickExport MagickBooleanType IsPathAccessible(const char *)
Definition: utility.c:1446
Definition: utility.h:30
Definition: utility.h:32
MagickExport void AppendImageFormat(const char *, char *)
Definition: utility.h:35
Definition: utility.h:29
#define MagickExport
Definition: method-attribute.h:98
MagickExport void ChopPathComponents(char *, const size_t)