• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2   Copyright 1999-2020 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.  You may
6   obtain a copy of the License at
7 
8     https://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   Private header to reuse psd functionality.
17 */
18 #ifndef _PSD_PRIVATE_H
19 #define _PSD_PRIVATE_H
20 
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24 
25 typedef struct _PSDInfo
26 {
27   char
28     signature[4];
29 
30   MagickBooleanType
31     has_merged_image;
32 
33   size_t
34     rows,
35     columns;
36 
37   unsigned char
38     reserved[6];
39 
40   unsigned short
41     channels,
42     depth,
43     mode,
44     min_channels,
45     version;
46 } PSDInfo;
47 
48 extern ModuleExport MagickBooleanType
49   ReadPSDLayers(Image *,const ImageInfo *,const PSDInfo *,
50     ExceptionInfo *),
51   WritePSDLayers(Image *,const ImageInfo *,const PSDInfo *,
52     ExceptionInfo *);
53 
54 #if defined(__cplusplus) || defined(c_plusplus)
55 }
56 #endif
57 
58 #endif
59