blob: e2566cb93af731931d0ea73b9dad5a2485d5e8d2 [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% %
Cristyf19d4142017-04-24 11:34:30 -040026% https://www.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");
335 (void) ResetMagickMemory(channel_statistics,0,(MaxPixelChannels+1)*
336 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*
726 channel_statistics[channel].standard_deviation,GetMagickPrecision(),
727 channel_statistics[channel].kurtosis,GetMagickPrecision(),
728 channel_statistics[channel].skewness,GetMagickPrecision(),
729 channel_statistics[channel].entropy);
dirk6c316f22015-06-27 15:44:29 +0000730 if (separator != MagickFalse)
cristye1c94d92015-06-28 12:16:33 +0000731 (void) FormatLocaleFile(file,",");
dirk6c316f22015-06-27 15:44:29 +0000732 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000733 return(n);
734}
735
Dirk Lemstra32b15502017-09-21 17:04:36 +0200736static void EncodeIptcProfile(FILE *file,const StringInfo *profile)
737{
738 char
739 *attribute,
740 **attribute_list;
741
742 const char
743 *tag;
744
Cristydb96d692017-10-29 10:37:57 -0400745 IPTCInfo
Dirk Lemstra32b15502017-09-21 17:04:36 +0200746 *value,
747 **values;
748
749 long
750 dataset,
751 record,
752 sentinel;
753
754 register ssize_t
755 i,
756 j,
757 k;
758
759 size_t
760 count,
761 length,
762 profile_length;
763
Cristydb96d692017-10-29 10:37:57 -0400764 values=(IPTCInfo **) NULL;
Dirk Lemstra32b15502017-09-21 17:04:36 +0200765 count=0;
766 profile_length=GetStringInfoLength(profile);
767 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
768 {
769 length=1;
770 sentinel=GetStringInfoDatum(profile)[i++];
771 if (sentinel != 0x1c)
772 continue;
773 dataset=GetStringInfoDatum(profile)[i++];
774 record=GetStringInfoDatum(profile)[i++];
Cristydb96d692017-10-29 10:37:57 -0400775 value=(IPTCInfo *) NULL;
Cristy7c7050a2017-09-30 12:12:21 -0400776 for (j=0; j < (ssize_t) count; j++)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200777 {
778 if ((values[j]->record == record) && (values[j]->dataset == dataset))
779 value=values[j];
780 }
Cristydb96d692017-10-29 10:37:57 -0400781 if (value == (IPTCInfo *) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200782 {
Cristydb96d692017-10-29 10:37:57 -0400783 values=(IPTCInfo **) ResizeQuantumMemory(values,count+1,
Dirk Lemstra32b15502017-09-21 17:04:36 +0200784 sizeof(*values));
Cristydb96d692017-10-29 10:37:57 -0400785 if (values == (IPTCInfo **) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200786 break;
Cristydb96d692017-10-29 10:37:57 -0400787 value=(IPTCInfo *) AcquireMagickMemory(sizeof(*value));
788 if (value == (IPTCInfo *) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200789 break;
Cristydb96d692017-10-29 10:37:57 -0400790 /* Check the tag length in IPTCInfo when a new tag is added */
Dirk Lemstra32b15502017-09-21 17:04:36 +0200791 switch (record)
792 {
793 case 5: tag="Image Name"; break;
794 case 7: tag="Edit Status"; break;
795 case 10: tag="Priority"; break;
796 case 15: tag="Category"; break;
797 case 20: tag="Supplemental Category"; break;
798 case 22: tag="Fixture Identifier"; break;
799 case 25: tag="Keyword"; break;
800 case 30: tag="Release Date"; break;
801 case 35: tag="Release Time"; break;
802 case 40: tag="Special Instructions"; break;
803 case 45: tag="Reference Service"; break;
804 case 47: tag="Reference Date"; break;
805 case 50: tag="Reference Number"; break;
806 case 55: tag="Created Date"; break;
807 case 60: tag="Created Time"; break;
808 case 65: tag="Originating Program"; break;
809 case 70: tag="Program Version"; break;
810 case 75: tag="Object Cycle"; break;
811 case 80: tag="Byline"; break;
812 case 85: tag="Byline Title"; break;
813 case 90: tag="City"; break;
814 case 92: tag="Sub-Location"; break;
815 case 95: tag="Province State"; break;
816 case 100: tag="Country Code"; break;
817 case 101: tag="Country"; break;
818 case 103: tag="Original Transmission Reference"; break;
819 case 105: tag="Headline"; break;
820 case 110: tag="Credit"; break;
821 case 115: tag="Src"; break;
822 case 116: tag="Copyright String"; break;
823 case 120: tag="Caption"; break;
824 case 121: tag="Local Caption"; break;
825 case 122: tag="Caption Writer"; break;
826 case 200: tag="Custom Field 1"; break;
827 case 201: tag="Custom Field 2"; break;
828 case 202: tag="Custom Field 3"; break;
829 case 203: tag="Custom Field 4"; break;
830 case 204: tag="Custom Field 5"; break;
831 case 205: tag="Custom Field 6"; break;
832 case 206: tag="Custom Field 7"; break;
833 case 207: tag="Custom Field 8"; break;
834 case 208: tag="Custom Field 9"; break;
835 case 209: tag="Custom Field 10"; break;
836 case 210: tag="Custom Field 11"; break;
837 case 211: tag="Custom Field 12"; break;
838 case 212: tag="Custom Field 13"; break;
839 case 213: tag="Custom Field 14"; break;
840 case 214: tag="Custom Field 15"; break;
841 case 215: tag="Custom Field 16"; break;
842 case 216: tag="Custom Field 17"; break;
843 case 217: tag="Custom Field 18"; break;
844 case 218: tag="Custom Field 19"; break;
845 case 219: tag="Custom Field 20"; break;
846 default: tag="Unknown"; break;
847 }
848 (void) CopyMagickString(value->tag,tag,strlen(tag)+1);
849 value->record=record;
850 value->dataset=dataset;
851 value->values=(char ***) NULL;
852 value->values_length=0;
853 values[count++]=value;
854 }
855 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
856 length|=GetStringInfoDatum(profile)[i++];
857 attribute=(char *) NULL;
858 if (~length >= (MagickPathExtent-1))
859 attribute=(char *) AcquireQuantumMemory(length+MagickPathExtent,
860 sizeof(*attribute));
861 if (attribute != (char *) NULL)
862 {
863 (void) CopyMagickString(attribute,(char *)
864 GetStringInfoDatum(profile)+i,length+1);
865 attribute_list=StringToList(attribute);
866 if (attribute_list != (char **) NULL)
867 {
868 value->values=(char ***) ResizeQuantumMemory(value->values,
869 value->values_length+1,
870 sizeof(*value->values));
871 if (value->values == (char ***) NULL)
872 break;
873 value->values[value->values_length++]=attribute_list;
874 }
875 attribute=DestroyString(attribute);
876 }
877 }
Cristydb96d692017-10-29 10:37:57 -0400878 if (values != (IPTCInfo **) NULL)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200879 {
Cristy7c7050a2017-09-30 12:12:21 -0400880 for (i=0; i < (ssize_t) count; i++)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200881 {
882 value=values[i];
883 (void) FormatLocaleFile(file," \"%s[%.20g,%.20g]\": ",
884 value->tag,(double) value->dataset,(double) value->record);
885 if (value->values_length == 0)
886 (void) FormatLocaleFile(file,"null,");
887 else
888 {
889 (void) FormatLocaleFile(file,"[");
Cristy7c7050a2017-09-30 12:12:21 -0400890 for (j=0; j < (ssize_t) value->values_length; j++)
Dirk Lemstra32b15502017-09-21 17:04:36 +0200891 {
892 for (k=0; value->values[j][k] != (char *) NULL; k++)
893 {
894 if (j > 0 || k > 0)
895 (void) FormatLocaleFile(file,",");
Cristydb96d692017-10-29 10:37:57 -0400896 JSONFormatLocaleFile(file,"%s",value->values[j][k]);
Dirk Lemstra32b15502017-09-21 17:04:36 +0200897 value->values[j][k]=(char *) RelinquishMagickMemory(
898 value->values[j][k]);
899 }
900 value->values[j]=(char **) RelinquishMagickMemory(
901 value->values[j]);
902 }
903 value->values=(char ***) RelinquishMagickMemory(value->values);
904 (void) FormatLocaleFile(file,"],\n");
905 }
Cristydb96d692017-10-29 10:37:57 -0400906 values[i]=(IPTCInfo *) RelinquishMagickMemory(values[i]);
Dirk Lemstra32b15502017-09-21 17:04:36 +0200907 }
Cristydb96d692017-10-29 10:37:57 -0400908 values=(IPTCInfo **) RelinquishMagickMemory(values);
Dirk Lemstra32b15502017-09-21 17:04:36 +0200909 }
910}
911
cristy9e818982014-01-18 14:54:37 +0000912static MagickBooleanType EncodeImageAttributes(Image *image,FILE *file,
913 ExceptionInfo *exception)
914{
cristy9e818982014-01-18 14:54:37 +0000915 char
cristy151b66d2015-04-15 10:50:31 +0000916 color[MagickPathExtent],
917 format[MagickPathExtent],
918 key[MagickPathExtent];
cristy9e818982014-01-18 14:54:37 +0000919
920 ChannelFeatures
921 *channel_features;
922
923 ChannelMoments
924 *channel_moments;
925
cristydc395172014-02-23 01:33:36 +0000926 ChannelPerceptualHash
927 *channel_phash;
928
cristy9e818982014-01-18 14:54:37 +0000929 ChannelStatistics
930 *channel_statistics;
931
Cristy519e0052016-10-16 15:28:40 -0400932 char
933 *url;
934
cristy9e818982014-01-18 14:54:37 +0000935 const char
936 *artifact,
937 *locate,
938 *name,
939 *property,
940 *registry,
941 *value;
942
943 const MagickInfo
944 *magick_info;
945
946 double
947 elapsed_time,
948 user_time;
949
950 ImageType
951 type;
952
953 MagickBooleanType
954 ping;
955
956 register const Quantum
957 *p;
958
959 register ssize_t
960 i,
961 x;
962
963 size_t
dirk6c316f22015-06-27 15:44:29 +0000964 depth,
cristy9e818982014-01-18 14:54:37 +0000965 distance,
966 scale;
967
968 ssize_t
969 y;
970
971 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000972 assert(image->signature == MagickCoreSignature);
cristy9e818982014-01-18 14:54:37 +0000973 if (image->debug != MagickFalse)
974 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristya10f7442014-01-19 18:32:15 +0000975 *format='\0';
976 elapsed_time=GetElapsedTime(&image->timer);
977 user_time=GetUserTime(&image->timer);
978 GetTimerInfo(&image->timer);
979 p=GetVirtualPixels(image,0,0,1,1,exception);
980 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristye1c94d92015-06-28 12:16:33 +0000981 (void) ping;
cristya10f7442014-01-19 18:32:15 +0000982 (void) SignatureImage(image,exception);
Cristydb96d692017-10-29 10:37:57 -0400983 JSONFormatLocaleFile(file,"{\n \"image\": {\n \"name\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +0000984 image->filename);
cristya10f7442014-01-19 18:32:15 +0000985 if (*image->magick_filename != '\0')
986 if (LocaleCompare(image->magick_filename,image->filename) != 0)
987 {
988 char
cristy151b66d2015-04-15 10:50:31 +0000989 filename[MagickPathExtent];
cristya10f7442014-01-19 18:32:15 +0000990
991 GetPathComponent(image->magick_filename,TailPath,filename);
Cristydb96d692017-10-29 10:37:57 -0400992 JSONFormatLocaleFile(file," \"baseName\": %s,\n",filename);
cristya10f7442014-01-19 18:32:15 +0000993 }
Cristydb96d692017-10-29 10:37:57 -0400994 JSONFormatLocaleFile(file," \"format\": %s,\n",image->magick);
cristya10f7442014-01-19 18:32:15 +0000995 magick_info=GetMagickInfo(image->magick,exception);
dirk6c316f22015-06-27 15:44:29 +0000996 if ((magick_info != (const MagickInfo *) NULL) &&
997 (GetMagickDescription(magick_info) != (const char *) NULL))
Cristydb96d692017-10-29 10:37:57 -0400998 JSONFormatLocaleFile(file," \"formatDescription\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +0000999 image->magick);
cristy12bcd3d2015-01-28 00:54:23 +00001000 if ((magick_info != (const MagickInfo *) NULL) &&
cristya10f7442014-01-19 18:32:15 +00001001 (GetMagickMimeType(magick_info) != (const char *) NULL))
Cristydb96d692017-10-29 10:37:57 -04001002 JSONFormatLocaleFile(file," \"mimeType\": %s,\n",GetMagickMimeType(
cristya10f7442014-01-19 18:32:15 +00001003 magick_info));
Cristydb96d692017-10-29 10:37:57 -04001004 JSONFormatLocaleFile(file," \"class\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001005 MagickClassOptions,(ssize_t) image->storage_class));
dirk6c316f22015-06-27 15:44:29 +00001006 (void) FormatLocaleFile(file," \"geometry\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001007 " \"width\": %g,\n \"height\": %g,\n"
1008 " \"x\": %g,\n \"y\": %g\n },\n",
dirk6c316f22015-06-27 15:44:29 +00001009 (double) image->columns,(double) image->rows,(double) image->tile_offset.x,
1010 (double) image->tile_offset.y);
cristya10f7442014-01-19 18:32:15 +00001011 if ((image->magick_columns != 0) || (image->magick_rows != 0))
1012 if ((image->magick_columns != image->columns) ||
1013 (image->magick_rows != image->rows))
dirk6c316f22015-06-27 15:44:29 +00001014 (void) FormatLocaleFile(file," \"baseGeometry\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001015 " \"width\": %g,\n \"height\": %g\n },\n",(double)
1016 image->magick_columns,(double) image->magick_rows);
cristya10f7442014-01-19 18:32:15 +00001017 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
1018 {
dirk6c316f22015-06-27 15:44:29 +00001019 (void) FormatLocaleFile(file," \"resolution\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001020 " \"x\": %g,\n \"y\": %g\n },\n",image->resolution.x,
cristya10f7442014-01-19 18:32:15 +00001021 image->resolution.y);
Cristybc978e02017-10-29 13:29:43 -04001022 (void) FormatLocaleFile(file," \"printSize\": {\n"
1023 " \"x\": %.*g,\n \"y\": %.*g\n },\n",GetMagickPrecision(),
1024 image->columns/image->resolution.x,GetMagickPrecision(),(double)
1025 image->rows/image->resolution.y);
cristya10f7442014-01-19 18:32:15 +00001026 }
Cristydb96d692017-10-29 10:37:57 -04001027 JSONFormatLocaleFile(file," \"units\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001028 MagickResolutionOptions,(ssize_t) image->units));
Cristy4826fb42017-12-17 12:05:09 -05001029 type=GetImageType(image);
Cristydb96d692017-10-29 10:37:57 -04001030 JSONFormatLocaleFile(file," \"type\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001031 MagickTypeOptions,(ssize_t) type));
Cristy4826fb42017-12-17 12:05:09 -05001032 if (image->type != type)
Cristydb96d692017-10-29 10:37:57 -04001033 JSONFormatLocaleFile(file," \"baseType\": %s,\n",
Cristy4826fb42017-12-17 12:05:09 -05001034 CommandOptionToMnemonic(MagickTypeOptions,(ssize_t) image->type));
Cristydb96d692017-10-29 10:37:57 -04001035 JSONFormatLocaleFile(file," \"endianess\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001036 CommandOptionToMnemonic(MagickEndianOptions,(ssize_t) image->endian));
cristy9e818982014-01-18 14:54:37 +00001037 locate=GetImageArtifact(image,"identify:locate");
cristy3e583dd2014-01-19 14:11:51 +00001038 if (locate == (const char *) NULL)
1039 locate=GetImageArtifact(image,"json:locate");
cristy9e818982014-01-18 14:54:37 +00001040 if (locate != (const char *) NULL)
1041 {
1042 const char
1043 *limit;
1044
1045 size_t
1046 max_locations;
1047
1048 StatisticType
1049 type;
1050
1051 /*
1052 Display minimum, maximum, or mean pixel locations.
1053 */
1054 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
1055 MagickFalse,locate);
1056 limit=GetImageArtifact(image,"identify:limit");
cristy3e583dd2014-01-19 14:11:51 +00001057 if (limit == (const char *) NULL)
1058 limit=GetImageArtifact(image,"json:limit");
cristy9e818982014-01-18 14:54:37 +00001059 max_locations=0;
1060 if (limit != (const char *) NULL)
1061 max_locations=StringToUnsignedLong(limit);
1062 channel_statistics=GetLocationStatistics(image,type,exception);
1063 if (channel_statistics == (ChannelStatistics *) NULL)
1064 return(MagickFalse);
dirk6c316f22015-06-27 15:44:29 +00001065 (void) FormatLocaleFile(file," \"channel%s\": {\n",locate);
1066 if (image->alpha_trait != UndefinedPixelTrait)
1067 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
1068 type,max_locations,MagickTrue,channel_statistics);
Cristy3889d152017-12-22 19:42:13 -05001069 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001070 {
1071 case RGBColorspace:
1072 default:
1073 {
1074 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
dirk6c316f22015-06-27 15:44:29 +00001075 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001076 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001077 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001078 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
dirk6c316f22015-06-27 15:44:29 +00001079 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001080 break;
1081 }
1082 case CMYKColorspace:
1083 {
1084 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
dirk6c316f22015-06-27 15:44:29 +00001085 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001086 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001087 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001088 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001089 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001090 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001091 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001092 break;
1093 }
1094 case GRAYColorspace:
1095 {
1096 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
dirk6c316f22015-06-27 15:44:29 +00001097 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001098 break;
1099 }
1100 }
dirk6c316f22015-06-27 15:44:29 +00001101 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001102 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
1103 channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001104 }
cristy9e818982014-01-18 14:54:37 +00001105 /*
1106 Detail channel depth and extrema.
1107 */
Cristydb96d692017-10-29 10:37:57 -04001108 JSONFormatLocaleFile(file," \"colorspace\": %s,\n",
Cristy3889d152017-12-22 19:42:13 -05001109 CommandOptionToMnemonic(MagickColorspaceOptions,(ssize_t)
1110 image->colorspace));
cristy9e818982014-01-18 14:54:37 +00001111 channel_statistics=(ChannelStatistics *) NULL;
1112 channel_moments=(ChannelMoments *) NULL;
cristydc395172014-02-23 01:33:36 +00001113 channel_phash=(ChannelPerceptualHash *) NULL;
cristy9e818982014-01-18 14:54:37 +00001114 channel_features=(ChannelFeatures *) NULL;
cristy9e818982014-01-18 14:54:37 +00001115 scale=1;
dirk6c316f22015-06-27 15:44:29 +00001116 channel_statistics=GetImageStatistics(image,exception);
1117 if (channel_statistics == (ChannelStatistics *) NULL)
1118 return(MagickFalse);
1119 artifact=GetImageArtifact(image,"identify:moments");
1120 if (artifact == (const char *) NULL)
1121 artifact=GetImageArtifact(image,"json:moments");
1122 if (artifact != (const char *) NULL)
cristy9e818982014-01-18 14:54:37 +00001123 {
dirk6c316f22015-06-27 15:44:29 +00001124 channel_moments=GetImageMoments(image,exception);
1125 channel_phash=GetImagePerceptualHash(image,exception);
cristy9e818982014-01-18 14:54:37 +00001126 }
dirk6c316f22015-06-27 15:44:29 +00001127 artifact=GetImageArtifact(image,"identify:features");
1128 if (artifact == (const char *) NULL)
1129 artifact=GetImageArtifact(image,"json:features");
1130 if (artifact != (const char *) NULL)
1131 {
1132 distance=StringToUnsignedLong(artifact);
1133 channel_features=GetImageFeatures(image,distance,exception);
1134 }
1135 depth=GetImageDepth(image,exception);
Cristybc978e02017-10-29 13:29:43 -04001136 (void) FormatLocaleFile(file," \"depth\": %g,\n",(double) depth);
1137 (void) FormatLocaleFile(file," \"baseDepth\": %g,\n",(double)
dirk6c316f22015-06-27 15:44:29 +00001138 image->depth);
1139 (void) FormatLocaleFile(file," \"channelDepth\": {\n");
dirk6c316f22015-06-27 15:44:29 +00001140 if (image->alpha_trait != UndefinedPixelTrait)
1141 (void) FormatLocaleFile(file," \"alpha\": %.20g,\n",(double)
1142 channel_statistics[AlphaPixelChannel].depth);
Cristy3889d152017-12-22 19:42:13 -05001143 switch (image->colorspace)
dirk6c316f22015-06-27 15:44:29 +00001144 {
1145 case RGBColorspace:
1146 default:
1147 {
1148 (void) FormatLocaleFile(file," \"red\": %.20g,\n",(double)
1149 channel_statistics[RedChannel].depth);
1150 (void) FormatLocaleFile(file," \"green\": %.20g,\n",(double)
1151 channel_statistics[GreenChannel].depth);
1152 (void) FormatLocaleFile(file," \"blue\": %.20g\n",(double)
1153 channel_statistics[BlueChannel].depth);
1154 break;
1155 }
1156 case CMYKColorspace:
1157 {
1158 (void) FormatLocaleFile(file," \"cyan\": %.20g,\n",(double)
1159 channel_statistics[CyanChannel].depth);
1160 (void) FormatLocaleFile(file," \"magenta\": %.20g,\n",(double)
1161 channel_statistics[MagentaChannel].depth);
1162 (void) FormatLocaleFile(file," \"yellow\": %.20g,\n",(double)
1163 channel_statistics[YellowChannel].depth);
1164 (void) FormatLocaleFile(file," \"black\": %.20g\n",(double)
1165 channel_statistics[BlackChannel].depth);
1166 break;
1167 }
1168 case GRAYColorspace:
1169 {
1170 (void) FormatLocaleFile(file," \"gray\": %.20g\n",(double)
1171 channel_statistics[GrayChannel].depth);
1172 break;
1173 }
1174 }
1175 (void) FormatLocaleFile(file," },\n");
1176 scale=1;
1177 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
1178 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
1179 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy9e818982014-01-18 14:54:37 +00001180 if (channel_statistics != (ChannelStatistics *) NULL)
1181 {
dirk6c316f22015-06-27 15:44:29 +00001182 (void) FormatLocaleFile(file," \"pixels\": %.20g,\n",
cristy9e818982014-01-18 14:54:37 +00001183 channel_statistics[CompositePixelChannel].area);
Cristy3889d152017-12-22 19:42:13 -05001184 if (image->colorspace != GRAYColorspace)
dirk6c316f22015-06-27 15:44:29 +00001185 {
1186 (void) FormatLocaleFile(file," \"imageStatistics\": {\n");
1187 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
1188 "Overall",1.0/scale,MagickFalse,channel_statistics);
1189 (void) FormatLocaleFile(file," },\n");
1190 }
1191 (void) FormatLocaleFile(file," \"channelStatistics\": {\n");
1192 if (image->alpha_trait != UndefinedPixelTrait)
1193 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/scale,
1194 MagickTrue,channel_statistics);
Cristy3889d152017-12-22 19:42:13 -05001195 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001196 {
1197 case RGBColorspace:
1198 default:
1199 {
dirk6c316f22015-06-27 15:44:29 +00001200 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/scale,
1201 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001202 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
dirk6c316f22015-06-27 15:44:29 +00001203 scale,MagickTrue,channel_statistics);
1204 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/scale,
1205 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001206 break;
1207 }
1208 case CMYKColorspace:
1209 {
dirk6c316f22015-06-27 15:44:29 +00001210 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/scale,
1211 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001212 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
dirk6c316f22015-06-27 15:44:29 +00001213 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001214 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
dirk6c316f22015-06-27 15:44:29 +00001215 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001216 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
dirk6c316f22015-06-27 15:44:29 +00001217 scale,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001218 break;
1219 }
1220 case GRAYColorspace:
1221 {
dirk6c316f22015-06-27 15:44:29 +00001222 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/scale,
1223 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001224 break;
1225 }
1226 }
dirk6c316f22015-06-27 15:44:29 +00001227 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001228 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
1229 channel_statistics);
1230 }
1231 if (channel_moments != (ChannelMoments *) NULL)
1232 {
dirk6c316f22015-06-27 15:44:29 +00001233 (void) FormatLocaleFile(file," \"channelMoments\": {\n");
1234 if (image->alpha_trait != UndefinedPixelTrait)
1235 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",MagickTrue,
1236 channel_moments);
Cristy3889d152017-12-22 19:42:13 -05001237 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001238 {
1239 case RGBColorspace:
1240 default:
1241 {
dirk6c316f22015-06-27 15:44:29 +00001242 (void) PrintChannelMoments(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001243 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001244 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001245 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001246 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001247 channel_moments);
1248 break;
1249 }
1250 case CMYKColorspace:
1251 {
dirk6c316f22015-06-27 15:44:29 +00001252 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001253 channel_moments);
1254 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001255 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001256 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001257 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001258 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001259 MagickFalse,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001260 break;
1261 }
1262 case GRAYColorspace:
1263 {
dirk6c316f22015-06-27 15:44:29 +00001264 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001265 channel_moments);
1266 break;
1267 }
1268 }
dirk6c316f22015-06-27 15:44:29 +00001269 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001270 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
1271 channel_moments);
1272 }
cristydc395172014-02-23 01:33:36 +00001273 if (channel_phash != (ChannelPerceptualHash *) NULL)
1274 {
1275 (void) FormatLocaleFile(file," \"channelPerceptualHash\": {\n");
Cristye6961802016-09-03 11:31:13 -04001276 (void) PrintChannelPerceptualHash(image,file,channel_phash);
cristydc395172014-02-23 01:33:36 +00001277 (void) FormatLocaleFile(file," },\n");
1278 channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory(
1279 channel_phash);
1280 }
cristy9e818982014-01-18 14:54:37 +00001281 if (channel_features != (ChannelFeatures *) NULL)
1282 {
dirk6c316f22015-06-27 15:44:29 +00001283 (void) FormatLocaleFile(file," \"channelFeatures\": {\n");
1284 if (image->alpha_trait != UndefinedPixelTrait)
1285 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",MagickTrue,
1286 channel_features);
Cristy3889d152017-12-22 19:42:13 -05001287 switch (image->colorspace)
cristy9e818982014-01-18 14:54:37 +00001288 {
1289 case RGBColorspace:
1290 default:
1291 {
dirk6c316f22015-06-27 15:44:29 +00001292 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001293 channel_features);
1294 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001295 MagickTrue,channel_features);
1296 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001297 channel_features);
1298 break;
1299 }
1300 case CMYKColorspace:
1301 {
dirk6c316f22015-06-27 15:44:29 +00001302 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001303 channel_features);
1304 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001305 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001306 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001307 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001308 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001309 MagickFalse,channel_features);
cristy9e818982014-01-18 14:54:37 +00001310 break;
1311 }
1312 case GRAYColorspace:
1313 {
dirk6c316f22015-06-27 15:44:29 +00001314 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001315 channel_features);
1316 break;
1317 }
1318 }
dirk6c316f22015-06-27 15:44:29 +00001319 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001320 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
1321 channel_features);
1322 }
dirk6c316f22015-06-27 15:44:29 +00001323 if (image->colorspace == CMYKColorspace)
1324 (void) FormatLocaleFile(file," \"totalInkDensity\": \"%.*g%%\",\n",
cristye1c94d92015-06-28 12:16:33 +00001325 GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
1326 (double) QuantumRange);
dirk6c316f22015-06-27 15:44:29 +00001327 x=0;
1328 if (image->alpha_trait != UndefinedPixelTrait)
1329 {
1330 register const Quantum
1331 *p;
1332
1333 p=(const Quantum *) NULL;
1334 for (y=0; y < (ssize_t) image->rows; y++)
cristy9e818982014-01-18 14:54:37 +00001335 {
dirk6c316f22015-06-27 15:44:29 +00001336 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
1337 if (p == (const Quantum *) NULL)
1338 break;
1339 for (x=0; x < (ssize_t) image->columns; x++)
cristy9e818982014-01-18 14:54:37 +00001340 {
dirk6c316f22015-06-27 15:44:29 +00001341 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy9e818982014-01-18 14:54:37 +00001342 break;
dirk6c316f22015-06-27 15:44:29 +00001343 p+=GetPixelChannels(image);
cristy9e818982014-01-18 14:54:37 +00001344 }
dirk6c316f22015-06-27 15:44:29 +00001345 if (x < (ssize_t) image->columns)
1346 break;
cristy9e818982014-01-18 14:54:37 +00001347 }
dirk6c316f22015-06-27 15:44:29 +00001348 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
1349 {
1350 PixelInfo
1351 pixel;
1352
1353 GetPixelInfo(image,&pixel);
1354 GetPixelInfoPixel(image,p,&pixel);
1355 GetColorTuple(&pixel,MagickTrue,color);
1356 (void) FormatLocaleFile(file," \"alpha\": \"%s\",\n",color);
1357 }
1358 }
cristy9e818982014-01-18 14:54:37 +00001359 if (image->storage_class == PseudoClass)
1360 {
dirk6c316f22015-06-27 15:44:29 +00001361 register PixelInfo
dirk05d2ff72015-11-18 23:13:43 +01001362 *magick_restrict p;
cristy9e818982014-01-18 14:54:37 +00001363
dirk6c316f22015-06-27 15:44:29 +00001364 (void) FormatLocaleFile(file," \"colormapEntries\": %.20g,\n",
1365 (double) image->colors);
1366 (void) FormatLocaleFile(file," \"colormap\": [\n ");
1367 p=image->colormap;
1368 for (i=0; i < (ssize_t) image->colors; i++)
1369 {
1370 GetColorTuple(p,MagickTrue,color);
1371 (void) FormatLocaleFile(file,"\"%s\"",color);
1372 if (i < (ssize_t) (image->colors-1))
1373 (void) FormatLocaleFile(file,",");
1374 if (((i+1) % 5) == 0)
1375 (void) FormatLocaleFile(file,"\n ");
1376 p++;
1377 }
1378 (void) FormatLocaleFile(file,"\n ],\n");
cristy9e818982014-01-18 14:54:37 +00001379 }
1380 if (image->error.mean_error_per_pixel != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001381 (void) FormatLocaleFile(file," \"meanErrorPerPixel\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001382 image->error.mean_error_per_pixel);
1383 if (image->error.normalized_mean_error != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001384 (void) FormatLocaleFile(file," \"normalizedMeanError\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001385 image->error.normalized_mean_error);
1386 if (image->error.normalized_maximum_error != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001387 (void) FormatLocaleFile(file," \"normalizedMaximumError\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001388 image->error.normalized_maximum_error);
Cristydb96d692017-10-29 10:37:57 -04001389 JSONFormatLocaleFile(file," \"renderingIntent\": %s,\n",
cristy9e818982014-01-18 14:54:37 +00001390 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1391 image->rendering_intent));
1392 if (image->gamma != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001393 (void) FormatLocaleFile(file," \"gamma\": %g,\n",image->gamma);
cristy9e818982014-01-18 14:54:37 +00001394 if ((image->chromaticity.red_primary.x != 0.0) ||
1395 (image->chromaticity.green_primary.x != 0.0) ||
1396 (image->chromaticity.blue_primary.x != 0.0) ||
1397 (image->chromaticity.white_point.x != 0.0))
1398 {
1399 /*
1400 Display image chromaticity.
1401 */
dirk6c316f22015-06-27 15:44:29 +00001402 (void) FormatLocaleFile(file," \"chromaticity\": {\n");
1403 (void) FormatLocaleFile(file," \"redPrimary\": {\n"
1404 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001405 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001406 (void) FormatLocaleFile(file," \"greenPrimary\": {\n"
1407 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001408 image->chromaticity.green_primary.x,
1409 image->chromaticity.green_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001410 (void) FormatLocaleFile(file," \"bluePrimary\": {\n"
1411 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001412 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001413 (void) FormatLocaleFile(file," \"whitePrimary\": {\n"
1414 " \"x\": %g,\n \"y\": %g\n }\n",
cristy9e818982014-01-18 14:54:37 +00001415 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
dirk6c316f22015-06-27 15:44:29 +00001416 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001417 }
1418 if ((image->extract_info.width*image->extract_info.height) != 0)
dirk6c316f22015-06-27 15:44:29 +00001419 (void) FormatLocaleFile(file," \"tileGeometry\": {\n"
1420 " \"width\": %.20g,\n \"height\": %.20g,\n"
1421 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001422 (double) image->extract_info.width,(double) image->extract_info.height,
1423 (double) image->extract_info.x,(double) image->extract_info.y);
Cristy18b27502017-02-16 07:29:19 -05001424 GetColorTuple(&image->matte_color,MagickTrue,color);
1425 (void) FormatLocaleFile(file," \"matteColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001426 GetColorTuple(&image->background_color,MagickTrue,color);
1427 (void) FormatLocaleFile(file," \"backgroundColor\": \"%s\",\n",color);
1428 GetColorTuple(&image->border_color,MagickTrue,color);
1429 (void) FormatLocaleFile(file," \"borderColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001430 GetColorTuple(&image->transparent_color,MagickTrue,color);
1431 (void) FormatLocaleFile(file," \"transparentColor\": \"%s\",\n",color);
Cristydb96d692017-10-29 10:37:57 -04001432 JSONFormatLocaleFile(file," \"interlace\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001433 MagickInterlaceOptions,(ssize_t) image->interlace));
Cristydb96d692017-10-29 10:37:57 -04001434 JSONFormatLocaleFile(file," \"intensity\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001435 MagickPixelIntensityOptions,(ssize_t) image->intensity));
Cristydb96d692017-10-29 10:37:57 -04001436 JSONFormatLocaleFile(file," \"compose\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001437 CommandOptionToMnemonic(MagickComposeOptions,(ssize_t) image->compose));
cristy9e818982014-01-18 14:54:37 +00001438 if ((image->page.width != 0) || (image->page.height != 0) ||
1439 (image->page.x != 0) || (image->page.y != 0))
dirk6c316f22015-06-27 15:44:29 +00001440 (void) FormatLocaleFile(file," \"pageGeometry\": {\n"
1441 " \"width\": %.20g,\n \"height\": %.20g,\n"
1442 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
1443 (double) image->page.width,(double) image->page.height,
1444 (double) image->page.x,(double) image->page.y);
cristy9e818982014-01-18 14:54:37 +00001445 if ((image->page.x != 0) || (image->page.y != 0))
Cristycf4bb142017-10-12 20:01:00 -04001446 (void) FormatLocaleFile(file," \"originGeometry\": %+.20g%+.20g,\n",
dirk6c316f22015-06-27 15:44:29 +00001447 (double) image->page.x,(double) image->page.y);
Cristydb96d692017-10-29 10:37:57 -04001448 JSONFormatLocaleFile(file," \"dispose\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001449 CommandOptionToMnemonic(MagickDisposeOptions,(ssize_t) image->dispose));
cristy9e818982014-01-18 14:54:37 +00001450 if (image->delay != 0)
Darek Finster76c7e832017-10-13 01:57:47 +02001451 (void) FormatLocaleFile(file," \"delay\": \"%.20gx%.20g\",\n",
dirk6c316f22015-06-27 15:44:29 +00001452 (double) image->delay,(double) image->ticks_per_second);
cristy9e818982014-01-18 14:54:37 +00001453 if (image->iterations != 1)
dirk6c316f22015-06-27 15:44:29 +00001454 (void) FormatLocaleFile(file," \"iterations\": %.20g,\n",(double)
cristy9e818982014-01-18 14:54:37 +00001455 image->iterations);
1456 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
Dirk Lemstra3ea0d282017-09-21 13:31:12 +02001457 (void) FormatLocaleFile(file," \"scene\": %.20g,\n \"scenes\": "
1458 "%.20g,\n",(double) image->scene,(double) GetImageListLength(image));
cristy9e818982014-01-18 14:54:37 +00001459 else
1460 if (image->scene != 0)
dirk6c316f22015-06-27 15:44:29 +00001461 (void) FormatLocaleFile(file," \"scene\": %.20g,\n",(double)
1462 image->scene);
Cristydb96d692017-10-29 10:37:57 -04001463 JSONFormatLocaleFile(file," \"compression\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001464 CommandOptionToMnemonic(MagickCompressOptions,(ssize_t)
1465 image->compression));
cristy9e818982014-01-18 14:54:37 +00001466 if (image->quality != UndefinedCompressionQuality)
dirk6c316f22015-06-27 15:44:29 +00001467 (void) FormatLocaleFile(file," \"quality\": %.20g,\n",(double)
1468 image->quality);
Cristydb96d692017-10-29 10:37:57 -04001469 JSONFormatLocaleFile(file," \"orientation\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001470 CommandOptionToMnemonic(MagickOrientationOptions,(ssize_t)
1471 image->orientation));
cristy9e818982014-01-18 14:54:37 +00001472 if (image->montage != (char *) NULL)
Cristydb96d692017-10-29 10:37:57 -04001473 JSONFormatLocaleFile(file," \"montage\": \"%s\",\n",image->montage);
cristy9e818982014-01-18 14:54:37 +00001474 if (image->directory != (char *) NULL)
1475 {
1476 Image
1477 *tile;
1478
1479 ImageInfo
1480 *image_info;
1481
1482 register char
1483 *p,
1484 *q;
1485
1486 WarningHandler
1487 handler;
1488
1489 /*
1490 Display visual image directory.
1491 */
1492 image_info=AcquireImageInfo();
1493 (void) CloneString(&image_info->size,"64x64");
dirk6c316f22015-06-27 15:44:29 +00001494 (void) FormatLocaleFile(file," \"montageDirectory\": [");
1495 p=image->directory;
1496 while (*p != '\0')
cristy9e818982014-01-18 14:54:37 +00001497 {
1498 q=p;
1499 while ((*q != '\n') && (*q != '\0'))
1500 q++;
1501 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
dirk6c316f22015-06-27 15:44:29 +00001502 p=q+1;
Cristydb96d692017-10-29 10:37:57 -04001503 JSONFormatLocaleFile(file,"{\n \"name\": %s",
dirk6c316f22015-06-27 15:44:29 +00001504 image_info->filename);
cristy9e818982014-01-18 14:54:37 +00001505 handler=SetWarningHandler((WarningHandler) NULL);
1506 tile=ReadImage(image_info,exception);
1507 (void) SetWarningHandler(handler);
1508 if (tile == (Image *) NULL)
1509 {
dirk6c316f22015-06-27 15:44:29 +00001510 (void) FormatLocaleFile(file," }");
cristy9e818982014-01-18 14:54:37 +00001511 continue;
1512 }
dirk6c316f22015-06-27 15:44:29 +00001513 (void) FormatLocaleFile(file,",\n \"info\": \"%.20gx%.20g %s\"",
1514 (double) tile->magick_columns,(double) tile->magick_rows,
1515 tile->magick);
cristy9e818982014-01-18 14:54:37 +00001516 (void) SignatureImage(tile,exception);
1517 ResetImagePropertyIterator(tile);
1518 property=GetNextImageProperty(tile);
1519 while (property != (const char *) NULL)
1520 {
Cristydb96d692017-10-29 10:37:57 -04001521 JSONFormatLocaleFile(file,",\n %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001522 value=GetImageProperty(tile,property,exception);
Cristydb96d692017-10-29 10:37:57 -04001523 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001524 property=GetNextImageProperty(tile);
1525 }
1526 tile=DestroyImage(tile);
dirk6c316f22015-06-27 15:44:29 +00001527 if (*p != '\0')
1528 (void) FormatLocaleFile(file,"\n },");
1529 else
1530 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001531 }
dirk6c316f22015-06-27 15:44:29 +00001532 (void) FormatLocaleFile(file,"],\n");
cristy9e818982014-01-18 14:54:37 +00001533 image_info=DestroyImageInfo(image_info);
1534 }
1535 (void) GetImageProperty(image,"exif:*",exception);
cristy55166322014-01-23 01:53:24 +00001536 (void) GetImageProperty(image,"icc:*",exception);
1537 (void) GetImageProperty(image,"iptc:*",exception);
1538 (void) GetImageProperty(image,"xmp:*",exception);
cristy9e818982014-01-18 14:54:37 +00001539 ResetImagePropertyIterator(image);
1540 property=GetNextImageProperty(image);
1541 if (property != (const char *) NULL)
1542 {
dirk6c316f22015-06-27 15:44:29 +00001543 size_t
1544 n;
1545
cristy9e818982014-01-18 14:54:37 +00001546 /*
1547 Display image properties.
1548 */
dirk6c316f22015-06-27 15:44:29 +00001549 n=0;
1550 (void) FormatLocaleFile(file," \"properties\": {\n");
cristy9e818982014-01-18 14:54:37 +00001551 while (property != (const char *) NULL)
1552 {
dirk6c316f22015-06-27 15:44:29 +00001553 if (n++ != 0)
1554 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001555 JSONFormatLocaleFile(file," %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001556 value=GetImageProperty(image,property,exception);
Cristydb96d692017-10-29 10:37:57 -04001557 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001558 property=GetNextImageProperty(image);
1559 }
dirk6c316f22015-06-27 15:44:29 +00001560 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001561 }
cristy151b66d2015-04-15 10:50:31 +00001562 (void) FormatLocaleString(key,MagickPathExtent,"8BIM:1999,2998:#1");
cristy9e818982014-01-18 14:54:37 +00001563 value=GetImageProperty(image,key,exception);
1564 if (value != (const char *) NULL)
1565 {
1566 /*
1567 Display clipping path.
1568 */
Cristydb96d692017-10-29 10:37:57 -04001569 JSONFormatLocaleFile(file," \"clipping path\": %s,\n",value);
cristy9e818982014-01-18 14:54:37 +00001570 }
1571 ResetImageProfileIterator(image);
1572 name=GetNextImageProfile(image);
1573 if (name != (char *) NULL)
1574 {
1575 const StringInfo
1576 *profile;
1577
dirk6c316f22015-06-27 15:44:29 +00001578 size_t
1579 n;
1580
cristy9e818982014-01-18 14:54:37 +00001581 /*
1582 Identify image profiles.
1583 */
dirk6c316f22015-06-27 15:44:29 +00001584 n=0;
1585 (void) FormatLocaleFile(file," \"profiles\": {\n");
cristy9e818982014-01-18 14:54:37 +00001586 while (name != (char *) NULL)
1587 {
1588 profile=GetImageProfile(image,name);
1589 if (profile == (StringInfo *) NULL)
1590 continue;
dirk6c316f22015-06-27 15:44:29 +00001591 if (n++ != 0)
1592 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001593 JSONFormatLocaleFile(file," %s: {\n",name);
cristy9e818982014-01-18 14:54:37 +00001594 if (LocaleCompare(name,"iptc") == 0)
Dirk Lemstra32b15502017-09-21 17:04:36 +02001595 EncodeIptcProfile(file,profile);
Cristybc978e02017-10-29 13:29:43 -04001596 (void) FormatLocaleFile(file," \"length\": %.20g",(double)
dirk6c316f22015-06-27 15:44:29 +00001597 GetStringInfoLength(profile));
1598 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001599 name=GetNextImageProfile(image);
1600 }
dirk6c316f22015-06-27 15:44:29 +00001601 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001602 }
1603 ResetImageArtifactIterator(image);
1604 artifact=GetNextImageArtifact(image);
1605 if (artifact != (const char *) NULL)
1606 {
dirk6c316f22015-06-27 15:44:29 +00001607 ssize_t
1608 n;
1609
cristy9e818982014-01-18 14:54:37 +00001610 /*
1611 Display image artifacts.
1612 */
dirk6c316f22015-06-27 15:44:29 +00001613 n=0;
1614 (void) FormatLocaleFile(file," \"artifacts\": {\n");
cristy9e818982014-01-18 14:54:37 +00001615 while (artifact != (const char *) NULL)
1616 {
dirk6c316f22015-06-27 15:44:29 +00001617 if (n++ != 0)
1618 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001619 JSONFormatLocaleFile(file," %s: ",artifact);
cristy9e818982014-01-18 14:54:37 +00001620 value=GetImageArtifact(image,artifact);
Cristydb96d692017-10-29 10:37:57 -04001621 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001622 artifact=GetNextImageArtifact(image);
1623 }
dirk6c316f22015-06-27 15:44:29 +00001624 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001625 }
1626 ResetImageRegistryIterator();
1627 registry=GetNextImageRegistry();
1628 if (registry != (const char *) NULL)
1629 {
dirk6c316f22015-06-27 15:44:29 +00001630 ssize_t
1631 n;
1632
cristy9e818982014-01-18 14:54:37 +00001633 /*
1634 Display image registry.
1635 */
dirk6c316f22015-06-27 15:44:29 +00001636 (void) FormatLocaleFile(file," \"registry\": {\n");
1637 n=0;
cristy9e818982014-01-18 14:54:37 +00001638 while (registry != (const char *) NULL)
1639 {
dirk6c316f22015-06-27 15:44:29 +00001640 if (n++ != 0)
1641 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001642 JSONFormatLocaleFile(file," %s: ",registry);
cristy9e818982014-01-18 14:54:37 +00001643 value=(const char *) GetImageRegistry(StringRegistryType,registry,
1644 exception);
Cristydb96d692017-10-29 10:37:57 -04001645 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001646 registry=GetNextImageRegistry();
1647 }
dirk6c316f22015-06-27 15:44:29 +00001648 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001649 }
dirk6c316f22015-06-27 15:44:29 +00001650 (void) FormatLocaleFile(file," \"tainted\": %s,\n",
1651 image->taint != MagickFalse ? "true" : "false");
cristy151b66d2015-04-15 10:50:31 +00001652 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,"B",MagickPathExtent,
cristyd4618c02015-04-14 23:54:43 +00001653 format);
Cristydb96d692017-10-29 10:37:57 -04001654 JSONFormatLocaleFile(file," \"filesize\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001655 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy151b66d2015-04-15 10:50:31 +00001656 MagickFalse,"B",MagickPathExtent,format);
cristy9e818982014-01-18 14:54:37 +00001657 if (strlen(format) > 1)
1658 format[strlen(format)-1]='\0';
Cristydb96d692017-10-29 10:37:57 -04001659 JSONFormatLocaleFile(file," \"numberPixels\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001660 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristy151b66d2015-04-15 10:50:31 +00001661 elapsed_time+0.5),MagickFalse,"B",MagickPathExtent,format);
Cristydb96d692017-10-29 10:37:57 -04001662 JSONFormatLocaleFile(file," \"pixelsPerSecond\": %s,\n",format);
dirk6c316f22015-06-27 15:44:29 +00001663 (void) FormatLocaleFile(file," \"userTime\": \"%0.3fu\",\n",user_time);
1664 (void) FormatLocaleFile(file," \"elapsedTime\": \"%lu:%02lu.%03lu\",\n",
1665 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(
1666 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-floor(
1667 elapsed_time))));
Cristy519e0052016-10-16 15:28:40 -04001668 url=GetMagickHomeURL();
Cristydb96d692017-10-29 10:37:57 -04001669 JSONFormatLocaleFile(file," \"version\": %s\n",url);
Cristy519e0052016-10-16 15:28:40 -04001670 url=DestroyString(url);
dirk6c316f22015-06-27 15:44:29 +00001671 (void) FormatLocaleFile(file," }\n}\n");
cristy9e818982014-01-18 14:54:37 +00001672 (void) fflush(file);
1673 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1674}
1675
cristy3f07aa32014-01-18 01:16:33 +00001676static MagickBooleanType WriteJSONImage(const ImageInfo *image_info,
1677 Image *image,ExceptionInfo *exception)
1678{
dirk6c316f22015-06-27 15:44:29 +00001679 FILE
1680 *file;
1681
cristy3f07aa32014-01-18 01:16:33 +00001682 MagickBooleanType
1683 status;
1684
1685 MagickOffsetType
1686 scene;
1687
1688 /*
1689 Open output image file.
1690 */
1691 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001692 assert(image_info->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001693 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001694 assert(image->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001695 if (image->debug != MagickFalse)
1696 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1697 status=OpenBlob(image_info,image,WriteBlobMode,exception);
1698 if (status == MagickFalse)
1699 return(status);
dirk6c316f22015-06-27 15:44:29 +00001700 file=GetBlobFileHandle(image);
1701 if (file == (FILE *) NULL)
1702 file=stdout;
cristy3f07aa32014-01-18 01:16:33 +00001703 scene=0;
1704 do
1705 {
Dirk Lemstrac9105bd2017-09-21 13:39:00 +02001706 if (scene == 0)
Cristy457c4d62017-12-16 07:45:18 -05001707 (void) WriteBlobString(image,"[");
cristy9e818982014-01-18 14:54:37 +00001708 image->magick_columns=image->columns;
1709 image->magick_rows=image->rows;
Cristy457c4d62017-12-16 07:45:18 -05001710 (void) EncodeImageAttributes(image,file,exception);
cristy3f07aa32014-01-18 01:16:33 +00001711 if (GetNextImageInList(image) == (Image *) NULL)
dirk6c316f22015-06-27 15:44:29 +00001712 {
Cristy457c4d62017-12-16 07:45:18 -05001713 (void) WriteBlobString(image,"]");
dirk6c316f22015-06-27 15:44:29 +00001714 break;
1715 }
Cristy457c4d62017-12-16 07:45:18 -05001716 (void) WriteBlobString(image,",\n");
cristy3f07aa32014-01-18 01:16:33 +00001717 image=SyncNextImageInList(image);
1718 status=SetImageProgress(image,SaveImagesTag,scene++,
1719 GetImageListLength(image));
1720 if (status == MagickFalse)
1721 break;
1722 } while (image_info->adjoin != MagickFalse);
1723 (void) CloseBlob(image);
1724 return(MagickTrue);
1725}