blob: 3d40ec750ae3f7dd630c34ce71a1997f50de4729 [file] [log] [blame]
cristy3f07aa32014-01-18 01:16:33 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% JJJJJ SSSSS OOO N N %
7% J SS O O NN N %
8% J SSS O O N N N %
9% J J SS O O N NN %
10% JJJ SSSSS OOO N N %
11% %
12% %
13% Write Info About the Image in JSON Format. %
14% %
15% Software Design %
16% Cristy %
17% January 2014 %
18% %
19% %
Cristy93b707b2017-12-06 07:05:51 -050020% Copyright 1999-2018 ImageMagick Studio LLC, a non-profit organization %
cristy3f07aa32014-01-18 01:16:33 +000021% 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% %
Cristy83d74de2018-10-13 10:17:25 -040026% https://imagemagick.org/script/license.php %
cristy3f07aa32014-01-18 01:16:33 +000027% %
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
39/*
40 Include declarations.
41*/
42#include "MagickCore/studio.h"
43#include "MagickCore/artifact.h"
cristy9e818982014-01-18 14:54:37 +000044#include "MagickCore/attribute.h"
cristy3f07aa32014-01-18 01:16:33 +000045#include "MagickCore/blob.h"
46#include "MagickCore/blob-private.h"
cristy9e818982014-01-18 14:54:37 +000047#include "MagickCore/cache.h"
cristy43602772014-01-29 14:07:29 +000048#include "MagickCore/colorspace.h"
49#include "MagickCore/colorspace-private.h"
cristy9e818982014-01-18 14:54:37 +000050#include "MagickCore/constitute.h"
cristy3f07aa32014-01-18 01:16:33 +000051#include "MagickCore/exception.h"
52#include "MagickCore/exception-private.h"
cristy9e818982014-01-18 14:54:37 +000053#include "MagickCore/feature.h"
cristy3f07aa32014-01-18 01:16:33 +000054#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/monitor.h"
60#include "MagickCore/monitor-private.h"
61#include "MagickCore/option.h"
cristy43602772014-01-29 14:07:29 +000062#include "MagickCore/pixel.h"
cristy9e818982014-01-18 14:54:37 +000063#include "MagickCore/pixel-accessor.h"
cristy43602772014-01-29 14:07:29 +000064#include "MagickCore/pixel-private.h"
cristy9e818982014-01-18 14:54:37 +000065#include "MagickCore/prepress.h"
cristy3f07aa32014-01-18 01:16:33 +000066#include "MagickCore/property.h"
cristy43602772014-01-29 14:07:29 +000067#include "MagickCore/quantum-private.h"
cristy9e818982014-01-18 14:54:37 +000068#include "MagickCore/registry.h"
cristy9e818982014-01-18 14:54:37 +000069#include "MagickCore/signature.h"
cristy43602772014-01-29 14:07:29 +000070#include "MagickCore/static.h"
cristy9e818982014-01-18 14:54:37 +000071#include "MagickCore/statistic.h"
cristy3f07aa32014-01-18 01:16:33 +000072#include "MagickCore/string_.h"
cristy9e818982014-01-18 14:54:37 +000073#include "MagickCore/string-private.h"
cristy3f07aa32014-01-18 01:16:33 +000074#include "MagickCore/utility.h"
cristy9e818982014-01-18 14:54:37 +000075#include "MagickCore/version.h"
cristy43602772014-01-29 14:07:29 +000076#include "MagickCore/module.h"
Dirk Lemstra32b15502017-09-21 17:04:36 +020077
78/*
79 Typedef declarations.
80*/
Cristydb96d692017-10-29 10:37:57 -040081typedef struct _IPTCInfo
Dirk Lemstra32b15502017-09-21 17:04:36 +020082{
83 long
84 dataset,
85 record;
86
87 size_t
88 values_length;
89
90 char
91 tag[32],
92 ***values;
Cristydb96d692017-10-29 10:37:57 -040093} IPTCInfo;
cristy3f07aa32014-01-18 01:16:33 +000094
95/*
96 Forward declarations.
97*/
98static MagickBooleanType
99 WriteJSONImage(const ImageInfo *,Image *,ExceptionInfo *);
100
101/*
102%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
103% %
104% %
105% %
106% R e g i s t e r J S O N I m a g e %
107% %
108% %
109% %
110%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
111%
112% RegisterJSONImage() adds attributes for the JSON image format to
113% the list of supported formats. The attributes include the image format
114% tag, a method to read and/or write the format, whether the format
115% supports the saving of more than one frame to the same file or blob,
116% whether the format supports native in-memory I/O, and a brief
117% description of the format.
118%
119% The format of the RegisterJSONImage method is:
120%
121% size_t RegisterJSONImage(void)
122%
123*/
124ModuleExport size_t RegisterJSONImage(void)
125{
126 MagickInfo
127 *entry;
128
cristye1c94d92015-06-28 12:16:33 +0000129 entry=AcquireMagickInfo("JSON","JSON","The image format and characteristics");
cristy3f07aa32014-01-18 01:16:33 +0000130 entry->encoder=(EncodeImageHandler *) WriteJSONImage;
dirk2aa15e62015-09-14 21:33:54 +0200131 entry->mime_type=ConstantString("application/json");
dirk08e9a112015-02-22 01:51:41 +0000132 entry->flags^=CoderBlobSupportFlag;
cristy3f07aa32014-01-18 01:16:33 +0000133 (void) RegisterMagickInfo(entry);
134 return(MagickImageCoderSignature);
135}
136
137/*
138%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
139% %
140% %
141% %
142% U n r e g i s t e r J S O N I m a g e %
143% %
144% %
145% %
146%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
147%
148% UnregisterJSONImage() removes format registrations made by the
149% JSON module from the list of supported formats.
150%
151% The format of the UnregisterJSONImage method is:
152%
153% UnregisterJSONImage(void)
154%
155*/
156ModuleExport void UnregisterJSONImage(void)
157{
158 (void) UnregisterMagickInfo("JSON");
159}
160
161/*
162%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
163% %
164% %
165% %
166% W r i t e J S O N I m a g e %
167% %
168% %
169% %
170%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
171%
172% WriteJSONImage writes the image attributes in the JSON format.
173%
174% The format of the WriteJSONImage method is:
175%
176% MagickBooleanType WriteJSONImage(const ImageInfo *image_info,
177% Image *image,ExceptionInfo *exception)
178%
179% A description of each parameter follows.
180%
181% o image_info: the image info.
182%
183% o image: The image.
184%
185% o exception: return any errors or warnings in this structure.
186%
187*/
cristy9e818982014-01-18 14:54:37 +0000188
Cristydb96d692017-10-29 10:37:57 -0400189static void JSONFormatLocaleFile(FILE *file,const char *format,
190 const char *value)
dirk6c316f22015-06-27 15:44:29 +0000191{
192 char
193 *escaped_json;
194
195 register char
196 *q;
197
198 register const char
199 *p;
200
201 size_t
202 length;
203
204 assert(format != (const char *) NULL);
Cristydb96d692017-10-29 10:37:57 -0400205 if ((value == (char *) NULL) || (*value == '\0'))
206 {
207 (void) FormatLocaleFile(file,format,"null");
208 return;
209 }
dirk6c316f22015-06-27 15:44:29 +0000210 length=strlen(value)+2;
211 /*
Cristydb96d692017-10-29 10:37:57 -0400212 Find all the chars that need escaping and increase the dest length counter.
dirk6c316f22015-06-27 15:44:29 +0000213 */
214 for (p=value; *p != '\0'; p++)
Cristydb96d692017-10-29 10:37:57 -0400215 {
216 switch (*p)
dirk6c316f22015-06-27 15:44:29 +0000217 {
Cristydb96d692017-10-29 10:37:57 -0400218 case '"':
219 case '\b':
220 case '\f':
221 case '\n':
222 case '\r':
223 case '\t':
224 case '\\':
225 {
226 if (~length < 1)
227 return;
228 length++;
229 break;
230 }
231 default:
232 {
233 if (((int) *p >= 0x00) && ((int) *p <= 0x1f))
234 length+=6;
235 break;
236 }
dirk6c316f22015-06-27 15:44:29 +0000237 }
Cristydb96d692017-10-29 10:37:57 -0400238 }
dirk6c316f22015-06-27 15:44:29 +0000239 escaped_json=(char *) NULL;
240 if (~length >= (MagickPathExtent-1))
241 escaped_json=(char *) AcquireQuantumMemory(length+MagickPathExtent,
242 sizeof(*escaped_json));
243 if (escaped_json == (char *) NULL)
Cristydb96d692017-10-29 10:37:57 -0400244 {
245 (void) FormatLocaleFile(file,format,"null");
246 return;
247 }
dirk6c316f22015-06-27 15:44:29 +0000248 q=escaped_json;
249 *q++='"';
250 for (p=value; *p != '\0'; p++)
Cristydb96d692017-10-29 10:37:57 -0400251 {
252 switch (*p)
dirk6c316f22015-06-27 15:44:29 +0000253 {
Cristydb96d692017-10-29 10:37:57 -0400254 case '"':
255 {
256 *q++='\\';
257 *q++=(*p);
258 break;
259 }
260 case '\b':
261 {
262 *q++='\\';
263 *q++='b';
264 break;
265 }
266 case '\f':
267 {
268 *q++='\\';
269 *q++='f';
270 break;
271 }
272 case '\n':
273 {
274 *q++='\\';
275 *q++='n';
276 break;
277 }
278 case '\r':
279 {
280 *q++='\\';
281 *q++='r';
282 break;
283 }
284 case '\t':
285 {
286 *q++='\\';
287 *q++='t';
288 break;
289 }
290 case '\\':
291 {
292 *q++='\\';
293 *q++='\\';
294 break;
295 }
296 default:
297 {
298 if (((int) *p >= 0x00) && ((int) *p <= 0x1f))
299 {
300 (void) FormatLocaleString(q,7,"\\u%04X",(int) *p);
301 q+=6;
dirk6c316f22015-06-27 15:44:29 +0000302 break;
Cristydb96d692017-10-29 10:37:57 -0400303 }
304 *q++=(*p);
305 break;
306 }
307 }
dirk6c316f22015-06-27 15:44:29 +0000308 }
309 *q++='"';
310 *q='\0';
311 (void) FormatLocaleFile(file,format,escaped_json);
312 (void) DestroyString(escaped_json);
313}
314
cristy9e818982014-01-18 14:54:37 +0000315static ChannelStatistics *GetLocationStatistics(const Image *image,
316 const StatisticType type,ExceptionInfo *exception)
317{
318 ChannelStatistics
319 *channel_statistics;
320
321 register ssize_t
322 i;
323
324 ssize_t
325 y;
326
327 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000328 assert(image->signature == MagickCoreSignature);
cristy9e818982014-01-18 14:54:37 +0000329 if (image->debug != MagickFalse)
330 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
331 channel_statistics=(ChannelStatistics *) AcquireQuantumMemory(
332 MaxPixelChannels+1,sizeof(*channel_statistics));
333 if (channel_statistics == (ChannelStatistics *) NULL)
334 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
Cristy81bfff22018-03-10 07:58:31 -0500335 (void) memset(channel_statistics,0,(MaxPixelChannels+1)*
cristy9e818982014-01-18 14:54:37 +0000336 sizeof(*channel_statistics));
337 for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
338 {
339 switch (type)
340 {
341 case MaximumStatistic:
342 default:
343 {
cristyfe181a72014-02-02 21:17:43 +0000344 channel_statistics[i].maxima=(-MagickMaximumValue);
cristy9e818982014-01-18 14:54:37 +0000345 break;
346 }
347 case MinimumStatistic:
348 {
cristyfe181a72014-02-02 21:17:43 +0000349 channel_statistics[i].minima=MagickMaximumValue;
cristy9e818982014-01-18 14:54:37 +0000350 break;
351 }
352 }
353 }
354 for (y=0; y < (ssize_t) image->rows; y++)
355 {
356 register const Quantum
dirk05d2ff72015-11-18 23:13:43 +0100357 *magick_restrict p;
cristy9e818982014-01-18 14:54:37 +0000358
359 register ssize_t
360 x;
361
362 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
363 if (p == (const Quantum *) NULL)
364 break;
365 for (x=0; x < (ssize_t) image->columns; x++)
366 {
367 register ssize_t
368 i;
369
Cristyd05ae9a2017-08-12 07:55:19 -0400370 if (GetPixelReadMask(image,p) <= (QuantumRange/2))
cristy9e818982014-01-18 14:54:37 +0000371 {
372 p+=GetPixelChannels(image);
373 continue;
374 }
375 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
376 {
Cristy3c296d62017-08-19 20:09:26 -0400377 PixelChannel channel = GetPixelChannelChannel(image,i);
378 PixelTrait traits = GetPixelChannelTraits(image,channel);
cristy9e818982014-01-18 14:54:37 +0000379 if (traits == UndefinedPixelTrait)
380 continue;
381 switch (type)
382 {
383 case MaximumStatistic:
384 default:
385 {
386 if ((double) p[i] > channel_statistics[channel].maxima)
387 channel_statistics[channel].maxima=(double) p[i];
388 break;
389 }
390 case MinimumStatistic:
391 {
392 if ((double) p[i] < channel_statistics[channel].minima)
393 channel_statistics[channel].minima=(double) p[i];
394 break;
395 }
396 }
397 }
398 p+=GetPixelChannels(image);
399 }
400 }
401 return(channel_statistics);
402}
403
404static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
dirk6c316f22015-06-27 15:44:29 +0000405 const char *name,const MagickBooleanType separator,
406 const ChannelFeatures *channel_features)
cristy9e818982014-01-18 14:54:37 +0000407{
408#define PrintFeature(feature) \
409 GetMagickPrecision(),(feature)[0], \
410 GetMagickPrecision(),(feature)[1], \
411 GetMagickPrecision(),(feature)[2], \
412 GetMagickPrecision(),(feature)[3], \
413 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
414
dirk6c316f22015-06-27 15:44:29 +0000415#define FeaturesFormat " \"%s\": {\n" \
416 " \"angularSecondMoment\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400417 " \"horizontal\": %.*g,\n" \
418 " \"vertical\": %.*g,\n" \
419 " \"leftDiagonal\": %.*g,\n" \
420 " \"rightDiagonal\": %.*g,\n" \
421 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000422 " },\n" \
423 " \"contrast\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400424 " \"horizontal\": %.*g,\n" \
425 " \"vertical\": %.*g,\n" \
426 " \"leftDiagonal\": %.*g,\n" \
427 " \"rightDiagonal\": %.*g,\n" \
428 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000429 " },\n" \
430 " \"correlation\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400431 " \"horizontal\": %.*g,\n" \
432 " \"vertical\": %.*g,\n" \
433 " \"leftDiagonal\": %.*g,\n" \
434 " \"rightDiagonal\": %.*g,\n" \
435 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000436 " },\n" \
437 " \"sumOfSquaresVariance\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400438 " \"horizontal\": %.*g,\n" \
439 " \"vertical\": %.*g,\n" \
440 " \"leftDiagonal\": %.*g,\n" \
441 " \"rightDiagonal\": %.*g,\n" \
442 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000443 " },\n" \
444 " \"inverseDifferenceMoment\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400445 " \"horizontal\": %.*g,\n" \
446 " \"vertical\": %.*g,\n" \
447 " \"leftDiagonal\": %.*g,\n" \
448 " \"rightDiagonal\": %.*g,\n" \
449 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000450 " },\n" \
451 " \"sumAverage\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400452 " \"horizontal\": %.*g,\n" \
453 " \"vertical\": %.*g,\n" \
454 " \"leftDiagonal\": %.*g,\n" \
455 " \"rightDiagonal\": %.*g,\n" \
456 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000457 " },\n" \
458 " \"sumVariance\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400459 " \"horizontal\": %.*g,\n" \
460 " \"vertical\": %.*g,\n" \
461 " \"leftDiagonal\": %.*g,\n" \
462 " \"rightDiagonal\": %.*g,\n" \
463 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000464 " },\n" \
465 " \"sumEntropy\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400466 " \"horizontal\": %.*g,\n" \
467 " \"vertical\": %.*g,\n" \
468 " \"leftDiagonal\": %.*g,\n" \
469 " \"rightDiagonal\": %.*g,\n" \
470 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000471 " },\n" \
472 " \"entropy\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400473 " \"horizontal\": %.*g,\n" \
474 " \"vertical\": %.*g,\n" \
475 " \"leftDiagonal\": %.*g,\n" \
476 " \"rightDiagonal\": %.*g,\n" \
477 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000478 " },\n" \
479 " \"differenceVariance\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400480 " \"horizontal\": %.*g,\n" \
481 " \"vertical\": %.*g,\n" \
482 " \"leftDiagonal\": %.*g,\n" \
483 " \"rightDiagonal\": %.*g,\n" \
484 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000485 " },\n" \
486 " \"differenceEntropy\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400487 " \"horizontal\": %.*g,\n" \
488 " \"vertical\": %.*g,\n" \
489 " \"leftDiagonal\": %.*g,\n" \
490 " \"rightDiagonal\": %.*g,\n" \
491 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000492 " },\n" \
493 " \"informationMeasureOfCorrelation1\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400494 " \"horizontal\": %.*g,\n" \
495 " \"vertical\": %.*g,\n" \
496 " \"leftDiagonal\": %.*g,\n" \
497 " \"rightDiagonal\": %.*g,\n" \
498 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000499 " },\n" \
500 " \"informationMeasureOfCorrelation2\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400501 " \"horizontal\": %.*g,\n" \
502 " \"vertical\": %.*g,\n" \
503 " \"leftDiagonal\": %.*g,\n" \
504 " \"rightDiagonal\": %.*g,\n" \
505 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000506 " },\n" \
507 " \"maximumCorrelationCoefficient\": {\n" \
Cristybc978e02017-10-29 13:29:43 -0400508 " \"horizontal\": %.*g,\n" \
509 " \"vertical\": %.*g,\n" \
510 " \"leftDiagonal\": %.*g,\n" \
511 " \"rightDiagonal\": %.*g,\n" \
512 " \"average\": %.*g\n" \
dirk6c316f22015-06-27 15:44:29 +0000513 " }\n"
cristy9e818982014-01-18 14:54:37 +0000514
515 ssize_t
516 n;
517
518 n=FormatLocaleFile(file,FeaturesFormat,name,
519 PrintFeature(channel_features[channel].angular_second_moment),
520 PrintFeature(channel_features[channel].contrast),
521 PrintFeature(channel_features[channel].correlation),
522 PrintFeature(channel_features[channel].variance_sum_of_squares),
523 PrintFeature(channel_features[channel].inverse_difference_moment),
524 PrintFeature(channel_features[channel].sum_average),
525 PrintFeature(channel_features[channel].sum_variance),
526 PrintFeature(channel_features[channel].sum_entropy),
527 PrintFeature(channel_features[channel].entropy),
528 PrintFeature(channel_features[channel].difference_variance),
529 PrintFeature(channel_features[channel].difference_entropy),
530 PrintFeature(channel_features[channel].measure_of_correlation_1),
531 PrintFeature(channel_features[channel].measure_of_correlation_2),
532 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
dirk6c316f22015-06-27 15:44:29 +0000533 (void) FormatLocaleFile(file," }");
534 if (separator != MagickFalse)
535 (void) FormatLocaleFile(file,",");
536 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000537 return(n);
538}
539
540static ssize_t PrintChannelLocations(FILE *file,const Image *image,
541 const PixelChannel channel,const char *name,const StatisticType type,
dirk6c316f22015-06-27 15:44:29 +0000542 const size_t max_locations,const MagickBooleanType separator,
543 const ChannelStatistics *channel_statistics)
cristy9e818982014-01-18 14:54:37 +0000544{
545 double
546 target;
547
548 ExceptionInfo
549 *exception;
550
551 ssize_t
552 n,
553 y;
554
555 switch (type)
556 {
557 case MaximumStatistic:
558 default:
559 {
560 target=channel_statistics[channel].maxima;
561 break;
562 }
563 case MinimumStatistic:
564 {
565 target=channel_statistics[channel].minima;
566 break;
567 }
568 }
dirk6c316f22015-06-27 15:44:29 +0000569 (void) FormatLocaleFile(file," \"%s\": {\n \"intensity\": "
Cristybc978e02017-10-29 13:29:43 -0400570 "%.*g,\n",name,GetMagickPrecision(),QuantumScale*target);
cristy9e818982014-01-18 14:54:37 +0000571 exception=AcquireExceptionInfo();
572 n=0;
573 for (y=0; y < (ssize_t) image->rows; y++)
574 {
575 register const Quantum
576 *p;
577
578 ssize_t
579 offset,
580 x;
581
582 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
583 if (p == (const Quantum *) NULL)
584 break;
585 for (x=0; x < (ssize_t) image->columns; x++)
586 {
587 MagickBooleanType
588 match;
589
Cristy3c296d62017-08-19 20:09:26 -0400590 PixelTrait traits = GetPixelChannelTraits(image,channel);
cristy9e818982014-01-18 14:54:37 +0000591 if (traits == UndefinedPixelTrait)
592 continue;
593 offset=GetPixelChannelOffset(image,channel);
cristy3bdd9252014-12-21 20:01:43 +0000594 match=fabs((double) (p[offset]-target)) < 0.5 ? MagickTrue : MagickFalse;
cristy9e818982014-01-18 14:54:37 +0000595 if (match != MagickFalse)
596 {
597 if ((max_locations != 0) && (n >= (ssize_t) max_locations))
598 break;
dirk6c316f22015-06-27 15:44:29 +0000599 if (n != 0)
600 (void) FormatLocaleFile(file,",\n");
601 (void) FormatLocaleFile(file," \"location%.20g\": {\n"
602 " \"x\": %.20g,\n \"y\": %.20g\n"
603 " }",(double) n,(double) x,(double) y);
cristy9e818982014-01-18 14:54:37 +0000604 n++;
605 }
606 p+=GetPixelChannels(image);
607 }
608 if (x < (ssize_t) image->columns)
609 break;
610 }
dirk6c316f22015-06-27 15:44:29 +0000611 (void) FormatLocaleFile(file,"\n }");
612 if (separator != MagickFalse)
613 (void) FormatLocaleFile(file,",");
cristy9e818982014-01-18 14:54:37 +0000614 (void) FormatLocaleFile(file,"\n");
615 return(n);
616}
617
618static ssize_t PrintChannelMoments(FILE *file,const PixelChannel channel,
dirk6c316f22015-06-27 15:44:29 +0000619 const char *name,const MagickBooleanType separator,
620 const ChannelMoments *channel_moments)
cristy9e818982014-01-18 14:54:37 +0000621{
622 register ssize_t
623 i;
624
625 ssize_t
626 n;
627
dirk6c316f22015-06-27 15:44:29 +0000628 n=FormatLocaleFile(file," \"%s\": {\n",name);
629 n+=FormatLocaleFile(file," \"centroid\": {\n "
Cristybc978e02017-10-29 13:29:43 -0400630 " \"x\": %.*g,\n"
631 " \"y\": %.*g\n },\n",
cristy9e818982014-01-18 14:54:37 +0000632 GetMagickPrecision(),channel_moments[channel].centroid.x,
633 GetMagickPrecision(),channel_moments[channel].centroid.y);
dirk6c316f22015-06-27 15:44:29 +0000634 n+=FormatLocaleFile(file," \"ellipseSemiMajorMinorAxis\": {\n"
Cristybc978e02017-10-29 13:29:43 -0400635 " \"x\": %.*g,\n"
636 " \"y\": %.*g\n },\n",
cristy9e818982014-01-18 14:54:37 +0000637 GetMagickPrecision(),channel_moments[channel].ellipse_axis.x,
638 GetMagickPrecision(),channel_moments[channel].ellipse_axis.y);
Cristybc978e02017-10-29 13:29:43 -0400639 n+=FormatLocaleFile(file," \"ellipseAngle\": %.*g,\n",
cristy9e818982014-01-18 14:54:37 +0000640 GetMagickPrecision(),channel_moments[channel].ellipse_angle);
Cristybc978e02017-10-29 13:29:43 -0400641 n+=FormatLocaleFile(file," \"ellipseEccentricity\": %.*g,\n",
cristy9e818982014-01-18 14:54:37 +0000642 GetMagickPrecision(),channel_moments[channel].ellipse_eccentricity);
Cristybc978e02017-10-29 13:29:43 -0400643 n+=FormatLocaleFile(file," \"ellipseIntensity\": %.*g,\n",
cristy9e818982014-01-18 14:54:37 +0000644 GetMagickPrecision(),channel_moments[channel].ellipse_intensity);
dirk6c316f22015-06-27 15:44:29 +0000645 for (i=0; i < 7; i++)
Cristybc978e02017-10-29 13:29:43 -0400646 n+=FormatLocaleFile(file," \"I%.20g\": %.*g,\n",i+1.0,
dirk6c316f22015-06-27 15:44:29 +0000647 GetMagickPrecision(),channel_moments[channel].invariant[i]);
Cristybc978e02017-10-29 13:29:43 -0400648 n+=FormatLocaleFile(file," \"I%.20g\": %.*g\n",i+1.0,
dirk6c316f22015-06-27 15:44:29 +0000649 GetMagickPrecision(),channel_moments[channel].invariant[i]);
650 (void) FormatLocaleFile(file," }");
651 if (separator != MagickFalse)
652 (void) FormatLocaleFile(file,",");
653 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000654 return(n);
655}
656
Cristye6961802016-09-03 11:31:13 -0400657static ssize_t PrintChannelPerceptualHash(Image *image,FILE *file,
cristydc395172014-02-23 01:33:36 +0000658 const ChannelPerceptualHash *channel_phash)
659{
660 register ssize_t
661 i;
662
663 ssize_t
Cristy69a7c2b2016-12-24 11:22:36 -0500664 n = 0;
cristydc395172014-02-23 01:33:36 +0000665
Cristye6961802016-09-03 11:31:13 -0400666 (void) FormatLocaleFile(file," \"colorspaces\": [ ");
667 for (i=0; i < (ssize_t) channel_phash[0].number_colorspaces; i++)
668 {
669 (void) FormatLocaleFile(file,"\"%s\"",CommandOptionToMnemonic(
670 MagickColorspaceOptions,(ssize_t) channel_phash[0].colorspace[i]));
671 if (i < (ssize_t) (channel_phash[0].number_colorspaces-1))
672 (void) FormatLocaleFile(file,", ");
673 }
674 (void) FormatLocaleFile(file,"],\n");
675 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
676 {
677 register ssize_t
678 j;
679
Cristy3c296d62017-08-19 20:09:26 -0400680 PixelChannel channel = GetPixelChannelChannel(image,i);
681 PixelTrait traits = GetPixelChannelTraits(image,channel);
Cristye6961802016-09-03 11:31:13 -0400682 if (traits == UndefinedPixelTrait)
683 continue;
684 n=FormatLocaleFile(file," \"Channel%.20g\": {\n",(double) channel);
685 for (j=0; j < MaximumNumberOfPerceptualHashes; j++)
686 {
687 register ssize_t
688 k;
689
690 n+=FormatLocaleFile(file," \"PH%.20g\": [",(double) j+1);
691 for (k=0; k < (ssize_t) channel_phash[0].number_colorspaces; k++)
692 {
Cristybc978e02017-10-29 13:29:43 -0400693 n+=FormatLocaleFile(file,"%.*g",GetMagickPrecision(),
Cristye6961802016-09-03 11:31:13 -0400694 channel_phash[channel].phash[k][j]);
695 if (k < (ssize_t) (channel_phash[0].number_colorspaces-1))
696 n+=FormatLocaleFile(file,", ");
697 }
698 n+=FormatLocaleFile(file,"]");
699 if (j < (MaximumNumberOfPerceptualHashes-1))
700 n+=FormatLocaleFile(file,",\n");
701 }
Cristy338f0882016-12-10 12:12:35 -0500702 if (i < (ssize_t) (GetPixelChannels(image)-1))
Cristye6961802016-09-03 11:31:13 -0400703 n+=FormatLocaleFile(file,"\n },\n");
704 }
705 n+=FormatLocaleFile(file,"\n }\n");
cristydc395172014-02-23 01:33:36 +0000706 return(n);
707}
708
cristy9e818982014-01-18 14:54:37 +0000709static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
dirk6c316f22015-06-27 15:44:29 +0000710 const char *name,const double scale,const MagickBooleanType separator,
cristy9e818982014-01-18 14:54:37 +0000711 const ChannelStatistics *channel_statistics)
712{
Cristybc978e02017-10-29 13:29:43 -0400713#define StatisticsFormat " \"%s\": {\n \"min\": %.*g,\n" \
714 " \"max\": %.*g,\n \"mean\": %.*g,\n " \
715 "\"standardDeviation\": %.*g,\n \"kurtosis\": %.*g,\n "\
716 "\"skewness\": %.*g,\n \"entropy\": %.*g\n }"
cristy9e818982014-01-18 14:54:37 +0000717
718 ssize_t
719 n;
720
Cristybc978e02017-10-29 13:29:43 -0400721 n=FormatLocaleFile(file,StatisticsFormat,name,GetMagickPrecision(),
722 (double) ClampToQuantum(scale*channel_statistics[channel].minima),
723 GetMagickPrecision(),(double) ClampToQuantum(scale*
724 channel_statistics[channel].maxima),GetMagickPrecision(),scale*
725 channel_statistics[channel].mean,GetMagickPrecision(),scale*
Cristy7a4f99c2018-04-28 17:34:11 -0400726 IsNaN(channel_statistics[channel].standard_deviation) != 0 ? MagickEpsilon :
Cristybc978e02017-10-29 13:29:43 -0400727 channel_statistics[channel].standard_deviation,GetMagickPrecision(),
728 channel_statistics[channel].kurtosis,GetMagickPrecision(),
729 channel_statistics[channel].skewness,GetMagickPrecision(),
730 channel_statistics[channel].entropy);
dirk6c316f22015-06-27 15:44:29 +0000731 if (separator != MagickFalse)
cristye1c94d92015-06-28 12:16:33 +0000732 (void) FormatLocaleFile(file,",");
dirk6c316f22015-06-27 15:44:29 +0000733 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000734 return(n);
735}
736
Dirk Lemstra32b15502017-09-21 17:04:36 +0200737static void EncodeIptcProfile(FILE *file,const StringInfo *profile)
738{
739 char
740 *attribute,
741 **attribute_list;
742
743 const char
744 *tag;
745
Cristydb96d692017-10-29 10:37:57 -0400746 IPTCInfo
Dirk Lemstra32b15502017-09-21 17:04:36 +0200747 *value,
748 **values;
749
750 long
751 dataset,
752 record,
753 sentinel;
754
755 register ssize_t
756 i,
757 j,
758 k;
759
760 size_t
761 count,
762 length,
763 profile_length;
764
Cristydb96d692017-10-29 10:37:57 -0400765 values=(IPTCInfo **) NULL;
Dirk Lemstra32b15502017-09-21 17:04:36 +0200766 count=0;
767 profile_length=GetStringInfoLength(profile);
768 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
769 {
770 length=1;
771 sentinel=GetStringInfoDatum(profile)[i++];
772 if (sentinel != 0x1c)
773 continue;
774 dataset=GetStringInfoDatum(profile)[i++];
775 record=GetStringInfoDatum(profile)[i++];
Cristydb96d692017-10-29 10:37:57 -0400776 value=(IPTCInfo *) NULL;
Cristy7c7050a2017-09-30 12:12:21 -0400777 for (j=0; j < (ssize_t) count; j++)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200778 {
779 if ((values[j]->record == record) && (values[j]->dataset == dataset))
780 value=values[j];
781 }
Cristydb96d692017-10-29 10:37:57 -0400782 if (value == (IPTCInfo *) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200783 {
Cristydb96d692017-10-29 10:37:57 -0400784 values=(IPTCInfo **) ResizeQuantumMemory(values,count+1,
Dirk Lemstra32b15502017-09-21 17:04:36 +0200785 sizeof(*values));
Cristydb96d692017-10-29 10:37:57 -0400786 if (values == (IPTCInfo **) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200787 break;
Cristydb96d692017-10-29 10:37:57 -0400788 value=(IPTCInfo *) AcquireMagickMemory(sizeof(*value));
789 if (value == (IPTCInfo *) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200790 break;
Cristydb96d692017-10-29 10:37:57 -0400791 /* Check the tag length in IPTCInfo when a new tag is added */
Dirk Lemstra32b15502017-09-21 17:04:36 +0200792 switch (record)
793 {
794 case 5: tag="Image Name"; break;
795 case 7: tag="Edit Status"; break;
796 case 10: tag="Priority"; break;
797 case 15: tag="Category"; break;
798 case 20: tag="Supplemental Category"; break;
799 case 22: tag="Fixture Identifier"; break;
800 case 25: tag="Keyword"; break;
801 case 30: tag="Release Date"; break;
802 case 35: tag="Release Time"; break;
803 case 40: tag="Special Instructions"; break;
804 case 45: tag="Reference Service"; break;
805 case 47: tag="Reference Date"; break;
806 case 50: tag="Reference Number"; break;
807 case 55: tag="Created Date"; break;
808 case 60: tag="Created Time"; break;
809 case 65: tag="Originating Program"; break;
810 case 70: tag="Program Version"; break;
811 case 75: tag="Object Cycle"; break;
812 case 80: tag="Byline"; break;
813 case 85: tag="Byline Title"; break;
814 case 90: tag="City"; break;
815 case 92: tag="Sub-Location"; break;
816 case 95: tag="Province State"; break;
817 case 100: tag="Country Code"; break;
818 case 101: tag="Country"; break;
819 case 103: tag="Original Transmission Reference"; break;
820 case 105: tag="Headline"; break;
821 case 110: tag="Credit"; break;
822 case 115: tag="Src"; break;
823 case 116: tag="Copyright String"; break;
824 case 120: tag="Caption"; break;
825 case 121: tag="Local Caption"; break;
826 case 122: tag="Caption Writer"; break;
827 case 200: tag="Custom Field 1"; break;
828 case 201: tag="Custom Field 2"; break;
829 case 202: tag="Custom Field 3"; break;
830 case 203: tag="Custom Field 4"; break;
831 case 204: tag="Custom Field 5"; break;
832 case 205: tag="Custom Field 6"; break;
833 case 206: tag="Custom Field 7"; break;
834 case 207: tag="Custom Field 8"; break;
835 case 208: tag="Custom Field 9"; break;
836 case 209: tag="Custom Field 10"; break;
837 case 210: tag="Custom Field 11"; break;
838 case 211: tag="Custom Field 12"; break;
839 case 212: tag="Custom Field 13"; break;
840 case 213: tag="Custom Field 14"; break;
841 case 214: tag="Custom Field 15"; break;
842 case 215: tag="Custom Field 16"; break;
843 case 216: tag="Custom Field 17"; break;
844 case 217: tag="Custom Field 18"; break;
845 case 218: tag="Custom Field 19"; break;
846 case 219: tag="Custom Field 20"; break;
847 default: tag="Unknown"; break;
848 }
849 (void) CopyMagickString(value->tag,tag,strlen(tag)+1);
850 value->record=record;
851 value->dataset=dataset;
852 value->values=(char ***) NULL;
853 value->values_length=0;
854 values[count++]=value;
855 }
856 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
857 length|=GetStringInfoDatum(profile)[i++];
858 attribute=(char *) NULL;
859 if (~length >= (MagickPathExtent-1))
860 attribute=(char *) AcquireQuantumMemory(length+MagickPathExtent,
861 sizeof(*attribute));
862 if (attribute != (char *) NULL)
863 {
864 (void) CopyMagickString(attribute,(char *)
865 GetStringInfoDatum(profile)+i,length+1);
866 attribute_list=StringToList(attribute);
867 if (attribute_list != (char **) NULL)
868 {
869 value->values=(char ***) ResizeQuantumMemory(value->values,
870 value->values_length+1,
871 sizeof(*value->values));
872 if (value->values == (char ***) NULL)
873 break;
874 value->values[value->values_length++]=attribute_list;
875 }
876 attribute=DestroyString(attribute);
877 }
878 }
Cristydb96d692017-10-29 10:37:57 -0400879 if (values != (IPTCInfo **) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200880 {
Cristy7c7050a2017-09-30 12:12:21 -0400881 for (i=0; i < (ssize_t) count; i++)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200882 {
883 value=values[i];
884 (void) FormatLocaleFile(file," \"%s[%.20g,%.20g]\": ",
885 value->tag,(double) value->dataset,(double) value->record);
886 if (value->values_length == 0)
887 (void) FormatLocaleFile(file,"null,");
888 else
889 {
890 (void) FormatLocaleFile(file,"[");
Cristy7c7050a2017-09-30 12:12:21 -0400891 for (j=0; j < (ssize_t) value->values_length; j++)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200892 {
893 for (k=0; value->values[j][k] != (char *) NULL; k++)
894 {
895 if (j > 0 || k > 0)
896 (void) FormatLocaleFile(file,",");
Cristydb96d692017-10-29 10:37:57 -0400897 JSONFormatLocaleFile(file,"%s",value->values[j][k]);
Dirk Lemstra32b15502017-09-21 17:04:36 +0200898 value->values[j][k]=(char *) RelinquishMagickMemory(
899 value->values[j][k]);
900 }
901 value->values[j]=(char **) RelinquishMagickMemory(
902 value->values[j]);
903 }
904 value->values=(char ***) RelinquishMagickMemory(value->values);
905 (void) FormatLocaleFile(file,"],\n");
906 }
Cristydb96d692017-10-29 10:37:57 -0400907 values[i]=(IPTCInfo *) RelinquishMagickMemory(values[i]);
Dirk Lemstra32b15502017-09-21 17:04:36 +0200908 }
Cristydb96d692017-10-29 10:37:57 -0400909 values=(IPTCInfo **) RelinquishMagickMemory(values);
Dirk Lemstra32b15502017-09-21 17:04:36 +0200910 }
911}
912
cristy9e818982014-01-18 14:54:37 +0000913static MagickBooleanType EncodeImageAttributes(Image *image,FILE *file,
914 ExceptionInfo *exception)
915{
cristy9e818982014-01-18 14:54:37 +0000916 char
cristy151b66d2015-04-15 10:50:31 +0000917 color[MagickPathExtent],
918 format[MagickPathExtent],
919 key[MagickPathExtent];
cristy9e818982014-01-18 14:54:37 +0000920
921 ChannelFeatures
922 *channel_features;
923
924 ChannelMoments
925 *channel_moments;
926
cristydc395172014-02-23 01:33:36 +0000927 ChannelPerceptualHash
928 *channel_phash;
929
cristy9e818982014-01-18 14:54:37 +0000930 ChannelStatistics
931 *channel_statistics;
932
Cristy519e0052016-10-16 15:28:40 -0400933 char
934 *url;
935
cristy9e818982014-01-18 14:54:37 +0000936 const char
937 *artifact,
938 *locate,
939 *name,
940 *property,
941 *registry,
942 *value;
943
944 const MagickInfo
945 *magick_info;
946
947 double
948 elapsed_time,
949 user_time;
950
951 ImageType
952 type;
953
954 MagickBooleanType
955 ping;
956
957 register const Quantum
958 *p;
959
960 register ssize_t
961 i,
962 x;
963
964 size_t
dirk6c316f22015-06-27 15:44:29 +0000965 depth,
cristy9e818982014-01-18 14:54:37 +0000966 distance,
967 scale;
968
969 ssize_t
970 y;
971
972 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000973 assert(image->signature == MagickCoreSignature);
cristy9e818982014-01-18 14:54:37 +0000974 if (image->debug != MagickFalse)
975 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristya10f7442014-01-19 18:32:15 +0000976 *format='\0';
977 elapsed_time=GetElapsedTime(&image->timer);
978 user_time=GetUserTime(&image->timer);
979 GetTimerInfo(&image->timer);
980 p=GetVirtualPixels(image,0,0,1,1,exception);
981 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristye1c94d92015-06-28 12:16:33 +0000982 (void) ping;
cristya10f7442014-01-19 18:32:15 +0000983 (void) SignatureImage(image,exception);
Cristydb96d692017-10-29 10:37:57 -0400984 JSONFormatLocaleFile(file,"{\n \"image\": {\n \"name\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +0000985 image->filename);
cristya10f7442014-01-19 18:32:15 +0000986 if (*image->magick_filename != '\0')
987 if (LocaleCompare(image->magick_filename,image->filename) != 0)
988 {
989 char
cristy151b66d2015-04-15 10:50:31 +0000990 filename[MagickPathExtent];
cristya10f7442014-01-19 18:32:15 +0000991
992 GetPathComponent(image->magick_filename,TailPath,filename);
Cristydb96d692017-10-29 10:37:57 -0400993 JSONFormatLocaleFile(file," \"baseName\": %s,\n",filename);
cristya10f7442014-01-19 18:32:15 +0000994 }
Cristydb96d692017-10-29 10:37:57 -0400995 JSONFormatLocaleFile(file," \"format\": %s,\n",image->magick);
cristya10f7442014-01-19 18:32:15 +0000996 magick_info=GetMagickInfo(image->magick,exception);
dirk6c316f22015-06-27 15:44:29 +0000997 if ((magick_info != (const MagickInfo *) NULL) &&
998 (GetMagickDescription(magick_info) != (const char *) NULL))
Cristydb96d692017-10-29 10:37:57 -0400999 JSONFormatLocaleFile(file," \"formatDescription\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001000 image->magick);
cristy12bcd3d2015-01-28 00:54:23 +00001001 if ((magick_info != (const MagickInfo *) NULL) &&
cristya10f7442014-01-19 18:32:15 +00001002 (GetMagickMimeType(magick_info) != (const char *) NULL))
Cristydb96d692017-10-29 10:37:57 -04001003 JSONFormatLocaleFile(file," \"mimeType\": %s,\n",GetMagickMimeType(
cristya10f7442014-01-19 18:32:15 +00001004 magick_info));
Cristydb96d692017-10-29 10:37:57 -04001005 JSONFormatLocaleFile(file," \"class\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001006 MagickClassOptions,(ssize_t) image->storage_class));
dirk6c316f22015-06-27 15:44:29 +00001007 (void) FormatLocaleFile(file," \"geometry\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001008 " \"width\": %g,\n \"height\": %g,\n"
1009 " \"x\": %g,\n \"y\": %g\n },\n",
dirk6c316f22015-06-27 15:44:29 +00001010 (double) image->columns,(double) image->rows,(double) image->tile_offset.x,
1011 (double) image->tile_offset.y);
cristya10f7442014-01-19 18:32:15 +00001012 if ((image->magick_columns != 0) || (image->magick_rows != 0))
1013 if ((image->magick_columns != image->columns) ||
1014 (image->magick_rows != image->rows))
dirk6c316f22015-06-27 15:44:29 +00001015 (void) FormatLocaleFile(file," \"baseGeometry\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001016 " \"width\": %g,\n \"height\": %g\n },\n",(double)
1017 image->magick_columns,(double) image->magick_rows);
cristya10f7442014-01-19 18:32:15 +00001018 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
1019 {
dirk6c316f22015-06-27 15:44:29 +00001020 (void) FormatLocaleFile(file," \"resolution\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001021 " \"x\": %g,\n \"y\": %g\n },\n",image->resolution.x,
cristya10f7442014-01-19 18:32:15 +00001022 image->resolution.y);
Cristybc978e02017-10-29 13:29:43 -04001023 (void) FormatLocaleFile(file," \"printSize\": {\n"
1024 " \"x\": %.*g,\n \"y\": %.*g\n },\n",GetMagickPrecision(),
1025 image->columns/image->resolution.x,GetMagickPrecision(),(double)
1026 image->rows/image->resolution.y);
cristya10f7442014-01-19 18:32:15 +00001027 }
Cristydb96d692017-10-29 10:37:57 -04001028 JSONFormatLocaleFile(file," \"units\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001029 MagickResolutionOptions,(ssize_t) image->units));
Cristy95ab3892017-12-24 09:34:52 -05001030 type=IdentifyImageType(image,exception);
Cristydb96d692017-10-29 10:37:57 -04001031 JSONFormatLocaleFile(file," \"type\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001032 MagickTypeOptions,(ssize_t) type));
Cristy4826fb42017-12-17 12:05:09 -05001033 if (image->type != type)
Cristydb96d692017-10-29 10:37:57 -04001034 JSONFormatLocaleFile(file," \"baseType\": %s,\n",
Cristy4826fb42017-12-17 12:05:09 -05001035 CommandOptionToMnemonic(MagickTypeOptions,(ssize_t) image->type));
Cristydb96d692017-10-29 10:37:57 -04001036 JSONFormatLocaleFile(file," \"endianess\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001037 CommandOptionToMnemonic(MagickEndianOptions,(ssize_t) image->endian));
cristy9e818982014-01-18 14:54:37 +00001038 locate=GetImageArtifact(image,"identify:locate");
cristy3e583dd2014-01-19 14:11:51 +00001039 if (locate == (const char *) NULL)
1040 locate=GetImageArtifact(image,"json:locate");
cristy9e818982014-01-18 14:54:37 +00001041 if (locate != (const char *) NULL)
1042 {
1043 const char
1044 *limit;
1045
1046 size_t
1047 max_locations;
1048
1049 StatisticType
1050 type;
1051
1052 /*
1053 Display minimum, maximum, or mean pixel locations.
1054 */
1055 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
1056 MagickFalse,locate);
1057 limit=GetImageArtifact(image,"identify:limit");
cristy3e583dd2014-01-19 14:11:51 +00001058 if (limit == (const char *) NULL)
1059 limit=GetImageArtifact(image,"json:limit");
cristy9e818982014-01-18 14:54:37 +00001060 max_locations=0;
1061 if (limit != (const char *) NULL)
1062 max_locations=StringToUnsignedLong(limit);
1063 channel_statistics=GetLocationStatistics(image,type,exception);
1064 if (channel_statistics == (ChannelStatistics *) NULL)
1065 return(MagickFalse);
dirk6c316f22015-06-27 15:44:29 +00001066 (void) FormatLocaleFile(file," \"channel%s\": {\n",locate);
1067 if (image->alpha_trait != UndefinedPixelTrait)
1068 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
1069 type,max_locations,MagickTrue,channel_statistics);
Cristy3889d152017-12-22 19:42:13 -05001070 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001071 {
1072 case RGBColorspace:
1073 default:
1074 {
1075 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
dirk6c316f22015-06-27 15:44:29 +00001076 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001077 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001078 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001079 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
dirk6c316f22015-06-27 15:44:29 +00001080 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001081 break;
1082 }
1083 case CMYKColorspace:
1084 {
1085 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
dirk6c316f22015-06-27 15:44:29 +00001086 type,max_locations,MagickTrue,channel_statistics);
Cristy95ab3892017-12-24 09:34:52 -05001087 (void) PrintChannelLocations(file,image,MagentaPixelChannel,
1088 "Magenta",type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001089 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001090 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001091 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001092 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001093 break;
1094 }
Cristybeb4c2b2017-12-26 19:43:17 -05001095 case LinearGRAYColorspace:
cristy9e818982014-01-18 14:54:37 +00001096 case GRAYColorspace:
1097 {
1098 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
dirk6c316f22015-06-27 15:44:29 +00001099 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001100 break;
1101 }
1102 }
dirk6c316f22015-06-27 15:44:29 +00001103 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001104 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
1105 channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001106 }
cristy9e818982014-01-18 14:54:37 +00001107 /*
1108 Detail channel depth and extrema.
1109 */
Cristydb96d692017-10-29 10:37:57 -04001110 JSONFormatLocaleFile(file," \"colorspace\": %s,\n",
Cristy3889d152017-12-22 19:42:13 -05001111 CommandOptionToMnemonic(MagickColorspaceOptions,(ssize_t)
1112 image->colorspace));
cristy9e818982014-01-18 14:54:37 +00001113 channel_statistics=(ChannelStatistics *) NULL;
1114 channel_moments=(ChannelMoments *) NULL;
cristydc395172014-02-23 01:33:36 +00001115 channel_phash=(ChannelPerceptualHash *) NULL;
cristy9e818982014-01-18 14:54:37 +00001116 channel_features=(ChannelFeatures *) NULL;
cristy9e818982014-01-18 14:54:37 +00001117 scale=1;
dirk6c316f22015-06-27 15:44:29 +00001118 channel_statistics=GetImageStatistics(image,exception);
1119 if (channel_statistics == (ChannelStatistics *) NULL)
1120 return(MagickFalse);
1121 artifact=GetImageArtifact(image,"identify:moments");
1122 if (artifact == (const char *) NULL)
1123 artifact=GetImageArtifact(image,"json:moments");
1124 if (artifact != (const char *) NULL)
cristy9e818982014-01-18 14:54:37 +00001125 {
dirk6c316f22015-06-27 15:44:29 +00001126 channel_moments=GetImageMoments(image,exception);
1127 channel_phash=GetImagePerceptualHash(image,exception);
cristy9e818982014-01-18 14:54:37 +00001128 }
dirk6c316f22015-06-27 15:44:29 +00001129 artifact=GetImageArtifact(image,"identify:features");
1130 if (artifact == (const char *) NULL)
1131 artifact=GetImageArtifact(image,"json:features");
1132 if (artifact != (const char *) NULL)
1133 {
1134 distance=StringToUnsignedLong(artifact);
1135 channel_features=GetImageFeatures(image,distance,exception);
1136 }
1137 depth=GetImageDepth(image,exception);
Cristybc978e02017-10-29 13:29:43 -04001138 (void) FormatLocaleFile(file," \"depth\": %g,\n",(double) depth);
1139 (void) FormatLocaleFile(file," \"baseDepth\": %g,\n",(double)
dirk6c316f22015-06-27 15:44:29 +00001140 image->depth);
1141 (void) FormatLocaleFile(file," \"channelDepth\": {\n");
dirk6c316f22015-06-27 15:44:29 +00001142 if (image->alpha_trait != UndefinedPixelTrait)
1143 (void) FormatLocaleFile(file," \"alpha\": %.20g,\n",(double)
1144 channel_statistics[AlphaPixelChannel].depth);
Cristy3889d152017-12-22 19:42:13 -05001145 switch (image->colorspace)
dirk6c316f22015-06-27 15:44:29 +00001146 {
1147 case RGBColorspace:
1148 default:
1149 {
1150 (void) FormatLocaleFile(file," \"red\": %.20g,\n",(double)
1151 channel_statistics[RedChannel].depth);
1152 (void) FormatLocaleFile(file," \"green\": %.20g,\n",(double)
1153 channel_statistics[GreenChannel].depth);
1154 (void) FormatLocaleFile(file," \"blue\": %.20g\n",(double)
1155 channel_statistics[BlueChannel].depth);
1156 break;
1157 }
1158 case CMYKColorspace:
1159 {
1160 (void) FormatLocaleFile(file," \"cyan\": %.20g,\n",(double)
1161 channel_statistics[CyanChannel].depth);
1162 (void) FormatLocaleFile(file," \"magenta\": %.20g,\n",(double)
1163 channel_statistics[MagentaChannel].depth);
1164 (void) FormatLocaleFile(file," \"yellow\": %.20g,\n",(double)
1165 channel_statistics[YellowChannel].depth);
1166 (void) FormatLocaleFile(file," \"black\": %.20g\n",(double)
1167 channel_statistics[BlackChannel].depth);
1168 break;
1169 }
Cristybeb4c2b2017-12-26 19:43:17 -05001170 case LinearGRAYColorspace:
dirk6c316f22015-06-27 15:44:29 +00001171 case GRAYColorspace:
1172 {
1173 (void) FormatLocaleFile(file," \"gray\": %.20g\n",(double)
1174 channel_statistics[GrayChannel].depth);
1175 break;
1176 }
1177 }
1178 (void) FormatLocaleFile(file," },\n");
1179 scale=1;
1180 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
1181 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
1182 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy9e818982014-01-18 14:54:37 +00001183 if (channel_statistics != (ChannelStatistics *) NULL)
1184 {
dirk6c316f22015-06-27 15:44:29 +00001185 (void) FormatLocaleFile(file," \"pixels\": %.20g,\n",
cristy9e818982014-01-18 14:54:37 +00001186 channel_statistics[CompositePixelChannel].area);
Cristybeb4c2b2017-12-26 19:43:17 -05001187 if ((image->colorspace != LinearGRAYColorspace) &&
1188 (image->colorspace != GRAYColorspace))
dirk6c316f22015-06-27 15:44:29 +00001189 {
1190 (void) FormatLocaleFile(file," \"imageStatistics\": {\n");
1191 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
1192 "Overall",1.0/scale,MagickFalse,channel_statistics);
1193 (void) FormatLocaleFile(file," },\n");
1194 }
1195 (void) FormatLocaleFile(file," \"channelStatistics\": {\n");
1196 if (image->alpha_trait != UndefinedPixelTrait)
1197 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/scale,
1198 MagickTrue,channel_statistics);
Cristy3889d152017-12-22 19:42:13 -05001199 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001200 {
1201 case RGBColorspace:
1202 default:
1203 {
dirk6c316f22015-06-27 15:44:29 +00001204 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/scale,
1205 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001206 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
dirk6c316f22015-06-27 15:44:29 +00001207 scale,MagickTrue,channel_statistics);
1208 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/scale,
1209 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001210 break;
1211 }
1212 case CMYKColorspace:
1213 {
dirk6c316f22015-06-27 15:44:29 +00001214 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/scale,
1215 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001216 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
dirk6c316f22015-06-27 15:44:29 +00001217 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001218 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
dirk6c316f22015-06-27 15:44:29 +00001219 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001220 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
dirk6c316f22015-06-27 15:44:29 +00001221 scale,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001222 break;
1223 }
Cristybeb4c2b2017-12-26 19:43:17 -05001224 case LinearGRAYColorspace:
cristy9e818982014-01-18 14:54:37 +00001225 case GRAYColorspace:
1226 {
dirk6c316f22015-06-27 15:44:29 +00001227 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/scale,
1228 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001229 break;
1230 }
1231 }
dirk6c316f22015-06-27 15:44:29 +00001232 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001233 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
1234 channel_statistics);
1235 }
1236 if (channel_moments != (ChannelMoments *) NULL)
1237 {
dirk6c316f22015-06-27 15:44:29 +00001238 (void) FormatLocaleFile(file," \"channelMoments\": {\n");
1239 if (image->alpha_trait != UndefinedPixelTrait)
1240 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",MagickTrue,
1241 channel_moments);
Cristy3889d152017-12-22 19:42:13 -05001242 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001243 {
1244 case RGBColorspace:
1245 default:
1246 {
dirk6c316f22015-06-27 15:44:29 +00001247 (void) PrintChannelMoments(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001248 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001249 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001250 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001251 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001252 channel_moments);
1253 break;
1254 }
1255 case CMYKColorspace:
1256 {
dirk6c316f22015-06-27 15:44:29 +00001257 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001258 channel_moments);
1259 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001260 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001261 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001262 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001263 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001264 MagickFalse,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001265 break;
1266 }
Cristybeb4c2b2017-12-26 19:43:17 -05001267 case LinearGRAYColorspace:
cristy9e818982014-01-18 14:54:37 +00001268 case GRAYColorspace:
1269 {
dirk6c316f22015-06-27 15:44:29 +00001270 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001271 channel_moments);
1272 break;
1273 }
1274 }
dirk6c316f22015-06-27 15:44:29 +00001275 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001276 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
1277 channel_moments);
1278 }
cristydc395172014-02-23 01:33:36 +00001279 if (channel_phash != (ChannelPerceptualHash *) NULL)
1280 {
1281 (void) FormatLocaleFile(file," \"channelPerceptualHash\": {\n");
Cristye6961802016-09-03 11:31:13 -04001282 (void) PrintChannelPerceptualHash(image,file,channel_phash);
cristydc395172014-02-23 01:33:36 +00001283 (void) FormatLocaleFile(file," },\n");
1284 channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory(
1285 channel_phash);
1286 }
cristy9e818982014-01-18 14:54:37 +00001287 if (channel_features != (ChannelFeatures *) NULL)
1288 {
dirk6c316f22015-06-27 15:44:29 +00001289 (void) FormatLocaleFile(file," \"channelFeatures\": {\n");
1290 if (image->alpha_trait != UndefinedPixelTrait)
1291 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",MagickTrue,
1292 channel_features);
Cristy3889d152017-12-22 19:42:13 -05001293 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001294 {
1295 case RGBColorspace:
1296 default:
1297 {
dirk6c316f22015-06-27 15:44:29 +00001298 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001299 channel_features);
1300 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001301 MagickTrue,channel_features);
1302 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001303 channel_features);
1304 break;
1305 }
1306 case CMYKColorspace:
1307 {
dirk6c316f22015-06-27 15:44:29 +00001308 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001309 channel_features);
1310 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001311 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001312 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001313 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001314 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001315 MagickFalse,channel_features);
cristy9e818982014-01-18 14:54:37 +00001316 break;
1317 }
Cristybeb4c2b2017-12-26 19:43:17 -05001318 case LinearGRAYColorspace:
cristy9e818982014-01-18 14:54:37 +00001319 case GRAYColorspace:
1320 {
dirk6c316f22015-06-27 15:44:29 +00001321 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001322 channel_features);
1323 break;
1324 }
1325 }
dirk6c316f22015-06-27 15:44:29 +00001326 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001327 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
1328 channel_features);
1329 }
dirk6c316f22015-06-27 15:44:29 +00001330 if (image->colorspace == CMYKColorspace)
1331 (void) FormatLocaleFile(file," \"totalInkDensity\": \"%.*g%%\",\n",
cristye1c94d92015-06-28 12:16:33 +00001332 GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
1333 (double) QuantumRange);
dirk6c316f22015-06-27 15:44:29 +00001334 x=0;
1335 if (image->alpha_trait != UndefinedPixelTrait)
1336 {
1337 register const Quantum
1338 *p;
1339
1340 p=(const Quantum *) NULL;
1341 for (y=0; y < (ssize_t) image->rows; y++)
cristy9e818982014-01-18 14:54:37 +00001342 {
dirk6c316f22015-06-27 15:44:29 +00001343 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
1344 if (p == (const Quantum *) NULL)
1345 break;
1346 for (x=0; x < (ssize_t) image->columns; x++)
cristy9e818982014-01-18 14:54:37 +00001347 {
dirk6c316f22015-06-27 15:44:29 +00001348 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy9e818982014-01-18 14:54:37 +00001349 break;
dirk6c316f22015-06-27 15:44:29 +00001350 p+=GetPixelChannels(image);
cristy9e818982014-01-18 14:54:37 +00001351 }
dirk6c316f22015-06-27 15:44:29 +00001352 if (x < (ssize_t) image->columns)
1353 break;
cristy9e818982014-01-18 14:54:37 +00001354 }
dirk6c316f22015-06-27 15:44:29 +00001355 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
1356 {
1357 PixelInfo
1358 pixel;
1359
1360 GetPixelInfo(image,&pixel);
1361 GetPixelInfoPixel(image,p,&pixel);
1362 GetColorTuple(&pixel,MagickTrue,color);
1363 (void) FormatLocaleFile(file," \"alpha\": \"%s\",\n",color);
1364 }
1365 }
cristy9e818982014-01-18 14:54:37 +00001366 if (image->storage_class == PseudoClass)
1367 {
dirk6c316f22015-06-27 15:44:29 +00001368 register PixelInfo
dirk05d2ff72015-11-18 23:13:43 +01001369 *magick_restrict p;
cristy9e818982014-01-18 14:54:37 +00001370
dirk6c316f22015-06-27 15:44:29 +00001371 (void) FormatLocaleFile(file," \"colormapEntries\": %.20g,\n",
1372 (double) image->colors);
1373 (void) FormatLocaleFile(file," \"colormap\": [\n ");
1374 p=image->colormap;
1375 for (i=0; i < (ssize_t) image->colors; i++)
1376 {
1377 GetColorTuple(p,MagickTrue,color);
1378 (void) FormatLocaleFile(file,"\"%s\"",color);
1379 if (i < (ssize_t) (image->colors-1))
1380 (void) FormatLocaleFile(file,",");
1381 if (((i+1) % 5) == 0)
1382 (void) FormatLocaleFile(file,"\n ");
1383 p++;
1384 }
1385 (void) FormatLocaleFile(file,"\n ],\n");
cristy9e818982014-01-18 14:54:37 +00001386 }
1387 if (image->error.mean_error_per_pixel != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001388 (void) FormatLocaleFile(file," \"meanErrorPerPixel\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001389 image->error.mean_error_per_pixel);
1390 if (image->error.normalized_mean_error != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001391 (void) FormatLocaleFile(file," \"normalizedMeanError\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001392 image->error.normalized_mean_error);
1393 if (image->error.normalized_maximum_error != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001394 (void) FormatLocaleFile(file," \"normalizedMaximumError\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001395 image->error.normalized_maximum_error);
Cristydb96d692017-10-29 10:37:57 -04001396 JSONFormatLocaleFile(file," \"renderingIntent\": %s,\n",
cristy9e818982014-01-18 14:54:37 +00001397 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1398 image->rendering_intent));
1399 if (image->gamma != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001400 (void) FormatLocaleFile(file," \"gamma\": %g,\n",image->gamma);
cristy9e818982014-01-18 14:54:37 +00001401 if ((image->chromaticity.red_primary.x != 0.0) ||
1402 (image->chromaticity.green_primary.x != 0.0) ||
1403 (image->chromaticity.blue_primary.x != 0.0) ||
1404 (image->chromaticity.white_point.x != 0.0))
1405 {
1406 /*
1407 Display image chromaticity.
1408 */
dirk6c316f22015-06-27 15:44:29 +00001409 (void) FormatLocaleFile(file," \"chromaticity\": {\n");
1410 (void) FormatLocaleFile(file," \"redPrimary\": {\n"
1411 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001412 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001413 (void) FormatLocaleFile(file," \"greenPrimary\": {\n"
1414 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001415 image->chromaticity.green_primary.x,
1416 image->chromaticity.green_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001417 (void) FormatLocaleFile(file," \"bluePrimary\": {\n"
1418 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001419 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001420 (void) FormatLocaleFile(file," \"whitePrimary\": {\n"
1421 " \"x\": %g,\n \"y\": %g\n }\n",
cristy9e818982014-01-18 14:54:37 +00001422 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
dirk6c316f22015-06-27 15:44:29 +00001423 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001424 }
1425 if ((image->extract_info.width*image->extract_info.height) != 0)
dirk6c316f22015-06-27 15:44:29 +00001426 (void) FormatLocaleFile(file," \"tileGeometry\": {\n"
1427 " \"width\": %.20g,\n \"height\": %.20g,\n"
1428 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001429 (double) image->extract_info.width,(double) image->extract_info.height,
1430 (double) image->extract_info.x,(double) image->extract_info.y);
Cristy18b27502017-02-16 07:29:19 -05001431 GetColorTuple(&image->matte_color,MagickTrue,color);
1432 (void) FormatLocaleFile(file," \"matteColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001433 GetColorTuple(&image->background_color,MagickTrue,color);
1434 (void) FormatLocaleFile(file," \"backgroundColor\": \"%s\",\n",color);
1435 GetColorTuple(&image->border_color,MagickTrue,color);
1436 (void) FormatLocaleFile(file," \"borderColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001437 GetColorTuple(&image->transparent_color,MagickTrue,color);
1438 (void) FormatLocaleFile(file," \"transparentColor\": \"%s\",\n",color);
Cristydb96d692017-10-29 10:37:57 -04001439 JSONFormatLocaleFile(file," \"interlace\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001440 MagickInterlaceOptions,(ssize_t) image->interlace));
Cristydb96d692017-10-29 10:37:57 -04001441 JSONFormatLocaleFile(file," \"intensity\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001442 MagickPixelIntensityOptions,(ssize_t) image->intensity));
Cristydb96d692017-10-29 10:37:57 -04001443 JSONFormatLocaleFile(file," \"compose\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001444 CommandOptionToMnemonic(MagickComposeOptions,(ssize_t) image->compose));
cristy9e818982014-01-18 14:54:37 +00001445 if ((image->page.width != 0) || (image->page.height != 0) ||
1446 (image->page.x != 0) || (image->page.y != 0))
dirk6c316f22015-06-27 15:44:29 +00001447 (void) FormatLocaleFile(file," \"pageGeometry\": {\n"
1448 " \"width\": %.20g,\n \"height\": %.20g,\n"
1449 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
1450 (double) image->page.width,(double) image->page.height,
1451 (double) image->page.x,(double) image->page.y);
cristy9e818982014-01-18 14:54:37 +00001452 if ((image->page.x != 0) || (image->page.y != 0))
Travis Petticrew6e95e022018-02-09 13:33:20 -06001453 (void) FormatLocaleFile(file," \"originGeometry\": \"%+.20g%+.20g\",\n",
dirk6c316f22015-06-27 15:44:29 +00001454 (double) image->page.x,(double) image->page.y);
Cristydb96d692017-10-29 10:37:57 -04001455 JSONFormatLocaleFile(file," \"dispose\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001456 CommandOptionToMnemonic(MagickDisposeOptions,(ssize_t) image->dispose));
cristy9e818982014-01-18 14:54:37 +00001457 if (image->delay != 0)
Darek Finster76c7e832017-10-13 01:57:47 +02001458 (void) FormatLocaleFile(file," \"delay\": \"%.20gx%.20g\",\n",
dirk6c316f22015-06-27 15:44:29 +00001459 (double) image->delay,(double) image->ticks_per_second);
cristy9e818982014-01-18 14:54:37 +00001460 if (image->iterations != 1)
dirk6c316f22015-06-27 15:44:29 +00001461 (void) FormatLocaleFile(file," \"iterations\": %.20g,\n",(double)
cristy9e818982014-01-18 14:54:37 +00001462 image->iterations);
1463 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
Dirk Lemstra3ea0d282017-09-21 13:31:12 +02001464 (void) FormatLocaleFile(file," \"scene\": %.20g,\n \"scenes\": "
1465 "%.20g,\n",(double) image->scene,(double) GetImageListLength(image));
cristy9e818982014-01-18 14:54:37 +00001466 else
1467 if (image->scene != 0)
dirk6c316f22015-06-27 15:44:29 +00001468 (void) FormatLocaleFile(file," \"scene\": %.20g,\n",(double)
1469 image->scene);
Cristydb96d692017-10-29 10:37:57 -04001470 JSONFormatLocaleFile(file," \"compression\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001471 CommandOptionToMnemonic(MagickCompressOptions,(ssize_t)
1472 image->compression));
cristy9e818982014-01-18 14:54:37 +00001473 if (image->quality != UndefinedCompressionQuality)
dirk6c316f22015-06-27 15:44:29 +00001474 (void) FormatLocaleFile(file," \"quality\": %.20g,\n",(double)
1475 image->quality);
Cristydb96d692017-10-29 10:37:57 -04001476 JSONFormatLocaleFile(file," \"orientation\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001477 CommandOptionToMnemonic(MagickOrientationOptions,(ssize_t)
1478 image->orientation));
cristy9e818982014-01-18 14:54:37 +00001479 if (image->montage != (char *) NULL)
Cristydb96d692017-10-29 10:37:57 -04001480 JSONFormatLocaleFile(file," \"montage\": \"%s\",\n",image->montage);
cristy9e818982014-01-18 14:54:37 +00001481 if (image->directory != (char *) NULL)
1482 {
1483 Image
1484 *tile;
1485
1486 ImageInfo
1487 *image_info;
1488
1489 register char
1490 *p,
1491 *q;
1492
1493 WarningHandler
1494 handler;
1495
1496 /*
1497 Display visual image directory.
1498 */
1499 image_info=AcquireImageInfo();
1500 (void) CloneString(&image_info->size,"64x64");
dirk6c316f22015-06-27 15:44:29 +00001501 (void) FormatLocaleFile(file," \"montageDirectory\": [");
1502 p=image->directory;
1503 while (*p != '\0')
cristy9e818982014-01-18 14:54:37 +00001504 {
1505 q=p;
Cristy5d293d22018-02-24 12:45:52 -05001506 while ((*q != '\xff') && (*q != '\0'))
cristy9e818982014-01-18 14:54:37 +00001507 q++;
1508 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
dirk6c316f22015-06-27 15:44:29 +00001509 p=q+1;
Cristydb96d692017-10-29 10:37:57 -04001510 JSONFormatLocaleFile(file,"{\n \"name\": %s",
dirk6c316f22015-06-27 15:44:29 +00001511 image_info->filename);
cristy9e818982014-01-18 14:54:37 +00001512 handler=SetWarningHandler((WarningHandler) NULL);
1513 tile=ReadImage(image_info,exception);
1514 (void) SetWarningHandler(handler);
1515 if (tile == (Image *) NULL)
1516 {
dirk6c316f22015-06-27 15:44:29 +00001517 (void) FormatLocaleFile(file," }");
cristy9e818982014-01-18 14:54:37 +00001518 continue;
1519 }
dirk6c316f22015-06-27 15:44:29 +00001520 (void) FormatLocaleFile(file,",\n \"info\": \"%.20gx%.20g %s\"",
1521 (double) tile->magick_columns,(double) tile->magick_rows,
1522 tile->magick);
cristy9e818982014-01-18 14:54:37 +00001523 (void) SignatureImage(tile,exception);
1524 ResetImagePropertyIterator(tile);
1525 property=GetNextImageProperty(tile);
1526 while (property != (const char *) NULL)
1527 {
Cristydb96d692017-10-29 10:37:57 -04001528 JSONFormatLocaleFile(file,",\n %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001529 value=GetImageProperty(tile,property,exception);
Cristydb96d692017-10-29 10:37:57 -04001530 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001531 property=GetNextImageProperty(tile);
1532 }
Cristy4e72d442018-01-11 06:29:53 -05001533 tile=DestroyImageList(tile);
dirk6c316f22015-06-27 15:44:29 +00001534 if (*p != '\0')
1535 (void) FormatLocaleFile(file,"\n },");
1536 else
1537 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001538 }
dirk6c316f22015-06-27 15:44:29 +00001539 (void) FormatLocaleFile(file,"],\n");
cristy9e818982014-01-18 14:54:37 +00001540 image_info=DestroyImageInfo(image_info);
1541 }
1542 (void) GetImageProperty(image,"exif:*",exception);
cristy55166322014-01-23 01:53:24 +00001543 (void) GetImageProperty(image,"icc:*",exception);
1544 (void) GetImageProperty(image,"iptc:*",exception);
1545 (void) GetImageProperty(image,"xmp:*",exception);
cristy9e818982014-01-18 14:54:37 +00001546 ResetImagePropertyIterator(image);
1547 property=GetNextImageProperty(image);
1548 if (property != (const char *) NULL)
1549 {
dirk6c316f22015-06-27 15:44:29 +00001550 size_t
1551 n;
1552
cristy9e818982014-01-18 14:54:37 +00001553 /*
1554 Display image properties.
1555 */
dirk6c316f22015-06-27 15:44:29 +00001556 n=0;
1557 (void) FormatLocaleFile(file," \"properties\": {\n");
cristy9e818982014-01-18 14:54:37 +00001558 while (property != (const char *) NULL)
1559 {
dirk6c316f22015-06-27 15:44:29 +00001560 if (n++ != 0)
1561 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001562 JSONFormatLocaleFile(file," %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001563 value=GetImageProperty(image,property,exception);
Cristydb96d692017-10-29 10:37:57 -04001564 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001565 property=GetNextImageProperty(image);
1566 }
dirk6c316f22015-06-27 15:44:29 +00001567 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001568 }
cristy151b66d2015-04-15 10:50:31 +00001569 (void) FormatLocaleString(key,MagickPathExtent,"8BIM:1999,2998:#1");
cristy9e818982014-01-18 14:54:37 +00001570 value=GetImageProperty(image,key,exception);
1571 if (value != (const char *) NULL)
1572 {
1573 /*
1574 Display clipping path.
1575 */
Cristydb96d692017-10-29 10:37:57 -04001576 JSONFormatLocaleFile(file," \"clipping path\": %s,\n",value);
cristy9e818982014-01-18 14:54:37 +00001577 }
1578 ResetImageProfileIterator(image);
1579 name=GetNextImageProfile(image);
1580 if (name != (char *) NULL)
1581 {
1582 const StringInfo
1583 *profile;
1584
dirk6c316f22015-06-27 15:44:29 +00001585 size_t
1586 n;
1587
cristy9e818982014-01-18 14:54:37 +00001588 /*
1589 Identify image profiles.
1590 */
dirk6c316f22015-06-27 15:44:29 +00001591 n=0;
1592 (void) FormatLocaleFile(file," \"profiles\": {\n");
cristy9e818982014-01-18 14:54:37 +00001593 while (name != (char *) NULL)
1594 {
1595 profile=GetImageProfile(image,name);
1596 if (profile == (StringInfo *) NULL)
1597 continue;
dirk6c316f22015-06-27 15:44:29 +00001598 if (n++ != 0)
1599 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001600 JSONFormatLocaleFile(file," %s: {\n",name);
cristy9e818982014-01-18 14:54:37 +00001601 if (LocaleCompare(name,"iptc") == 0)
Dirk Lemstra32b15502017-09-21 17:04:36 +02001602 EncodeIptcProfile(file,profile);
Cristybc978e02017-10-29 13:29:43 -04001603 (void) FormatLocaleFile(file," \"length\": %.20g",(double)
dirk6c316f22015-06-27 15:44:29 +00001604 GetStringInfoLength(profile));
1605 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001606 name=GetNextImageProfile(image);
1607 }
dirk6c316f22015-06-27 15:44:29 +00001608 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001609 }
1610 ResetImageArtifactIterator(image);
1611 artifact=GetNextImageArtifact(image);
1612 if (artifact != (const char *) NULL)
1613 {
dirk6c316f22015-06-27 15:44:29 +00001614 ssize_t
1615 n;
1616
cristy9e818982014-01-18 14:54:37 +00001617 /*
1618 Display image artifacts.
1619 */
dirk6c316f22015-06-27 15:44:29 +00001620 n=0;
1621 (void) FormatLocaleFile(file," \"artifacts\": {\n");
cristy9e818982014-01-18 14:54:37 +00001622 while (artifact != (const char *) NULL)
1623 {
dirk6c316f22015-06-27 15:44:29 +00001624 if (n++ != 0)
1625 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001626 JSONFormatLocaleFile(file," %s: ",artifact);
cristy9e818982014-01-18 14:54:37 +00001627 value=GetImageArtifact(image,artifact);
Cristydb96d692017-10-29 10:37:57 -04001628 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001629 artifact=GetNextImageArtifact(image);
1630 }
dirk6c316f22015-06-27 15:44:29 +00001631 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001632 }
1633 ResetImageRegistryIterator();
1634 registry=GetNextImageRegistry();
1635 if (registry != (const char *) NULL)
1636 {
dirk6c316f22015-06-27 15:44:29 +00001637 ssize_t
1638 n;
1639
cristy9e818982014-01-18 14:54:37 +00001640 /*
1641 Display image registry.
1642 */
dirk6c316f22015-06-27 15:44:29 +00001643 (void) FormatLocaleFile(file," \"registry\": {\n");
1644 n=0;
cristy9e818982014-01-18 14:54:37 +00001645 while (registry != (const char *) NULL)
1646 {
dirk6c316f22015-06-27 15:44:29 +00001647 if (n++ != 0)
1648 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001649 JSONFormatLocaleFile(file," %s: ",registry);
cristy9e818982014-01-18 14:54:37 +00001650 value=(const char *) GetImageRegistry(StringRegistryType,registry,
1651 exception);
Cristydb96d692017-10-29 10:37:57 -04001652 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001653 registry=GetNextImageRegistry();
1654 }
dirk6c316f22015-06-27 15:44:29 +00001655 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001656 }
dirk6c316f22015-06-27 15:44:29 +00001657 (void) FormatLocaleFile(file," \"tainted\": %s,\n",
1658 image->taint != MagickFalse ? "true" : "false");
cristy151b66d2015-04-15 10:50:31 +00001659 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,"B",MagickPathExtent,
cristyd4618c02015-04-14 23:54:43 +00001660 format);
Cristydb96d692017-10-29 10:37:57 -04001661 JSONFormatLocaleFile(file," \"filesize\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001662 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy151b66d2015-04-15 10:50:31 +00001663 MagickFalse,"B",MagickPathExtent,format);
cristy9e818982014-01-18 14:54:37 +00001664 if (strlen(format) > 1)
1665 format[strlen(format)-1]='\0';
Cristydb96d692017-10-29 10:37:57 -04001666 JSONFormatLocaleFile(file," \"numberPixels\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001667 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristy151b66d2015-04-15 10:50:31 +00001668 elapsed_time+0.5),MagickFalse,"B",MagickPathExtent,format);
Cristydb96d692017-10-29 10:37:57 -04001669 JSONFormatLocaleFile(file," \"pixelsPerSecond\": %s,\n",format);
dirk6c316f22015-06-27 15:44:29 +00001670 (void) FormatLocaleFile(file," \"userTime\": \"%0.3fu\",\n",user_time);
1671 (void) FormatLocaleFile(file," \"elapsedTime\": \"%lu:%02lu.%03lu\",\n",
1672 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(
1673 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-floor(
1674 elapsed_time))));
Cristy519e0052016-10-16 15:28:40 -04001675 url=GetMagickHomeURL();
Cristydb96d692017-10-29 10:37:57 -04001676 JSONFormatLocaleFile(file," \"version\": %s\n",url);
Cristy519e0052016-10-16 15:28:40 -04001677 url=DestroyString(url);
dirk6c316f22015-06-27 15:44:29 +00001678 (void) FormatLocaleFile(file," }\n}\n");
cristy9e818982014-01-18 14:54:37 +00001679 (void) fflush(file);
1680 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1681}
1682
cristy3f07aa32014-01-18 01:16:33 +00001683static MagickBooleanType WriteJSONImage(const ImageInfo *image_info,
1684 Image *image,ExceptionInfo *exception)
1685{
dirk6c316f22015-06-27 15:44:29 +00001686 FILE
1687 *file;
1688
cristy3f07aa32014-01-18 01:16:33 +00001689 MagickBooleanType
1690 status;
1691
1692 MagickOffsetType
1693 scene;
1694
Cristyc45b2bb2018-04-07 12:32:12 -04001695 size_t
1696 imageListLength;
1697
cristy3f07aa32014-01-18 01:16:33 +00001698 /*
1699 Open output image file.
1700 */
1701 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001702 assert(image_info->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001703 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001704 assert(image->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001705 if (image->debug != MagickFalse)
1706 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1707 status=OpenBlob(image_info,image,WriteBlobMode,exception);
1708 if (status == MagickFalse)
1709 return(status);
dirk6c316f22015-06-27 15:44:29 +00001710 file=GetBlobFileHandle(image);
1711 if (file == (FILE *) NULL)
1712 file=stdout;
cristy3f07aa32014-01-18 01:16:33 +00001713 scene=0;
Cristyc45b2bb2018-04-07 12:32:12 -04001714 imageListLength=GetImageListLength(image);
cristy3f07aa32014-01-18 01:16:33 +00001715 do
1716 {
Dirk Lemstrac9105bd2017-09-21 13:39:00 +02001717 if (scene == 0)
Cristy457c4d62017-12-16 07:45:18 -05001718 (void) WriteBlobString(image,"[");
cristy9e818982014-01-18 14:54:37 +00001719 image->magick_columns=image->columns;
1720 image->magick_rows=image->rows;
Cristy457c4d62017-12-16 07:45:18 -05001721 (void) EncodeImageAttributes(image,file,exception);
cristy3f07aa32014-01-18 01:16:33 +00001722 if (GetNextImageInList(image) == (Image *) NULL)
dirk6c316f22015-06-27 15:44:29 +00001723 {
Cristy457c4d62017-12-16 07:45:18 -05001724 (void) WriteBlobString(image,"]");
dirk6c316f22015-06-27 15:44:29 +00001725 break;
1726 }
Cristy457c4d62017-12-16 07:45:18 -05001727 (void) WriteBlobString(image,",\n");
cristy3f07aa32014-01-18 01:16:33 +00001728 image=SyncNextImageInList(image);
Cristyc45b2bb2018-04-07 12:32:12 -04001729 status=SetImageProgress(image,SaveImagesTag,scene++,imageListLength);
cristy3f07aa32014-01-18 01:16:33 +00001730 if (status == MagickFalse)
1731 break;
1732 } while (image_info->adjoin != MagickFalse);
1733 (void) CloseBlob(image);
1734 return(MagickTrue);
1735}