]> granicus.if.org Git - imagemagick/blob - coders/tile.c
(no commit message)
[imagemagick] / coders / tile.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                        TTTTT  IIIII  L      EEEEE                           %
7 %                          T      I    L      E                               %
8 %                          T      I    L      EEE                             %
9 %                          T      I    L      E                               %
10 %                          T    IIIII  LLLLL  EEEEE                           %
11 %                                                                             %
12 %                                                                             %
13 %                     Return A Tiled Image Using Texture.                     %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                John Cristy                                  %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization      %
21 %  dedicated to making software imaging solutions freely available.           %
22 %                                                                             %
23 %  You may not use this file except in compliance with the License.  You may  %
24 %  obtain a copy of the License at                                            %
25 %                                                                             %
26 %    http://www.imagemagick.org/script/license.php                            %
27 %                                                                             %
28 %  Unless required by applicable law or agreed to in writing, software        %
29 %  distributed under the License is distributed on an "AS IS" BASIS,          %
30 %  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   %
31 %  See the License for the specific language governing permissions and        %
32 %  limitations under the License.                                             %
33 %                                                                             %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35 %
36 %
37 */
38 \f
39 /*
40   Include declarations.
41 */
42 #include "magick/studio.h"
43 #include "magick/blob.h"
44 #include "magick/blob-private.h"
45 #include "magick/constitute.h"
46 #include "magick/exception.h"
47 #include "magick/exception-private.h"
48 #include "magick/image.h"
49 #include "magick/image-private.h"
50 #include "magick/list.h"
51 #include "magick/magick.h"
52 #include "magick/memory_.h"
53 #include "magick/monitor.h"
54 #include "magick/monitor-private.h"
55 #include "magick/quantum-private.h"
56 #include "magick/static.h"
57 #include "magick/string_.h"
58 #include "magick/module.h"
59 \f
60 /*
61 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
62 %                                                                             %
63 %                                                                             %
64 %                                                                             %
65 %   R e a d T I L E I m a g e                                                 %
66 %                                                                             %
67 %                                                                             %
68 %                                                                             %
69 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
70 %
71 %  ReadTILEImage tiles a texture on an image.  It allocates the
72 %  memory necessary for the new Image structure and returns a pointer to the
73 %  new image.
74 %
75 %  The format of the ReadTILEImage method is:
76 %
77 %      Image *ReadTILEImage(const ImageInfo *image_info,
78 %        ExceptionInfo *exception)
79 %
80 %  A description of each parameter follows:
81 %
82 %    o image_info: the image info.
83 %
84 %    o exception: return any errors or warnings in this structure.
85 %
86 */
87 static Image *ReadTILEImage(const ImageInfo *image_info,
88   ExceptionInfo *exception)
89 {
90   Image
91     *image,
92     *tile_image;
93
94   ImageInfo
95     *read_info;
96
97   /*
98     Initialize Image structure.
99   */
100   assert(image_info != (const ImageInfo *) NULL);
101   assert(image_info->signature == MagickSignature);
102   if (image_info->debug != MagickFalse)
103     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
104       image_info->filename);
105   assert(exception != (ExceptionInfo *) NULL);
106   assert(exception->signature == MagickSignature);
107   read_info=CloneImageInfo(image_info);
108   SetImageInfoBlob(read_info,(void *) NULL,0);
109   *read_info->magick='\0';
110   tile_image=ReadImage(read_info,exception);
111   read_info=DestroyImageInfo(read_info);
112   if (tile_image == (Image *) NULL)
113     return((Image *) NULL);
114   image=AcquireImage(image_info);
115   if ((image->columns == 0) || (image->rows == 0))
116     ThrowReaderException(OptionError,"MustSpecifyImageSize");
117   if (*image_info->filename == '\0')
118     ThrowReaderException(OptionError,"MustSpecifyAnImageName");
119   image->matte=tile_image->matte;
120   if (image->matte != MagickFalse)
121     (void) SetImageBackgroundColor(image);
122   (void) CopyMagickString(image->filename,image_info->filename,MaxTextExtent);
123   if (LocaleCompare(tile_image->magick,"PATTERN") == 0)
124     {
125       tile_image->tile_offset.x=0;
126       tile_image->tile_offset.y=0;
127     }
128   (void) TextureImage(image,tile_image);
129   tile_image=DestroyImage(tile_image);
130   return(GetFirstImageInList(image));
131 }
132 \f
133 /*
134 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
135 %                                                                             %
136 %                                                                             %
137 %                                                                             %
138 %   R e g i s t e r T I L E I m a g e                                         %
139 %                                                                             %
140 %                                                                             %
141 %                                                                             %
142 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
143 %
144 %  RegisterTILEImage() adds attributes for the TILE image format to
145 %  the list of supported formats.  The attributes include the image format
146 %  tag, a method to read and/or write the format, whether the format
147 %  supports the saving of more than one frame to the same file or blob,
148 %  whether the format supports native in-memory I/O, and a brief
149 %  description of the format.
150 %
151 %  The format of the RegisterTILEImage method is:
152 %
153 %      size_t RegisterTILEImage(void)
154 %
155 */
156 ModuleExport size_t RegisterTILEImage(void)
157 {
158   MagickInfo
159     *entry;
160
161   entry=SetMagickInfo("TILE");
162   entry->decoder=(DecodeImageHandler *) ReadTILEImage;
163   entry->raw=MagickTrue;
164   entry->endian_support=MagickTrue;
165   entry->format_type=ImplicitFormatType;
166   entry->description=ConstantString("Tile image with a texture");
167   entry->module=ConstantString("TILE");
168   (void) RegisterMagickInfo(entry);
169   return(MagickImageCoderSignature);
170 }
171 \f
172 /*
173 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
174 %                                                                             %
175 %                                                                             %
176 %                                                                             %
177 %   U n r e g i s t e r T I L E I m a g e                                     %
178 %                                                                             %
179 %                                                                             %
180 %                                                                             %
181 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
182 %
183 %  UnregisterTILEImage() removes format registrations made by the
184 %  TILE module from the list of supported formats.
185 %
186 %  The format of the UnregisterTILEImage method is:
187 %
188 %      UnregisterTILEImage(void)
189 %
190 */
191 ModuleExport void UnregisterTILEImage(void)
192 {
193   (void) UnregisterMagickInfo("TILE");
194 }