blob: 1f0c97185c596b8454d2fef6d0260cf3ca2f6263 [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% %
Cristyf6ff9ea2016-12-05 09:53:35 -050020% Copyright 1999-2017 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 ColorspaceType
936 colorspace;
937
938 const char
939 *artifact,
940 *locate,
941 *name,
942 *property,
943 *registry,
944 *value;
945
946 const MagickInfo
947 *magick_info;
948
949 double
950 elapsed_time,
951 user_time;
952
953 ImageType
dirkab4f0bb2015-07-25 11:46:32 +0000954 base_type,
cristy9e818982014-01-18 14:54:37 +0000955 type;
956
957 MagickBooleanType
958 ping;
959
960 register const Quantum
961 *p;
962
963 register ssize_t
964 i,
965 x;
966
967 size_t
dirk6c316f22015-06-27 15:44:29 +0000968 depth,
cristy9e818982014-01-18 14:54:37 +0000969 distance,
970 scale;
971
972 ssize_t
973 y;
974
975 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000976 assert(image->signature == MagickCoreSignature);
cristy9e818982014-01-18 14:54:37 +0000977 if (image->debug != MagickFalse)
978 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristya10f7442014-01-19 18:32:15 +0000979 *format='\0';
980 elapsed_time=GetElapsedTime(&image->timer);
981 user_time=GetUserTime(&image->timer);
982 GetTimerInfo(&image->timer);
983 p=GetVirtualPixels(image,0,0,1,1,exception);
984 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristye1c94d92015-06-28 12:16:33 +0000985 (void) ping;
cristya10f7442014-01-19 18:32:15 +0000986 (void) SignatureImage(image,exception);
Cristydb96d692017-10-29 10:37:57 -0400987 JSONFormatLocaleFile(file,"{\n \"image\": {\n \"name\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +0000988 image->filename);
cristya10f7442014-01-19 18:32:15 +0000989 if (*image->magick_filename != '\0')
990 if (LocaleCompare(image->magick_filename,image->filename) != 0)
991 {
992 char
cristy151b66d2015-04-15 10:50:31 +0000993 filename[MagickPathExtent];
cristya10f7442014-01-19 18:32:15 +0000994
995 GetPathComponent(image->magick_filename,TailPath,filename);
Cristydb96d692017-10-29 10:37:57 -0400996 JSONFormatLocaleFile(file," \"baseName\": %s,\n",filename);
cristya10f7442014-01-19 18:32:15 +0000997 }
Cristydb96d692017-10-29 10:37:57 -0400998 JSONFormatLocaleFile(file," \"format\": %s,\n",image->magick);
cristya10f7442014-01-19 18:32:15 +0000999 magick_info=GetMagickInfo(image->magick,exception);
dirk6c316f22015-06-27 15:44:29 +00001000 if ((magick_info != (const MagickInfo *) NULL) &&
1001 (GetMagickDescription(magick_info) != (const char *) NULL))
Cristydb96d692017-10-29 10:37:57 -04001002 JSONFormatLocaleFile(file," \"formatDescription\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001003 image->magick);
cristy12bcd3d2015-01-28 00:54:23 +00001004 if ((magick_info != (const MagickInfo *) NULL) &&
cristya10f7442014-01-19 18:32:15 +00001005 (GetMagickMimeType(magick_info) != (const char *) NULL))
Cristydb96d692017-10-29 10:37:57 -04001006 JSONFormatLocaleFile(file," \"mimeType\": %s,\n",GetMagickMimeType(
cristya10f7442014-01-19 18:32:15 +00001007 magick_info));
Cristydb96d692017-10-29 10:37:57 -04001008 JSONFormatLocaleFile(file," \"class\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001009 MagickClassOptions,(ssize_t) image->storage_class));
dirk6c316f22015-06-27 15:44:29 +00001010 (void) FormatLocaleFile(file," \"geometry\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001011 " \"width\": %g,\n \"height\": %g,\n"
1012 " \"x\": %g,\n \"y\": %g\n },\n",
dirk6c316f22015-06-27 15:44:29 +00001013 (double) image->columns,(double) image->rows,(double) image->tile_offset.x,
1014 (double) image->tile_offset.y);
cristya10f7442014-01-19 18:32:15 +00001015 if ((image->magick_columns != 0) || (image->magick_rows != 0))
1016 if ((image->magick_columns != image->columns) ||
1017 (image->magick_rows != image->rows))
dirk6c316f22015-06-27 15:44:29 +00001018 (void) FormatLocaleFile(file," \"baseGeometry\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001019 " \"width\": %g,\n \"height\": %g\n },\n",(double)
1020 image->magick_columns,(double) image->magick_rows);
cristya10f7442014-01-19 18:32:15 +00001021 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
1022 {
dirk6c316f22015-06-27 15:44:29 +00001023 (void) FormatLocaleFile(file," \"resolution\": {\n"
Cristybc978e02017-10-29 13:29:43 -04001024 " \"x\": %g,\n \"y\": %g\n },\n",image->resolution.x,
cristya10f7442014-01-19 18:32:15 +00001025 image->resolution.y);
Cristybc978e02017-10-29 13:29:43 -04001026 (void) FormatLocaleFile(file," \"printSize\": {\n"
1027 " \"x\": %.*g,\n \"y\": %.*g\n },\n",GetMagickPrecision(),
1028 image->columns/image->resolution.x,GetMagickPrecision(),(double)
1029 image->rows/image->resolution.y);
cristya10f7442014-01-19 18:32:15 +00001030 }
Cristydb96d692017-10-29 10:37:57 -04001031 JSONFormatLocaleFile(file," \"units\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001032 MagickResolutionOptions,(ssize_t) image->units));
dirkab4f0bb2015-07-25 11:46:32 +00001033 colorspace=image->colorspace;
1034 type=IdentifyImageType(image,exception);
1035 if ((type == BilevelType) || (type == GrayscaleType) ||
1036 (type == GrayscaleAlphaType))
1037 colorspace=GRAYColorspace;
Cristydb96d692017-10-29 10:37:57 -04001038 JSONFormatLocaleFile(file," \"type\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +00001039 MagickTypeOptions,(ssize_t) type));
dirkab4f0bb2015-07-25 11:46:32 +00001040 base_type=GetImageType(image);
1041 if (type != base_type)
Cristydb96d692017-10-29 10:37:57 -04001042 JSONFormatLocaleFile(file," \"baseType\": %s,\n",
dirkab4f0bb2015-07-25 11:46:32 +00001043 CommandOptionToMnemonic(MagickTypeOptions,(ssize_t) base_type));
Cristydb96d692017-10-29 10:37:57 -04001044 JSONFormatLocaleFile(file," \"endianess\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001045 CommandOptionToMnemonic(MagickEndianOptions,(ssize_t) image->endian));
cristy9e818982014-01-18 14:54:37 +00001046 locate=GetImageArtifact(image,"identify:locate");
cristy3e583dd2014-01-19 14:11:51 +00001047 if (locate == (const char *) NULL)
1048 locate=GetImageArtifact(image,"json:locate");
cristy9e818982014-01-18 14:54:37 +00001049 if (locate != (const char *) NULL)
1050 {
1051 const char
1052 *limit;
1053
1054 size_t
1055 max_locations;
1056
1057 StatisticType
1058 type;
1059
1060 /*
1061 Display minimum, maximum, or mean pixel locations.
1062 */
1063 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
1064 MagickFalse,locate);
1065 limit=GetImageArtifact(image,"identify:limit");
cristy3e583dd2014-01-19 14:11:51 +00001066 if (limit == (const char *) NULL)
1067 limit=GetImageArtifact(image,"json:limit");
cristy9e818982014-01-18 14:54:37 +00001068 max_locations=0;
1069 if (limit != (const char *) NULL)
1070 max_locations=StringToUnsignedLong(limit);
1071 channel_statistics=GetLocationStatistics(image,type,exception);
1072 if (channel_statistics == (ChannelStatistics *) NULL)
1073 return(MagickFalse);
dirk6c316f22015-06-27 15:44:29 +00001074 (void) FormatLocaleFile(file," \"channel%s\": {\n",locate);
1075 if (image->alpha_trait != UndefinedPixelTrait)
1076 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
1077 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001078 switch (colorspace)
1079 {
1080 case RGBColorspace:
1081 default:
1082 {
1083 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
dirk6c316f22015-06-27 15:44:29 +00001084 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001085 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001086 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001087 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
dirk6c316f22015-06-27 15:44:29 +00001088 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001089 break;
1090 }
1091 case CMYKColorspace:
1092 {
1093 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
dirk6c316f22015-06-27 15:44:29 +00001094 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001095 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001096 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001097 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001098 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001099 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001100 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001101 break;
1102 }
1103 case GRAYColorspace:
1104 {
1105 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
dirk6c316f22015-06-27 15:44:29 +00001106 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001107 break;
1108 }
1109 }
dirk6c316f22015-06-27 15:44:29 +00001110 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001111 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
1112 channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001113 }
cristy9e818982014-01-18 14:54:37 +00001114 /*
1115 Detail channel depth and extrema.
1116 */
Cristydb96d692017-10-29 10:37:57 -04001117 JSONFormatLocaleFile(file," \"colorspace\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001118 CommandOptionToMnemonic(MagickColorspaceOptions,(ssize_t)
1119 image->colorspace));
cristy9e818982014-01-18 14:54:37 +00001120 channel_statistics=(ChannelStatistics *) NULL;
1121 channel_moments=(ChannelMoments *) NULL;
cristydc395172014-02-23 01:33:36 +00001122 channel_phash=(ChannelPerceptualHash *) NULL;
cristy9e818982014-01-18 14:54:37 +00001123 channel_features=(ChannelFeatures *) NULL;
cristy9e818982014-01-18 14:54:37 +00001124 scale=1;
dirk6c316f22015-06-27 15:44:29 +00001125 channel_statistics=GetImageStatistics(image,exception);
1126 if (channel_statistics == (ChannelStatistics *) NULL)
1127 return(MagickFalse);
1128 artifact=GetImageArtifact(image,"identify:moments");
1129 if (artifact == (const char *) NULL)
1130 artifact=GetImageArtifact(image,"json:moments");
1131 if (artifact != (const char *) NULL)
cristy9e818982014-01-18 14:54:37 +00001132 {
dirk6c316f22015-06-27 15:44:29 +00001133 channel_moments=GetImageMoments(image,exception);
1134 channel_phash=GetImagePerceptualHash(image,exception);
cristy9e818982014-01-18 14:54:37 +00001135 }
dirk6c316f22015-06-27 15:44:29 +00001136 artifact=GetImageArtifact(image,"identify:features");
1137 if (artifact == (const char *) NULL)
1138 artifact=GetImageArtifact(image,"json:features");
1139 if (artifact != (const char *) NULL)
1140 {
1141 distance=StringToUnsignedLong(artifact);
1142 channel_features=GetImageFeatures(image,distance,exception);
1143 }
1144 depth=GetImageDepth(image,exception);
Cristybc978e02017-10-29 13:29:43 -04001145 (void) FormatLocaleFile(file," \"depth\": %g,\n",(double) depth);
1146 (void) FormatLocaleFile(file," \"baseDepth\": %g,\n",(double)
dirk6c316f22015-06-27 15:44:29 +00001147 image->depth);
1148 (void) FormatLocaleFile(file," \"channelDepth\": {\n");
dirk6c316f22015-06-27 15:44:29 +00001149 if (image->alpha_trait != UndefinedPixelTrait)
1150 (void) FormatLocaleFile(file," \"alpha\": %.20g,\n",(double)
1151 channel_statistics[AlphaPixelChannel].depth);
1152 switch (colorspace)
1153 {
1154 case RGBColorspace:
1155 default:
1156 {
1157 (void) FormatLocaleFile(file," \"red\": %.20g,\n",(double)
1158 channel_statistics[RedChannel].depth);
1159 (void) FormatLocaleFile(file," \"green\": %.20g,\n",(double)
1160 channel_statistics[GreenChannel].depth);
1161 (void) FormatLocaleFile(file," \"blue\": %.20g\n",(double)
1162 channel_statistics[BlueChannel].depth);
1163 break;
1164 }
1165 case CMYKColorspace:
1166 {
1167 (void) FormatLocaleFile(file," \"cyan\": %.20g,\n",(double)
1168 channel_statistics[CyanChannel].depth);
1169 (void) FormatLocaleFile(file," \"magenta\": %.20g,\n",(double)
1170 channel_statistics[MagentaChannel].depth);
1171 (void) FormatLocaleFile(file," \"yellow\": %.20g,\n",(double)
1172 channel_statistics[YellowChannel].depth);
1173 (void) FormatLocaleFile(file," \"black\": %.20g\n",(double)
1174 channel_statistics[BlackChannel].depth);
1175 break;
1176 }
1177 case GRAYColorspace:
1178 {
1179 (void) FormatLocaleFile(file," \"gray\": %.20g\n",(double)
1180 channel_statistics[GrayChannel].depth);
1181 break;
1182 }
1183 }
1184 (void) FormatLocaleFile(file," },\n");
1185 scale=1;
1186 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
1187 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
1188 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy9e818982014-01-18 14:54:37 +00001189 if (channel_statistics != (ChannelStatistics *) NULL)
1190 {
dirk6c316f22015-06-27 15:44:29 +00001191 (void) FormatLocaleFile(file," \"pixels\": %.20g,\n",
cristy9e818982014-01-18 14:54:37 +00001192 channel_statistics[CompositePixelChannel].area);
dirk6c316f22015-06-27 15:44:29 +00001193 if (colorspace != GRAYColorspace)
1194 {
1195 (void) FormatLocaleFile(file," \"imageStatistics\": {\n");
1196 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
1197 "Overall",1.0/scale,MagickFalse,channel_statistics);
1198 (void) FormatLocaleFile(file," },\n");
1199 }
1200 (void) FormatLocaleFile(file," \"channelStatistics\": {\n");
1201 if (image->alpha_trait != UndefinedPixelTrait)
1202 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/scale,
1203 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001204 switch (colorspace)
1205 {
1206 case RGBColorspace:
1207 default:
1208 {
dirk6c316f22015-06-27 15:44:29 +00001209 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/scale,
1210 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001211 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
dirk6c316f22015-06-27 15:44:29 +00001212 scale,MagickTrue,channel_statistics);
1213 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/scale,
1214 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001215 break;
1216 }
1217 case CMYKColorspace:
1218 {
dirk6c316f22015-06-27 15:44:29 +00001219 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/scale,
1220 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001221 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
dirk6c316f22015-06-27 15:44:29 +00001222 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001223 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
dirk6c316f22015-06-27 15:44:29 +00001224 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001225 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
dirk6c316f22015-06-27 15:44:29 +00001226 scale,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001227 break;
1228 }
1229 case GRAYColorspace:
1230 {
dirk6c316f22015-06-27 15:44:29 +00001231 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/scale,
1232 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001233 break;
1234 }
1235 }
dirk6c316f22015-06-27 15:44:29 +00001236 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001237 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
1238 channel_statistics);
1239 }
1240 if (channel_moments != (ChannelMoments *) NULL)
1241 {
dirk6c316f22015-06-27 15:44:29 +00001242 (void) FormatLocaleFile(file," \"channelMoments\": {\n");
1243 if (image->alpha_trait != UndefinedPixelTrait)
1244 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",MagickTrue,
1245 channel_moments);
cristy9e818982014-01-18 14:54:37 +00001246 switch (colorspace)
1247 {
1248 case RGBColorspace:
1249 default:
1250 {
dirk6c316f22015-06-27 15:44:29 +00001251 (void) PrintChannelMoments(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001252 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001253 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001254 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001255 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001256 channel_moments);
1257 break;
1258 }
1259 case CMYKColorspace:
1260 {
dirk6c316f22015-06-27 15:44:29 +00001261 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001262 channel_moments);
1263 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001264 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001265 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001266 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001267 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001268 MagickFalse,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001269 break;
1270 }
1271 case GRAYColorspace:
1272 {
dirk6c316f22015-06-27 15:44:29 +00001273 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001274 channel_moments);
1275 break;
1276 }
1277 }
dirk6c316f22015-06-27 15:44:29 +00001278 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001279 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
1280 channel_moments);
1281 }
cristydc395172014-02-23 01:33:36 +00001282 if (channel_phash != (ChannelPerceptualHash *) NULL)
1283 {
1284 (void) FormatLocaleFile(file," \"channelPerceptualHash\": {\n");
Cristye6961802016-09-03 11:31:13 -04001285 (void) PrintChannelPerceptualHash(image,file,channel_phash);
cristydc395172014-02-23 01:33:36 +00001286 (void) FormatLocaleFile(file," },\n");
1287 channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory(
1288 channel_phash);
1289 }
cristy9e818982014-01-18 14:54:37 +00001290 if (channel_features != (ChannelFeatures *) NULL)
1291 {
dirk6c316f22015-06-27 15:44:29 +00001292 (void) FormatLocaleFile(file," \"channelFeatures\": {\n");
1293 if (image->alpha_trait != UndefinedPixelTrait)
1294 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",MagickTrue,
1295 channel_features);
cristy9e818982014-01-18 14:54:37 +00001296 switch (colorspace)
1297 {
1298 case RGBColorspace:
1299 default:
1300 {
dirk6c316f22015-06-27 15:44:29 +00001301 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001302 channel_features);
1303 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001304 MagickTrue,channel_features);
1305 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001306 channel_features);
1307 break;
1308 }
1309 case CMYKColorspace:
1310 {
dirk6c316f22015-06-27 15:44:29 +00001311 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001312 channel_features);
1313 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001314 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001315 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001316 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001317 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001318 MagickFalse,channel_features);
cristy9e818982014-01-18 14:54:37 +00001319 break;
1320 }
1321 case GRAYColorspace:
1322 {
dirk6c316f22015-06-27 15:44:29 +00001323 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001324 channel_features);
1325 break;
1326 }
1327 }
dirk6c316f22015-06-27 15:44:29 +00001328 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001329 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
1330 channel_features);
1331 }
dirk6c316f22015-06-27 15:44:29 +00001332 if (image->colorspace == CMYKColorspace)
1333 (void) FormatLocaleFile(file," \"totalInkDensity\": \"%.*g%%\",\n",
cristye1c94d92015-06-28 12:16:33 +00001334 GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
1335 (double) QuantumRange);
dirk6c316f22015-06-27 15:44:29 +00001336 x=0;
1337 if (image->alpha_trait != UndefinedPixelTrait)
1338 {
1339 register const Quantum
1340 *p;
1341
1342 p=(const Quantum *) NULL;
1343 for (y=0; y < (ssize_t) image->rows; y++)
cristy9e818982014-01-18 14:54:37 +00001344 {
dirk6c316f22015-06-27 15:44:29 +00001345 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
1346 if (p == (const Quantum *) NULL)
1347 break;
1348 for (x=0; x < (ssize_t) image->columns; x++)
cristy9e818982014-01-18 14:54:37 +00001349 {
dirk6c316f22015-06-27 15:44:29 +00001350 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy9e818982014-01-18 14:54:37 +00001351 break;
dirk6c316f22015-06-27 15:44:29 +00001352 p+=GetPixelChannels(image);
cristy9e818982014-01-18 14:54:37 +00001353 }
dirk6c316f22015-06-27 15:44:29 +00001354 if (x < (ssize_t) image->columns)
1355 break;
cristy9e818982014-01-18 14:54:37 +00001356 }
dirk6c316f22015-06-27 15:44:29 +00001357 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
1358 {
1359 PixelInfo
1360 pixel;
1361
1362 GetPixelInfo(image,&pixel);
1363 GetPixelInfoPixel(image,p,&pixel);
1364 GetColorTuple(&pixel,MagickTrue,color);
1365 (void) FormatLocaleFile(file," \"alpha\": \"%s\",\n",color);
1366 }
1367 }
cristy9e818982014-01-18 14:54:37 +00001368 if (image->storage_class == PseudoClass)
1369 {
dirk6c316f22015-06-27 15:44:29 +00001370 register PixelInfo
dirk05d2ff72015-11-18 23:13:43 +01001371 *magick_restrict p;
cristy9e818982014-01-18 14:54:37 +00001372
dirk6c316f22015-06-27 15:44:29 +00001373 (void) FormatLocaleFile(file," \"colormapEntries\": %.20g,\n",
1374 (double) image->colors);
1375 (void) FormatLocaleFile(file," \"colormap\": [\n ");
1376 p=image->colormap;
1377 for (i=0; i < (ssize_t) image->colors; i++)
1378 {
1379 GetColorTuple(p,MagickTrue,color);
1380 (void) FormatLocaleFile(file,"\"%s\"",color);
1381 if (i < (ssize_t) (image->colors-1))
1382 (void) FormatLocaleFile(file,",");
1383 if (((i+1) % 5) == 0)
1384 (void) FormatLocaleFile(file,"\n ");
1385 p++;
1386 }
1387 (void) FormatLocaleFile(file,"\n ],\n");
cristy9e818982014-01-18 14:54:37 +00001388 }
1389 if (image->error.mean_error_per_pixel != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001390 (void) FormatLocaleFile(file," \"meanErrorPerPixel\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001391 image->error.mean_error_per_pixel);
1392 if (image->error.normalized_mean_error != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001393 (void) FormatLocaleFile(file," \"normalizedMeanError\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001394 image->error.normalized_mean_error);
1395 if (image->error.normalized_maximum_error != 0.0)
Cristybc978e02017-10-29 13:29:43 -04001396 (void) FormatLocaleFile(file," \"normalizedMaximumError\": %g,\n",
cristy9e818982014-01-18 14:54:37 +00001397 image->error.normalized_maximum_error);
Cristydb96d692017-10-29 10:37:57 -04001398 JSONFormatLocaleFile(file," \"renderingIntent\": %s,\n",
cristy9e818982014-01-18 14:54:37 +00001399 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1400 image->rendering_intent));
1401 if (image->gamma != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001402 (void) FormatLocaleFile(file," \"gamma\": %g,\n",image->gamma);
cristy9e818982014-01-18 14:54:37 +00001403 if ((image->chromaticity.red_primary.x != 0.0) ||
1404 (image->chromaticity.green_primary.x != 0.0) ||
1405 (image->chromaticity.blue_primary.x != 0.0) ||
1406 (image->chromaticity.white_point.x != 0.0))
1407 {
1408 /*
1409 Display image chromaticity.
1410 */
dirk6c316f22015-06-27 15:44:29 +00001411 (void) FormatLocaleFile(file," \"chromaticity\": {\n");
1412 (void) FormatLocaleFile(file," \"redPrimary\": {\n"
1413 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001414 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001415 (void) FormatLocaleFile(file," \"greenPrimary\": {\n"
1416 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001417 image->chromaticity.green_primary.x,
1418 image->chromaticity.green_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001419 (void) FormatLocaleFile(file," \"bluePrimary\": {\n"
1420 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001421 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001422 (void) FormatLocaleFile(file," \"whitePrimary\": {\n"
1423 " \"x\": %g,\n \"y\": %g\n }\n",
cristy9e818982014-01-18 14:54:37 +00001424 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
dirk6c316f22015-06-27 15:44:29 +00001425 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001426 }
1427 if ((image->extract_info.width*image->extract_info.height) != 0)
dirk6c316f22015-06-27 15:44:29 +00001428 (void) FormatLocaleFile(file," \"tileGeometry\": {\n"
1429 " \"width\": %.20g,\n \"height\": %.20g,\n"
1430 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001431 (double) image->extract_info.width,(double) image->extract_info.height,
1432 (double) image->extract_info.x,(double) image->extract_info.y);
Cristy18b27502017-02-16 07:29:19 -05001433 GetColorTuple(&image->matte_color,MagickTrue,color);
1434 (void) FormatLocaleFile(file," \"matteColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001435 GetColorTuple(&image->background_color,MagickTrue,color);
1436 (void) FormatLocaleFile(file," \"backgroundColor\": \"%s\",\n",color);
1437 GetColorTuple(&image->border_color,MagickTrue,color);
1438 (void) FormatLocaleFile(file," \"borderColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001439 GetColorTuple(&image->transparent_color,MagickTrue,color);
1440 (void) FormatLocaleFile(file," \"transparentColor\": \"%s\",\n",color);
Cristydb96d692017-10-29 10:37:57 -04001441 JSONFormatLocaleFile(file," \"interlace\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001442 MagickInterlaceOptions,(ssize_t) image->interlace));
Cristydb96d692017-10-29 10:37:57 -04001443 JSONFormatLocaleFile(file," \"intensity\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001444 MagickPixelIntensityOptions,(ssize_t) image->intensity));
Cristydb96d692017-10-29 10:37:57 -04001445 JSONFormatLocaleFile(file," \"compose\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001446 CommandOptionToMnemonic(MagickComposeOptions,(ssize_t) image->compose));
cristy9e818982014-01-18 14:54:37 +00001447 if ((image->page.width != 0) || (image->page.height != 0) ||
1448 (image->page.x != 0) || (image->page.y != 0))
dirk6c316f22015-06-27 15:44:29 +00001449 (void) FormatLocaleFile(file," \"pageGeometry\": {\n"
1450 " \"width\": %.20g,\n \"height\": %.20g,\n"
1451 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
1452 (double) image->page.width,(double) image->page.height,
1453 (double) image->page.x,(double) image->page.y);
cristy9e818982014-01-18 14:54:37 +00001454 if ((image->page.x != 0) || (image->page.y != 0))
Cristycf4bb142017-10-12 20:01:00 -04001455 (void) FormatLocaleFile(file," \"originGeometry\": %+.20g%+.20g,\n",
dirk6c316f22015-06-27 15:44:29 +00001456 (double) image->page.x,(double) image->page.y);
Cristydb96d692017-10-29 10:37:57 -04001457 JSONFormatLocaleFile(file," \"dispose\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001458 CommandOptionToMnemonic(MagickDisposeOptions,(ssize_t) image->dispose));
cristy9e818982014-01-18 14:54:37 +00001459 if (image->delay != 0)
Darek Finster76c7e832017-10-13 01:57:47 +02001460 (void) FormatLocaleFile(file," \"delay\": \"%.20gx%.20g\",\n",
dirk6c316f22015-06-27 15:44:29 +00001461 (double) image->delay,(double) image->ticks_per_second);
cristy9e818982014-01-18 14:54:37 +00001462 if (image->iterations != 1)
dirk6c316f22015-06-27 15:44:29 +00001463 (void) FormatLocaleFile(file," \"iterations\": %.20g,\n",(double)
cristy9e818982014-01-18 14:54:37 +00001464 image->iterations);
1465 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
Dirk Lemstra3ea0d282017-09-21 13:31:12 +02001466 (void) FormatLocaleFile(file," \"scene\": %.20g,\n \"scenes\": "
1467 "%.20g,\n",(double) image->scene,(double) GetImageListLength(image));
cristy9e818982014-01-18 14:54:37 +00001468 else
1469 if (image->scene != 0)
dirk6c316f22015-06-27 15:44:29 +00001470 (void) FormatLocaleFile(file," \"scene\": %.20g,\n",(double)
1471 image->scene);
Cristydb96d692017-10-29 10:37:57 -04001472 JSONFormatLocaleFile(file," \"compression\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001473 CommandOptionToMnemonic(MagickCompressOptions,(ssize_t)
1474 image->compression));
cristy9e818982014-01-18 14:54:37 +00001475 if (image->quality != UndefinedCompressionQuality)
dirk6c316f22015-06-27 15:44:29 +00001476 (void) FormatLocaleFile(file," \"quality\": %.20g,\n",(double)
1477 image->quality);
Cristydb96d692017-10-29 10:37:57 -04001478 JSONFormatLocaleFile(file," \"orientation\": %s,\n",
dirk6c316f22015-06-27 15:44:29 +00001479 CommandOptionToMnemonic(MagickOrientationOptions,(ssize_t)
1480 image->orientation));
cristy9e818982014-01-18 14:54:37 +00001481 if (image->montage != (char *) NULL)
Cristydb96d692017-10-29 10:37:57 -04001482 JSONFormatLocaleFile(file," \"montage\": \"%s\",\n",image->montage);
cristy9e818982014-01-18 14:54:37 +00001483 if (image->directory != (char *) NULL)
1484 {
1485 Image
1486 *tile;
1487
1488 ImageInfo
1489 *image_info;
1490
1491 register char
1492 *p,
1493 *q;
1494
1495 WarningHandler
1496 handler;
1497
1498 /*
1499 Display visual image directory.
1500 */
1501 image_info=AcquireImageInfo();
1502 (void) CloneString(&image_info->size,"64x64");
dirk6c316f22015-06-27 15:44:29 +00001503 (void) FormatLocaleFile(file," \"montageDirectory\": [");
1504 p=image->directory;
1505 while (*p != '\0')
cristy9e818982014-01-18 14:54:37 +00001506 {
1507 q=p;
1508 while ((*q != '\n') && (*q != '\0'))
1509 q++;
1510 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
dirk6c316f22015-06-27 15:44:29 +00001511 p=q+1;
Cristydb96d692017-10-29 10:37:57 -04001512 JSONFormatLocaleFile(file,"{\n \"name\": %s",
dirk6c316f22015-06-27 15:44:29 +00001513 image_info->filename);
cristy9e818982014-01-18 14:54:37 +00001514 handler=SetWarningHandler((WarningHandler) NULL);
1515 tile=ReadImage(image_info,exception);
1516 (void) SetWarningHandler(handler);
1517 if (tile == (Image *) NULL)
1518 {
dirk6c316f22015-06-27 15:44:29 +00001519 (void) FormatLocaleFile(file," }");
cristy9e818982014-01-18 14:54:37 +00001520 continue;
1521 }
dirk6c316f22015-06-27 15:44:29 +00001522 (void) FormatLocaleFile(file,",\n \"info\": \"%.20gx%.20g %s\"",
1523 (double) tile->magick_columns,(double) tile->magick_rows,
1524 tile->magick);
cristy9e818982014-01-18 14:54:37 +00001525 (void) SignatureImage(tile,exception);
1526 ResetImagePropertyIterator(tile);
1527 property=GetNextImageProperty(tile);
1528 while (property != (const char *) NULL)
1529 {
Cristydb96d692017-10-29 10:37:57 -04001530 JSONFormatLocaleFile(file,",\n %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001531 value=GetImageProperty(tile,property,exception);
Cristydb96d692017-10-29 10:37:57 -04001532 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001533 property=GetNextImageProperty(tile);
1534 }
1535 tile=DestroyImage(tile);
dirk6c316f22015-06-27 15:44:29 +00001536 if (*p != '\0')
1537 (void) FormatLocaleFile(file,"\n },");
1538 else
1539 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001540 }
dirk6c316f22015-06-27 15:44:29 +00001541 (void) FormatLocaleFile(file,"],\n");
cristy9e818982014-01-18 14:54:37 +00001542 image_info=DestroyImageInfo(image_info);
1543 }
1544 (void) GetImageProperty(image,"exif:*",exception);
cristy55166322014-01-23 01:53:24 +00001545 (void) GetImageProperty(image,"icc:*",exception);
1546 (void) GetImageProperty(image,"iptc:*",exception);
1547 (void) GetImageProperty(image,"xmp:*",exception);
cristy9e818982014-01-18 14:54:37 +00001548 ResetImagePropertyIterator(image);
1549 property=GetNextImageProperty(image);
1550 if (property != (const char *) NULL)
1551 {
dirk6c316f22015-06-27 15:44:29 +00001552 size_t
1553 n;
1554
cristy9e818982014-01-18 14:54:37 +00001555 /*
1556 Display image properties.
1557 */
dirk6c316f22015-06-27 15:44:29 +00001558 n=0;
1559 (void) FormatLocaleFile(file," \"properties\": {\n");
cristy9e818982014-01-18 14:54:37 +00001560 while (property != (const char *) NULL)
1561 {
dirk6c316f22015-06-27 15:44:29 +00001562 if (n++ != 0)
1563 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001564 JSONFormatLocaleFile(file," %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001565 value=GetImageProperty(image,property,exception);
Cristydb96d692017-10-29 10:37:57 -04001566 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001567 property=GetNextImageProperty(image);
1568 }
dirk6c316f22015-06-27 15:44:29 +00001569 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001570 }
cristy151b66d2015-04-15 10:50:31 +00001571 (void) FormatLocaleString(key,MagickPathExtent,"8BIM:1999,2998:#1");
cristy9e818982014-01-18 14:54:37 +00001572 value=GetImageProperty(image,key,exception);
1573 if (value != (const char *) NULL)
1574 {
1575 /*
1576 Display clipping path.
1577 */
Cristydb96d692017-10-29 10:37:57 -04001578 JSONFormatLocaleFile(file," \"clipping path\": %s,\n",value);
cristy9e818982014-01-18 14:54:37 +00001579 }
1580 ResetImageProfileIterator(image);
1581 name=GetNextImageProfile(image);
1582 if (name != (char *) NULL)
1583 {
1584 const StringInfo
1585 *profile;
1586
dirk6c316f22015-06-27 15:44:29 +00001587 size_t
1588 n;
1589
cristy9e818982014-01-18 14:54:37 +00001590 /*
1591 Identify image profiles.
1592 */
dirk6c316f22015-06-27 15:44:29 +00001593 n=0;
1594 (void) FormatLocaleFile(file," \"profiles\": {\n");
cristy9e818982014-01-18 14:54:37 +00001595 while (name != (char *) NULL)
1596 {
1597 profile=GetImageProfile(image,name);
1598 if (profile == (StringInfo *) NULL)
1599 continue;
dirk6c316f22015-06-27 15:44:29 +00001600 if (n++ != 0)
1601 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001602 JSONFormatLocaleFile(file," %s: {\n",name);
cristy9e818982014-01-18 14:54:37 +00001603 if (LocaleCompare(name,"iptc") == 0)
Dirk Lemstra32b15502017-09-21 17:04:36 +02001604 EncodeIptcProfile(file,profile);
Cristybc978e02017-10-29 13:29:43 -04001605 (void) FormatLocaleFile(file," \"length\": %.20g",(double)
dirk6c316f22015-06-27 15:44:29 +00001606 GetStringInfoLength(profile));
1607 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001608 name=GetNextImageProfile(image);
1609 }
dirk6c316f22015-06-27 15:44:29 +00001610 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001611 }
1612 ResetImageArtifactIterator(image);
1613 artifact=GetNextImageArtifact(image);
1614 if (artifact != (const char *) NULL)
1615 {
dirk6c316f22015-06-27 15:44:29 +00001616 ssize_t
1617 n;
1618
cristy9e818982014-01-18 14:54:37 +00001619 /*
1620 Display image artifacts.
1621 */
dirk6c316f22015-06-27 15:44:29 +00001622 n=0;
1623 (void) FormatLocaleFile(file," \"artifacts\": {\n");
cristy9e818982014-01-18 14:54:37 +00001624 while (artifact != (const char *) NULL)
1625 {
dirk6c316f22015-06-27 15:44:29 +00001626 if (n++ != 0)
1627 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001628 JSONFormatLocaleFile(file," %s: ",artifact);
cristy9e818982014-01-18 14:54:37 +00001629 value=GetImageArtifact(image,artifact);
Cristydb96d692017-10-29 10:37:57 -04001630 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001631 artifact=GetNextImageArtifact(image);
1632 }
dirk6c316f22015-06-27 15:44:29 +00001633 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001634 }
1635 ResetImageRegistryIterator();
1636 registry=GetNextImageRegistry();
1637 if (registry != (const char *) NULL)
1638 {
dirk6c316f22015-06-27 15:44:29 +00001639 ssize_t
1640 n;
1641
cristy9e818982014-01-18 14:54:37 +00001642 /*
1643 Display image registry.
1644 */
dirk6c316f22015-06-27 15:44:29 +00001645 (void) FormatLocaleFile(file," \"registry\": {\n");
1646 n=0;
cristy9e818982014-01-18 14:54:37 +00001647 while (registry != (const char *) NULL)
1648 {
dirk6c316f22015-06-27 15:44:29 +00001649 if (n++ != 0)
1650 (void) FormatLocaleFile(file,",\n");
Cristydb96d692017-10-29 10:37:57 -04001651 JSONFormatLocaleFile(file," %s: ",registry);
cristy9e818982014-01-18 14:54:37 +00001652 value=(const char *) GetImageRegistry(StringRegistryType,registry,
1653 exception);
Cristydb96d692017-10-29 10:37:57 -04001654 JSONFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001655 registry=GetNextImageRegistry();
1656 }
dirk6c316f22015-06-27 15:44:29 +00001657 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001658 }
dirk6c316f22015-06-27 15:44:29 +00001659 (void) FormatLocaleFile(file," \"tainted\": %s,\n",
1660 image->taint != MagickFalse ? "true" : "false");
cristy151b66d2015-04-15 10:50:31 +00001661 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,"B",MagickPathExtent,
cristyd4618c02015-04-14 23:54:43 +00001662 format);
Cristydb96d692017-10-29 10:37:57 -04001663 JSONFormatLocaleFile(file," \"filesize\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001664 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy151b66d2015-04-15 10:50:31 +00001665 MagickFalse,"B",MagickPathExtent,format);
cristy9e818982014-01-18 14:54:37 +00001666 if (strlen(format) > 1)
1667 format[strlen(format)-1]='\0';
Cristydb96d692017-10-29 10:37:57 -04001668 JSONFormatLocaleFile(file," \"numberPixels\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001669 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristy151b66d2015-04-15 10:50:31 +00001670 elapsed_time+0.5),MagickFalse,"B",MagickPathExtent,format);
Cristydb96d692017-10-29 10:37:57 -04001671 JSONFormatLocaleFile(file," \"pixelsPerSecond\": %s,\n",format);
dirk6c316f22015-06-27 15:44:29 +00001672 (void) FormatLocaleFile(file," \"userTime\": \"%0.3fu\",\n",user_time);
1673 (void) FormatLocaleFile(file," \"elapsedTime\": \"%lu:%02lu.%03lu\",\n",
1674 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(
1675 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-floor(
1676 elapsed_time))));
Cristy519e0052016-10-16 15:28:40 -04001677 url=GetMagickHomeURL();
Cristydb96d692017-10-29 10:37:57 -04001678 JSONFormatLocaleFile(file," \"version\": %s\n",url);
Cristy519e0052016-10-16 15:28:40 -04001679 url=DestroyString(url);
dirk6c316f22015-06-27 15:44:29 +00001680 (void) FormatLocaleFile(file," }\n}\n");
cristy9e818982014-01-18 14:54:37 +00001681 (void) fflush(file);
1682 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1683}
1684
cristy3f07aa32014-01-18 01:16:33 +00001685static MagickBooleanType WriteJSONImage(const ImageInfo *image_info,
1686 Image *image,ExceptionInfo *exception)
1687{
dirk6c316f22015-06-27 15:44:29 +00001688 FILE
1689 *file;
1690
cristy3f07aa32014-01-18 01:16:33 +00001691 MagickBooleanType
1692 status;
1693
1694 MagickOffsetType
1695 scene;
1696
1697 /*
1698 Open output image file.
1699 */
1700 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001701 assert(image_info->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001702 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001703 assert(image->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001704 if (image->debug != MagickFalse)
1705 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1706 status=OpenBlob(image_info,image,WriteBlobMode,exception);
1707 if (status == MagickFalse)
1708 return(status);
dirk6c316f22015-06-27 15:44:29 +00001709 file=GetBlobFileHandle(image);
1710 if (file == (FILE *) NULL)
1711 file=stdout;
cristy3f07aa32014-01-18 01:16:33 +00001712 scene=0;
1713 do
1714 {
Dirk Lemstrac9105bd2017-09-21 13:39:00 +02001715 if (scene == 0)
1716 WriteBlobString(image,"[");
cristy9e818982014-01-18 14:54:37 +00001717 image->magick_columns=image->columns;
1718 image->magick_rows=image->rows;
dirk6c316f22015-06-27 15:44:29 +00001719 EncodeImageAttributes(image,file,exception);
cristy3f07aa32014-01-18 01:16:33 +00001720 if (GetNextImageInList(image) == (Image *) NULL)
dirk6c316f22015-06-27 15:44:29 +00001721 {
1722 WriteBlobString(image,"]");
1723 break;
1724 }
1725 WriteBlobString(image,",\n");
cristy3f07aa32014-01-18 01:16:33 +00001726 image=SyncNextImageInList(image);
1727 status=SetImageProgress(image,SaveImagesTag,scene++,
1728 GetImageListLength(image));
1729 if (status == MagickFalse)
1730 break;
1731 } while (image_info->adjoin != MagickFalse);
1732 (void) CloseBlob(image);
1733 return(MagickTrue);
1734}