blob: c350ea63f06a7db78af06f09a84dc1524d6b6329 [file] [log] [blame]
cristy84713a32012-08-13 13:07:32 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% JJJ N N X X %
7% J NN N X X %
8% J N N N X %
9% J J N NN X X %
10% JJ N N X X %
11% %
12% %
13% Read/Write Garmin Image Format %
14% %
cristyde984cd2013-12-01 14:49:27 +000015% Cristy %
cristy84713a32012-08-13 13:07:32 +000016% July 2012 %
17% %
18% %
Cristy7ce65e72015-12-12 18:03:16 -050019% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
cristy84713a32012-08-13 13:07:32 +000020% dedicated to making software imaging solutions freely available. %
21% %
22% You may not use this file except in compliance with the License. You may %
23% obtain a copy of the License at %
24% %
25% http://www.imagemagick.org/script/license.php %
26% %
27% Unless required by applicable law or agreed to in writing, software %
28% distributed under the License is distributed on an "AS IS" BASIS, %
29% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
30% See the License for the specific language governing permissions and %
31% limitations under the License. %
32% %
33%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34%
35%
36*/
37
38/*
39 Include declarations.
40*/
41
42/*
43 Include declarations.
44*/
45#include "MagickCore/studio.h"
46#include "MagickCore/blob.h"
47#include "MagickCore/blob-private.h"
48#include "MagickCore/cache.h"
49#include "MagickCore/colorspace.h"
50#include "MagickCore/colorspace-private.h"
cristy8d1c74e2012-08-13 16:05:01 +000051#include "MagickCore/draw.h"
cristy84713a32012-08-13 13:07:32 +000052#include "MagickCore/exception.h"
53#include "MagickCore/exception-private.h"
54#include "MagickCore/image.h"
55#include "MagickCore/image-private.h"
56#include "MagickCore/list.h"
57#include "MagickCore/magick.h"
58#include "MagickCore/memory_.h"
59#include "MagickCore/module.h"
60#include "MagickCore/monitor.h"
61#include "MagickCore/monitor-private.h"
cristyf2be7a32012-08-13 16:03:09 +000062#include "MagickCore/property.h"
cristy84713a32012-08-13 13:07:32 +000063#include "MagickCore/pixel-accessor.h"
64#include "MagickCore/quantum-private.h"
65#include "MagickCore/static.h"
66#include "MagickCore/string_.h"
67
cristyf2be7a32012-08-13 16:03:09 +000068typedef struct _JNXInfo
69{
cristy86a135d2012-08-14 01:23:19 +000070 int
cristyf2be7a32012-08-13 16:03:09 +000071 version,
72 serial;
73
74 PointInfo
75 northeast,
76 southwest;
77
cristy86a135d2012-08-14 01:23:19 +000078 int
cristyf2be7a32012-08-13 16:03:09 +000079 levels,
80 expire,
81 id,
82 crc,
83 signature;
84
cristy86a135d2012-08-14 01:23:19 +000085 unsigned int
cristyf2be7a32012-08-13 16:03:09 +000086 offset;
87
cristy86a135d2012-08-14 01:23:19 +000088 int
cristyf2be7a32012-08-13 16:03:09 +000089 order;
90} JNXInfo;
91
92typedef struct _JNXLevelInfo
93{
cristyf2be7a32012-08-13 16:03:09 +000094 int
cristy86a135d2012-08-14 01:23:19 +000095 count,
cristyf2be7a32012-08-13 16:03:09 +000096 offset;
97
98 unsigned int
99 scale;
100
cristy86a135d2012-08-14 01:23:19 +0000101 unsigned short
cristy151b66d2015-04-15 10:50:31 +0000102 copyright[MagickPathExtent];
cristyf2be7a32012-08-13 16:03:09 +0000103} JNXLevelInfo;
104
cristy84713a32012-08-13 13:07:32 +0000105/*
106%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
107% %
108% %
109% %
110% R e a d J N X I m a g e %
111% %
112% %
113% %
114%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
115%
116% ReadJNXImage() reads an image in the Garmin tile storage format and returns
117% it. It allocates the memory necessary for the new Image structure and
118% returns a pointer to the new image.
119%
120% The format of the ReadJNXImage method is:
121%
122% Image *ReadJNXImage(const ImageInfo *image_info,ExceptionInfo *exception)
123%
124% A description of each parameter follows:
125%
126% o image_info: the image info.
127%
128% o exception: return any errors or warnings in this structure.
129%
130*/
131static Image *ReadJNXImage(const ImageInfo *image_info,ExceptionInfo *exception)
132{
cristyf2be7a32012-08-13 16:03:09 +0000133#define JNXMaxLevels 20
134
135 Image
136 *image,
137 *images;
138
139 JNXInfo
140 jnx_info;
141
142 JNXLevelInfo
143 jnx_level_info[JNXMaxLevels];
144
145 MagickBooleanType
146 status;
147
148 register ssize_t
149 i;
150
151 /*
152 Open image file.
153 */
154 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000155 assert(image_info->signature == MagickCoreSignature);
cristyf2be7a32012-08-13 16:03:09 +0000156 if (image_info->debug != MagickFalse)
157 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
158 image_info->filename);
159 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000160 assert(exception->signature == MagickCoreSignature);
cristyf2be7a32012-08-13 16:03:09 +0000161 image=AcquireImage(image_info,exception);
162 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
163 if (status == MagickFalse)
164 {
165 image=DestroyImageList(image);
166 return((Image *) NULL);
167 }
168 /*
169 Read JNX header.
170 */
171 (void) ResetMagickMemory(&jnx_info,0,sizeof(jnx_info));
cristy86a135d2012-08-14 01:23:19 +0000172 jnx_info.version=(int) ReadBlobLSBLong(image);
173 if ((jnx_info.version != 3) && (jnx_info.version != 4))
cristyf2be7a32012-08-13 16:03:09 +0000174 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy86a135d2012-08-14 01:23:19 +0000175 jnx_info.serial=(int) ReadBlobLSBLong(image);
cristy732a4112012-08-14 13:10:48 +0000176 jnx_info.northeast.x=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
177 jnx_info.northeast.y=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
178 jnx_info.southwest.x=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
179 jnx_info.southwest.y=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
cristy86a135d2012-08-14 01:23:19 +0000180 jnx_info.levels=(int) ReadBlobLSBLong(image);
cristyf2be7a32012-08-13 16:03:09 +0000181 if (jnx_info.levels > JNXMaxLevels)
182 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy86a135d2012-08-14 01:23:19 +0000183 jnx_info.expire=(int) ReadBlobLSBLong(image);
184 jnx_info.id=(int) ReadBlobLSBLong(image);
185 jnx_info.crc=(int) ReadBlobLSBLong(image);
186 jnx_info.signature=(int) ReadBlobLSBLong(image);
cristyf2be7a32012-08-13 16:03:09 +0000187 jnx_info.offset=ReadBlobLSBLong(image);
188 if (jnx_info.version > 3)
189 jnx_info.order=(int) ReadBlobLSBLong(image);
cristy86a135d2012-08-14 01:23:19 +0000190 else
191 if (jnx_info.version == 3)
192 jnx_info.order=30;
cristyf2be7a32012-08-13 16:03:09 +0000193 /*
194 Read JNX levels.
195 */
196 (void) ResetMagickMemory(&jnx_level_info,0,sizeof(jnx_level_info));
197 for (i=0; i < (ssize_t) jnx_info.levels; i++)
198 {
cristy86a135d2012-08-14 01:23:19 +0000199 jnx_level_info[i].count=(int) ReadBlobLSBLong(image);
200 if (jnx_level_info[i].count > 50000)
201 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristyf2be7a32012-08-13 16:03:09 +0000202 jnx_level_info[i].offset=(int) ReadBlobLSBLong(image);
cristy86a135d2012-08-14 01:23:19 +0000203 jnx_level_info[i].scale=ReadBlobLSBLong(image);
cristyf2be7a32012-08-13 16:03:09 +0000204 if (jnx_info.version > 3)
205 {
cristyf2be7a32012-08-13 16:03:09 +0000206 register ssize_t
207 j;
208
cristy9e2d53c2012-08-14 12:55:55 +0000209 unsigned short
210 c;
211
cristyf2be7a32012-08-13 16:03:09 +0000212 (void) ReadBlobLSBLong(image);
213 j=0;
214 while ((c=ReadBlobLSBShort(image)) != 0)
cristy151b66d2015-04-15 10:50:31 +0000215 if (j < (MagickPathExtent-1))
cristyf2be7a32012-08-13 16:03:09 +0000216 jnx_level_info[i].copyright[j++]=c;
cristy86a135d2012-08-14 01:23:19 +0000217 jnx_level_info[i].copyright[j]=0;
cristyf2be7a32012-08-13 16:03:09 +0000218 }
219 }
220 /*
221 Read JNX tiles.
222 */
223 images=NewImageList();
224 for (i=0; i < (ssize_t) jnx_info.levels; i++)
225 {
cristyc6990832012-08-14 12:43:27 +0000226 MagickOffsetType
227 offset;
228
cristyf2be7a32012-08-13 16:03:09 +0000229 register ssize_t
230 j;
231
cristyc6990832012-08-14 12:43:27 +0000232 offset=SeekBlob(image,(MagickOffsetType) jnx_level_info[i].offset,SEEK_SET);
233 if (offset != (MagickOffsetType) jnx_level_info[i].offset)
234 continue;
cristyf2be7a32012-08-13 16:03:09 +0000235 for (j=0; j < (ssize_t) jnx_level_info[i].count; j++)
236 {
237 Image
238 *tile_image;
239
240 ImageInfo
241 *read_info;
242
243 int
244 tile_offset;
245
cristy9e2d53c2012-08-14 12:55:55 +0000246 MagickOffsetType
247 restore_offset;
248
cristyf2be7a32012-08-13 16:03:09 +0000249 PointInfo
250 northeast,
251 southwest;
252
253 ssize_t
254 count;
255
256 unsigned char
257 *blob;
258
259 unsigned int
260 tile_length;
261
cristy732a4112012-08-14 13:10:48 +0000262 northeast.x=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
263 northeast.y=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
264 southwest.x=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
265 southwest.y=180.0*((int) ReadBlobLSBLong(image))/0x7fffffff;
cristyf2be7a32012-08-13 16:03:09 +0000266 (void) ReadBlobLSBShort(image); /* width */
267 (void) ReadBlobLSBShort(image); /* height */
268 tile_length=ReadBlobLSBLong(image);
269 tile_offset=(int) ReadBlobLSBLong(image);
cristy4d0ca342014-05-01 00:42:09 +0000270 if (tile_offset == -1)
271 continue;
cristy9e2d53c2012-08-14 12:55:55 +0000272 restore_offset=TellBlob(image);
cristy8418c7e2014-05-18 18:38:26 +0000273 if (restore_offset < 0)
274 continue;
cristy9e2d53c2012-08-14 12:55:55 +0000275 offset=SeekBlob(image,(MagickOffsetType) tile_offset,SEEK_SET);
276 if (offset != (MagickOffsetType) tile_offset)
277 continue;
cristyf2be7a32012-08-13 16:03:09 +0000278 /*
279 Read a tile.
280 */
cristyede8a0e2012-08-14 12:57:38 +0000281 blob=(unsigned char *) AcquireQuantumMemory((size_t) tile_length+2,
282 sizeof(*blob));
cristyf2be7a32012-08-13 16:03:09 +0000283 if (blob == (unsigned char *) NULL)
284 {
285 if (images != (Image *) NULL)
286 images=DestroyImageList(images);
287 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
288 }
cristyf2be7a32012-08-13 16:03:09 +0000289 blob[0]=0xFF;
290 blob[1]=0xD8;
291 count=ReadBlob(image,tile_length,blob+2);
cristy86a135d2012-08-14 01:23:19 +0000292 if (count != (ssize_t) tile_length)
cristyf2be7a32012-08-13 16:03:09 +0000293 {
294 if (images != (Image *) NULL)
295 images=DestroyImageList(images);
296 blob=(unsigned char *) RelinquishMagickMemory(blob);
297 ThrowReaderException(CorruptImageError,"UnexpectedEndOfFile");
298 }
299 read_info=CloneImageInfo(image_info);
cristy151b66d2015-04-15 10:50:31 +0000300 (void) CopyMagickString(read_info->magick,"JPEG",MagickPathExtent);
cristyf2be7a32012-08-13 16:03:09 +0000301 tile_image=BlobToImage(read_info,blob,tile_length+2,exception);
302 read_info=DestroyImageInfo(read_info);
303 blob=(unsigned char *) RelinquishMagickMemory(blob);
cristy9e2d53c2012-08-14 12:55:55 +0000304 offset=SeekBlob(image,restore_offset,SEEK_SET);
cristyf2be7a32012-08-13 16:03:09 +0000305 if (tile_image == (Image *) NULL)
306 continue;
cristy151b66d2015-04-15 10:50:31 +0000307 (void) CopyMagickString(tile_image->magick,image->magick,MagickPathExtent);
cristy8b170c32012-08-13 20:25:37 +0000308 (void) FormatImageProperty(tile_image,"jnx:northeast","%.20g,%.20g",
309 northeast.x,northeast.y);
310 (void) FormatImageProperty(tile_image,"jnx:southwest","%.20g,%.20g",
311 southwest.x,southwest.y);
cristyf2be7a32012-08-13 16:03:09 +0000312 AppendImageToList(&images,tile_image);
313 }
314 if (image->progress_monitor != (MagickProgressMonitor) NULL)
315 {
316 MagickBooleanType
317 proceed;
318
319 proceed=SetImageProgress(image,LoadImageTag,(MagickOffsetType) i,
320 (MagickSizeType) jnx_info.levels);
321 if (proceed == MagickFalse)
322 status=MagickFalse;
323 }
324 }
325 (void) CloseBlob(image);
326 image=DestroyImage(image);
327 if (images == (Image *) NULL)
328 return((Image *) NULL);
329 return(GetFirstImageInList(images));
cristy84713a32012-08-13 13:07:32 +0000330}
331
332/*
333%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
334% %
335% %
336% %
337% R e g i s t e r J N X I m a g e %
338% %
339% %
340% %
341%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
342%
343% RegisterJNXImage() adds attributes for the JNX image format to the list
344% of supported formats. The attributes include the image format tag, a
345% method to read and/or write the format, whether the format supports the
346% saving of more than one frame to the same file or blob, whether the format
347% supports native in-memory I/O, and a brief description of the format.
348%
349% The format of the RegisterJNXImage method is:
350%
351% size_t RegisterJNXImage(void)
352%
353*/
354ModuleExport size_t RegisterJNXImage(void)
355{
356 MagickInfo
357 *entry;
358
dirk06b627a2015-04-06 18:59:17 +0000359 entry=AcquireMagickInfo("JNX","JNX","Garmin tile format");
cristy84713a32012-08-13 13:07:32 +0000360 entry->decoder=(DecodeImageHandler *) ReadJNXImage;
dirk08e9a112015-02-22 01:51:41 +0000361 entry->flags|=CoderSeekableStreamFlag;
cristy84713a32012-08-13 13:07:32 +0000362 (void) RegisterMagickInfo(entry);
363 return(MagickImageCoderSignature);
364}
365
366/*
367%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
368% %
369% %
370% %
371% U n r e g i s t e r J N X I m a g e %
372% %
373% %
374% %
375%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
376%
377% UnregisterJNXImage() removes format registrations made by the
378% JNX module from the list of supported formats.
379%
380% The format of the UnregisterJNXImage method is:
381%
382% UnregisterJNXImage(void)
383%
384*/
385ModuleExport void UnregisterJNXImage(void)
386{
387 (void) UnregisterMagickInfo("JNX");
388}