blob: 433623048b5d7d8b555b829c2ee6c216aea21b1f [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"
cristy3f07aa32014-01-18 01:16:33 +000077
78/*
79 Forward declarations.
80*/
81static MagickBooleanType
82 WriteJSONImage(const ImageInfo *,Image *,ExceptionInfo *);
83
84/*
85%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
86% %
87% %
88% %
89% R e g i s t e r J S O N I m a g e %
90% %
91% %
92% %
93%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
94%
95% RegisterJSONImage() adds attributes for the JSON image format to
96% the list of supported formats. The attributes include the image format
97% tag, a method to read and/or write the format, whether the format
98% supports the saving of more than one frame to the same file or blob,
99% whether the format supports native in-memory I/O, and a brief
100% description of the format.
101%
102% The format of the RegisterJSONImage method is:
103%
104% size_t RegisterJSONImage(void)
105%
106*/
107ModuleExport size_t RegisterJSONImage(void)
108{
109 MagickInfo
110 *entry;
111
cristye1c94d92015-06-28 12:16:33 +0000112 entry=AcquireMagickInfo("JSON","JSON","The image format and characteristics");
cristy3f07aa32014-01-18 01:16:33 +0000113 entry->encoder=(EncodeImageHandler *) WriteJSONImage;
dirk2aa15e62015-09-14 21:33:54 +0200114 entry->mime_type=ConstantString("application/json");
dirk08e9a112015-02-22 01:51:41 +0000115 entry->flags^=CoderBlobSupportFlag;
cristy3f07aa32014-01-18 01:16:33 +0000116 (void) RegisterMagickInfo(entry);
117 return(MagickImageCoderSignature);
118}
119
120/*
121%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
122% %
123% %
124% %
125% U n r e g i s t e r J S O N I m a g e %
126% %
127% %
128% %
129%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
130%
131% UnregisterJSONImage() removes format registrations made by the
132% JSON module from the list of supported formats.
133%
134% The format of the UnregisterJSONImage method is:
135%
136% UnregisterJSONImage(void)
137%
138*/
139ModuleExport void UnregisterJSONImage(void)
140{
141 (void) UnregisterMagickInfo("JSON");
142}
143
144/*
145%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
146% %
147% %
148% %
149% W r i t e J S O N I m a g e %
150% %
151% %
152% %
153%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
154%
155% WriteJSONImage writes the image attributes in the JSON format.
156%
157% The format of the WriteJSONImage method is:
158%
159% MagickBooleanType WriteJSONImage(const ImageInfo *image_info,
160% Image *image,ExceptionInfo *exception)
161%
162% A description of each parameter follows.
163%
164% o image_info: the image info.
165%
166% o image: The image.
167%
168% o exception: return any errors or warnings in this structure.
169%
170*/
cristy9e818982014-01-18 14:54:37 +0000171
dirk6c316f22015-06-27 15:44:29 +0000172static void JsonFormatLocaleFile(FILE *file,const char *format,const char *value)
173{
174 char
175 *escaped_json;
176
177 register char
178 *q;
179
180 register const char
181 *p;
182
183 size_t
184 length;
185
186 assert(format != (const char *) NULL);
187 if (value == (char *) NULL || *value == '\0')
188 {
189 (void) FormatLocaleFile(file,format,"null");
190 return;
191 }
192 length=strlen(value)+2;
193 /*
194 Find all the chars that need escaping and increase the dest length counter
195 */
196 for (p=value; *p != '\0'; p++)
197 {
198 switch (*p)
199 {
200 case '"':
201 case '\b':
202 case '\f':
203 case '\n':
204 case '\r':
205 case '\t':
206 case '\\':
207 if (~length < 1)
208 return;
209 length++;
210 break;
211 default:
212 break;
213 }
214 }
215 escaped_json=(char *) NULL;
216 if (~length >= (MagickPathExtent-1))
217 escaped_json=(char *) AcquireQuantumMemory(length+MagickPathExtent,
218 sizeof(*escaped_json));
219 if (escaped_json == (char *) NULL)
220 {
221 (void) FormatLocaleFile(file,format,"null");
222 return;
223 }
224 q=escaped_json;
225 *q++='"';
226 for (p=value; *p != '\0'; p++)
227 {
228 switch (*p)
229 {
230 case '"':
231 *q++='\\';
232 *q++=(*p);
233 break;
234 case '\b':
235 *q++='\\';
236 *q++='b';
237 break;
238 case '\f':
239 *q++='\\';
240 *q++='f';
241 break;
242 case '\n':
243 *q++='\\';
244 *q++='n';
245 break;
246 case '\r':
247 *q++='\\';
248 *q++='r';
249 break;
250 case '\t':
251 *q++='\\';
252 *q++='t';
253 break;
254 case '\\':
255 *q++='\\';
256 *q++='\\';
257 break;
258 default:
259 *q++=(*p);
260 break;
261 }
262 }
263 *q++='"';
264 *q='\0';
265 (void) FormatLocaleFile(file,format,escaped_json);
266 (void) DestroyString(escaped_json);
267}
268
cristy9e818982014-01-18 14:54:37 +0000269static ChannelStatistics *GetLocationStatistics(const Image *image,
270 const StatisticType type,ExceptionInfo *exception)
271{
272 ChannelStatistics
273 *channel_statistics;
274
275 register ssize_t
276 i;
277
278 ssize_t
279 y;
280
281 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000282 assert(image->signature == MagickCoreSignature);
cristy9e818982014-01-18 14:54:37 +0000283 if (image->debug != MagickFalse)
284 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
285 channel_statistics=(ChannelStatistics *) AcquireQuantumMemory(
286 MaxPixelChannels+1,sizeof(*channel_statistics));
287 if (channel_statistics == (ChannelStatistics *) NULL)
288 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
289 (void) ResetMagickMemory(channel_statistics,0,(MaxPixelChannels+1)*
290 sizeof(*channel_statistics));
291 for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
292 {
293 switch (type)
294 {
295 case MaximumStatistic:
296 default:
297 {
cristyfe181a72014-02-02 21:17:43 +0000298 channel_statistics[i].maxima=(-MagickMaximumValue);
cristy9e818982014-01-18 14:54:37 +0000299 break;
300 }
301 case MinimumStatistic:
302 {
cristyfe181a72014-02-02 21:17:43 +0000303 channel_statistics[i].minima=MagickMaximumValue;
cristy9e818982014-01-18 14:54:37 +0000304 break;
305 }
306 }
307 }
308 for (y=0; y < (ssize_t) image->rows; y++)
309 {
310 register const Quantum
dirk05d2ff72015-11-18 23:13:43 +0100311 *magick_restrict p;
cristy9e818982014-01-18 14:54:37 +0000312
313 register ssize_t
314 x;
315
316 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
317 if (p == (const Quantum *) NULL)
318 break;
319 for (x=0; x < (ssize_t) image->columns; x++)
320 {
321 register ssize_t
322 i;
323
Cristyd05ae9a2017-08-12 07:55:19 -0400324 if (GetPixelReadMask(image,p) <= (QuantumRange/2))
cristy9e818982014-01-18 14:54:37 +0000325 {
326 p+=GetPixelChannels(image);
327 continue;
328 }
329 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
330 {
Cristy3c296d62017-08-19 20:09:26 -0400331 PixelChannel channel = GetPixelChannelChannel(image,i);
332 PixelTrait traits = GetPixelChannelTraits(image,channel);
cristy9e818982014-01-18 14:54:37 +0000333 if (traits == UndefinedPixelTrait)
334 continue;
335 switch (type)
336 {
337 case MaximumStatistic:
338 default:
339 {
340 if ((double) p[i] > channel_statistics[channel].maxima)
341 channel_statistics[channel].maxima=(double) p[i];
342 break;
343 }
344 case MinimumStatistic:
345 {
346 if ((double) p[i] < channel_statistics[channel].minima)
347 channel_statistics[channel].minima=(double) p[i];
348 break;
349 }
350 }
351 }
352 p+=GetPixelChannels(image);
353 }
354 }
355 return(channel_statistics);
356}
357
358static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
dirk6c316f22015-06-27 15:44:29 +0000359 const char *name,const MagickBooleanType separator,
360 const ChannelFeatures *channel_features)
cristy9e818982014-01-18 14:54:37 +0000361{
362#define PrintFeature(feature) \
363 GetMagickPrecision(),(feature)[0], \
364 GetMagickPrecision(),(feature)[1], \
365 GetMagickPrecision(),(feature)[2], \
366 GetMagickPrecision(),(feature)[3], \
367 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
368
dirk6c316f22015-06-27 15:44:29 +0000369#define FeaturesFormat " \"%s\": {\n" \
370 " \"angularSecondMoment\": {\n" \
371 " \"horizontal\": \"%.*g\",\n" \
372 " \"vertical\": \"%.*g\",\n" \
373 " \"leftDiagonal\": \"%.*g\",\n" \
374 " \"rightDiagonal\": \"%.*g\",\n" \
375 " \"average\": \"%.*g\"\n" \
376 " },\n" \
377 " \"contrast\": {\n" \
378 " \"horizontal\": \"%.*g\",\n" \
379 " \"vertical\": \"%.*g\",\n" \
380 " \"leftDiagonal\": \"%.*g\",\n" \
381 " \"rightDiagonal\": \"%.*g\",\n" \
382 " \"average\": \"%.*g\"\n" \
383 " },\n" \
384 " \"correlation\": {\n" \
385 " \"horizontal\": \"%.*g\",\n" \
386 " \"vertical\": \"%.*g\",\n" \
387 " \"leftDiagonal\": \"%.*g\",\n" \
388 " \"rightDiagonal\": \"%.*g\",\n" \
389 " \"average\": \"%.*g\"\n" \
390 " },\n" \
391 " \"sumOfSquaresVariance\": {\n" \
392 " \"horizontal\": \"%.*g\",\n" \
393 " \"vertical\": \"%.*g\",\n" \
394 " \"leftDiagonal\": \"%.*g\",\n" \
395 " \"rightDiagonal\": \"%.*g\",\n" \
396 " \"average\": \"%.*g\"\n" \
397 " },\n" \
398 " \"inverseDifferenceMoment\": {\n" \
399 " \"horizontal\": \"%.*g\",\n" \
400 " \"vertical\": \"%.*g\",\n" \
401 " \"leftDiagonal\": \"%.*g\",\n" \
402 " \"rightDiagonal\": \"%.*g\",\n" \
403 " \"average\": \"%.*g\"\n" \
404 " },\n" \
405 " \"sumAverage\": {\n" \
406 " \"horizontal\": \"%.*g\",\n" \
407 " \"vertical\": \"%.*g\",\n" \
408 " \"leftDiagonal\": \"%.*g\",\n" \
409 " \"rightDiagonal\": \"%.*g\",\n" \
410 " \"average\": \"%.*g\"\n" \
411 " },\n" \
412 " \"sumVariance\": {\n" \
413 " \"horizontal\": \"%.*g\",\n" \
414 " \"vertical\": \"%.*g\",\n" \
415 " \"leftDiagonal\": \"%.*g\",\n" \
416 " \"rightDiagonal\": \"%.*g\",\n" \
417 " \"average\": \"%.*g\"\n" \
418 " },\n" \
419 " \"sumEntropy\": {\n" \
420 " \"horizontal\": \"%.*g\",\n" \
421 " \"vertical\": \"%.*g\",\n" \
422 " \"leftDiagonal\": \"%.*g\",\n" \
423 " \"rightDiagonal\": \"%.*g\",\n" \
424 " \"average\": \"%.*g\"\n" \
425 " },\n" \
426 " \"entropy\": {\n" \
427 " \"horizontal\": \"%.*g\",\n" \
428 " \"vertical\": \"%.*g\",\n" \
429 " \"leftDiagonal\": \"%.*g\",\n" \
430 " \"rightDiagonal\": \"%.*g\",\n" \
431 " \"average\": \"%.*g\"\n" \
432 " },\n" \
433 " \"differenceVariance\": {\n" \
434 " \"horizontal\": \"%.*g\",\n" \
435 " \"vertical\": \"%.*g\",\n" \
436 " \"leftDiagonal\": \"%.*g\",\n" \
437 " \"rightDiagonal\": \"%.*g\",\n" \
438 " \"average\": \"%.*g\"\n" \
439 " },\n" \
440 " \"differenceEntropy\": {\n" \
441 " \"horizontal\": \"%.*g\",\n" \
442 " \"vertical\": \"%.*g\",\n" \
443 " \"leftDiagonal\": \"%.*g\",\n" \
444 " \"rightDiagonal\": \"%.*g\",\n" \
445 " \"average\": \"%.*g\"\n" \
446 " },\n" \
447 " \"informationMeasureOfCorrelation1\": {\n" \
448 " \"horizontal\": \"%.*g\",\n" \
449 " \"vertical\": \"%.*g\",\n" \
450 " \"leftDiagonal\": \"%.*g\",\n" \
451 " \"rightDiagonal\": \"%.*g\",\n" \
452 " \"average\": \"%.*g\"\n" \
453 " },\n" \
454 " \"informationMeasureOfCorrelation2\": {\n" \
455 " \"horizontal\": \"%.*g\",\n" \
456 " \"vertical\": \"%.*g\",\n" \
457 " \"leftDiagonal\": \"%.*g\",\n" \
458 " \"rightDiagonal\": \"%.*g\",\n" \
459 " \"average\": \"%.*g\"\n" \
460 " },\n" \
461 " \"maximumCorrelationCoefficient\": {\n" \
462 " \"horizontal\": \"%.*g\",\n" \
463 " \"vertical\": \"%.*g\",\n" \
464 " \"leftDiagonal\": \"%.*g\",\n" \
465 " \"rightDiagonal\": \"%.*g\",\n" \
466 " \"average\": \"%.*g\"\n" \
467 " }\n"
cristy9e818982014-01-18 14:54:37 +0000468
469 ssize_t
470 n;
471
472 n=FormatLocaleFile(file,FeaturesFormat,name,
473 PrintFeature(channel_features[channel].angular_second_moment),
474 PrintFeature(channel_features[channel].contrast),
475 PrintFeature(channel_features[channel].correlation),
476 PrintFeature(channel_features[channel].variance_sum_of_squares),
477 PrintFeature(channel_features[channel].inverse_difference_moment),
478 PrintFeature(channel_features[channel].sum_average),
479 PrintFeature(channel_features[channel].sum_variance),
480 PrintFeature(channel_features[channel].sum_entropy),
481 PrintFeature(channel_features[channel].entropy),
482 PrintFeature(channel_features[channel].difference_variance),
483 PrintFeature(channel_features[channel].difference_entropy),
484 PrintFeature(channel_features[channel].measure_of_correlation_1),
485 PrintFeature(channel_features[channel].measure_of_correlation_2),
486 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
dirk6c316f22015-06-27 15:44:29 +0000487 (void) FormatLocaleFile(file," }");
488 if (separator != MagickFalse)
489 (void) FormatLocaleFile(file,",");
490 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000491 return(n);
492}
493
494static ssize_t PrintChannelLocations(FILE *file,const Image *image,
495 const PixelChannel channel,const char *name,const StatisticType type,
dirk6c316f22015-06-27 15:44:29 +0000496 const size_t max_locations,const MagickBooleanType separator,
497 const ChannelStatistics *channel_statistics)
cristy9e818982014-01-18 14:54:37 +0000498{
499 double
500 target;
501
502 ExceptionInfo
503 *exception;
504
505 ssize_t
506 n,
507 y;
508
509 switch (type)
510 {
511 case MaximumStatistic:
512 default:
513 {
514 target=channel_statistics[channel].maxima;
515 break;
516 }
517 case MinimumStatistic:
518 {
519 target=channel_statistics[channel].minima;
520 break;
521 }
522 }
dirk6c316f22015-06-27 15:44:29 +0000523 (void) FormatLocaleFile(file," \"%s\": {\n \"intensity\": "
524 "\"%.*g\",\n",name,GetMagickPrecision(),QuantumScale*target);
cristy9e818982014-01-18 14:54:37 +0000525 exception=AcquireExceptionInfo();
526 n=0;
527 for (y=0; y < (ssize_t) image->rows; y++)
528 {
529 register const Quantum
530 *p;
531
532 ssize_t
533 offset,
534 x;
535
536 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
537 if (p == (const Quantum *) NULL)
538 break;
539 for (x=0; x < (ssize_t) image->columns; x++)
540 {
541 MagickBooleanType
542 match;
543
Cristy3c296d62017-08-19 20:09:26 -0400544 PixelTrait traits = GetPixelChannelTraits(image,channel);
cristy9e818982014-01-18 14:54:37 +0000545 if (traits == UndefinedPixelTrait)
546 continue;
547 offset=GetPixelChannelOffset(image,channel);
cristy3bdd9252014-12-21 20:01:43 +0000548 match=fabs((double) (p[offset]-target)) < 0.5 ? MagickTrue : MagickFalse;
cristy9e818982014-01-18 14:54:37 +0000549 if (match != MagickFalse)
550 {
551 if ((max_locations != 0) && (n >= (ssize_t) max_locations))
552 break;
dirk6c316f22015-06-27 15:44:29 +0000553 if (n != 0)
554 (void) FormatLocaleFile(file,",\n");
555 (void) FormatLocaleFile(file," \"location%.20g\": {\n"
556 " \"x\": %.20g,\n \"y\": %.20g\n"
557 " }",(double) n,(double) x,(double) y);
cristy9e818982014-01-18 14:54:37 +0000558 n++;
559 }
560 p+=GetPixelChannels(image);
561 }
562 if (x < (ssize_t) image->columns)
563 break;
564 }
dirk6c316f22015-06-27 15:44:29 +0000565 (void) FormatLocaleFile(file,"\n }");
566 if (separator != MagickFalse)
567 (void) FormatLocaleFile(file,",");
cristy9e818982014-01-18 14:54:37 +0000568 (void) FormatLocaleFile(file,"\n");
569 return(n);
570}
571
572static ssize_t PrintChannelMoments(FILE *file,const PixelChannel channel,
dirk6c316f22015-06-27 15:44:29 +0000573 const char *name,const MagickBooleanType separator,
574 const ChannelMoments *channel_moments)
cristy9e818982014-01-18 14:54:37 +0000575{
576 register ssize_t
577 i;
578
579 ssize_t
580 n;
581
dirk6c316f22015-06-27 15:44:29 +0000582 n=FormatLocaleFile(file," \"%s\": {\n",name);
583 n+=FormatLocaleFile(file," \"centroid\": {\n "
584 " \"x\": \"%.*g\",\n"
585 " \"y\": \"%.*g\"\n },\n",
cristy9e818982014-01-18 14:54:37 +0000586 GetMagickPrecision(),channel_moments[channel].centroid.x,
587 GetMagickPrecision(),channel_moments[channel].centroid.y);
dirk6c316f22015-06-27 15:44:29 +0000588 n+=FormatLocaleFile(file," \"ellipseSemiMajorMinorAxis\": {\n"
589 " \"x\": \"%.*g\",\n"
590 " \"y\": \"%.*g\"\n },\n",
cristy9e818982014-01-18 14:54:37 +0000591 GetMagickPrecision(),channel_moments[channel].ellipse_axis.x,
592 GetMagickPrecision(),channel_moments[channel].ellipse_axis.y);
dirk6c316f22015-06-27 15:44:29 +0000593 n+=FormatLocaleFile(file," \"ellipseAngle\": \"%.*g\",\n",
cristy9e818982014-01-18 14:54:37 +0000594 GetMagickPrecision(),channel_moments[channel].ellipse_angle);
dirk6c316f22015-06-27 15:44:29 +0000595 n+=FormatLocaleFile(file," \"ellipseEccentricity\": \"%.*g\",\n",
cristy9e818982014-01-18 14:54:37 +0000596 GetMagickPrecision(),channel_moments[channel].ellipse_eccentricity);
dirk6c316f22015-06-27 15:44:29 +0000597 n+=FormatLocaleFile(file," \"ellipseIntensity\": \"%.*g\",\n",
cristy9e818982014-01-18 14:54:37 +0000598 GetMagickPrecision(),channel_moments[channel].ellipse_intensity);
dirk6c316f22015-06-27 15:44:29 +0000599 for (i=0; i < 7; i++)
600 n+=FormatLocaleFile(file," \"I%.20g\": \"%.*g\",\n",i+1.0,
601 GetMagickPrecision(),channel_moments[channel].invariant[i]);
602 n+=FormatLocaleFile(file," \"I%.20g\": \"%.*g\"\n",i+1.0,
603 GetMagickPrecision(),channel_moments[channel].invariant[i]);
604 (void) FormatLocaleFile(file," }");
605 if (separator != MagickFalse)
606 (void) FormatLocaleFile(file,",");
607 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000608 return(n);
609}
610
Cristye6961802016-09-03 11:31:13 -0400611static ssize_t PrintChannelPerceptualHash(Image *image,FILE *file,
cristydc395172014-02-23 01:33:36 +0000612 const ChannelPerceptualHash *channel_phash)
613{
614 register ssize_t
615 i;
616
617 ssize_t
Cristy69a7c2b2016-12-24 11:22:36 -0500618 n = 0;
cristydc395172014-02-23 01:33:36 +0000619
Cristye6961802016-09-03 11:31:13 -0400620 (void) FormatLocaleFile(file," \"colorspaces\": [ ");
621 for (i=0; i < (ssize_t) channel_phash[0].number_colorspaces; i++)
622 {
623 (void) FormatLocaleFile(file,"\"%s\"",CommandOptionToMnemonic(
624 MagickColorspaceOptions,(ssize_t) channel_phash[0].colorspace[i]));
625 if (i < (ssize_t) (channel_phash[0].number_colorspaces-1))
626 (void) FormatLocaleFile(file,", ");
627 }
628 (void) FormatLocaleFile(file,"],\n");
629 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
630 {
631 register ssize_t
632 j;
633
Cristy3c296d62017-08-19 20:09:26 -0400634 PixelChannel channel = GetPixelChannelChannel(image,i);
635 PixelTrait traits = GetPixelChannelTraits(image,channel);
Cristye6961802016-09-03 11:31:13 -0400636 if (traits == UndefinedPixelTrait)
637 continue;
638 n=FormatLocaleFile(file," \"Channel%.20g\": {\n",(double) channel);
639 for (j=0; j < MaximumNumberOfPerceptualHashes; j++)
640 {
641 register ssize_t
642 k;
643
644 n+=FormatLocaleFile(file," \"PH%.20g\": [",(double) j+1);
645 for (k=0; k < (ssize_t) channel_phash[0].number_colorspaces; k++)
646 {
647 n+=FormatLocaleFile(file,"\"%.*g\"",GetMagickPrecision(),
648 channel_phash[channel].phash[k][j]);
649 if (k < (ssize_t) (channel_phash[0].number_colorspaces-1))
650 n+=FormatLocaleFile(file,", ");
651 }
652 n+=FormatLocaleFile(file,"]");
653 if (j < (MaximumNumberOfPerceptualHashes-1))
654 n+=FormatLocaleFile(file,",\n");
655 }
Cristy338f0882016-12-10 12:12:35 -0500656 if (i < (ssize_t) (GetPixelChannels(image)-1))
Cristye6961802016-09-03 11:31:13 -0400657 n+=FormatLocaleFile(file,"\n },\n");
658 }
659 n+=FormatLocaleFile(file,"\n }\n");
cristydc395172014-02-23 01:33:36 +0000660 return(n);
661}
662
cristy9e818982014-01-18 14:54:37 +0000663static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
dirk6c316f22015-06-27 15:44:29 +0000664 const char *name,const double scale,const MagickBooleanType separator,
cristy9e818982014-01-18 14:54:37 +0000665 const ChannelStatistics *channel_statistics)
666{
dirk6c316f22015-06-27 15:44:29 +0000667#define StatisticsFormat " \"%s\": {\n \"min\": \"" QuantumFormat \
668 "\",\n \"max\": \"" QuantumFormat "\",\n" \
669 " \"mean\": \"%g\",\n \"standardDeviation\": " \
670 "\"%g\",\n \"kurtosis\": \"%g\",\n \"skewness\": " \
671 "\"%g\"\n }"
cristy9e818982014-01-18 14:54:37 +0000672
673 ssize_t
674 n;
675
676 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristye1c94d92015-06-28 12:16:33 +0000677 channel_statistics[channel].minima),ClampToQuantum(scale*
678 channel_statistics[channel].maxima),scale*channel_statistics[channel].mean,
679 scale*channel_statistics[channel].standard_deviation,
cristy9e818982014-01-18 14:54:37 +0000680 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
dirk6c316f22015-06-27 15:44:29 +0000681 if (separator != MagickFalse)
cristye1c94d92015-06-28 12:16:33 +0000682 (void) FormatLocaleFile(file,",");
dirk6c316f22015-06-27 15:44:29 +0000683 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000684 return(n);
685}
686
687static MagickBooleanType EncodeImageAttributes(Image *image,FILE *file,
688 ExceptionInfo *exception)
689{
cristy9e818982014-01-18 14:54:37 +0000690 char
cristy151b66d2015-04-15 10:50:31 +0000691 color[MagickPathExtent],
692 format[MagickPathExtent],
693 key[MagickPathExtent];
cristy9e818982014-01-18 14:54:37 +0000694
695 ChannelFeatures
696 *channel_features;
697
698 ChannelMoments
699 *channel_moments;
700
cristydc395172014-02-23 01:33:36 +0000701 ChannelPerceptualHash
702 *channel_phash;
703
cristy9e818982014-01-18 14:54:37 +0000704 ChannelStatistics
705 *channel_statistics;
706
Cristy519e0052016-10-16 15:28:40 -0400707 char
708 *url;
709
cristy9e818982014-01-18 14:54:37 +0000710 ColorspaceType
711 colorspace;
712
713 const char
714 *artifact,
715 *locate,
716 *name,
717 *property,
718 *registry,
719 *value;
720
721 const MagickInfo
722 *magick_info;
723
724 double
725 elapsed_time,
726 user_time;
727
728 ImageType
dirkab4f0bb2015-07-25 11:46:32 +0000729 base_type,
cristy9e818982014-01-18 14:54:37 +0000730 type;
731
732 MagickBooleanType
733 ping;
734
735 register const Quantum
736 *p;
737
738 register ssize_t
739 i,
740 x;
741
742 size_t
dirk6c316f22015-06-27 15:44:29 +0000743 depth,
cristy9e818982014-01-18 14:54:37 +0000744 distance,
745 scale;
746
747 ssize_t
748 y;
749
750 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000751 assert(image->signature == MagickCoreSignature);
cristy9e818982014-01-18 14:54:37 +0000752 if (image->debug != MagickFalse)
753 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristya10f7442014-01-19 18:32:15 +0000754 *format='\0';
755 elapsed_time=GetElapsedTime(&image->timer);
756 user_time=GetUserTime(&image->timer);
757 GetTimerInfo(&image->timer);
758 p=GetVirtualPixels(image,0,0,1,1,exception);
759 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristye1c94d92015-06-28 12:16:33 +0000760 (void) ping;
cristya10f7442014-01-19 18:32:15 +0000761 (void) SignatureImage(image,exception);
dirk6c316f22015-06-27 15:44:29 +0000762 JsonFormatLocaleFile(file,"{\n \"image\": {\n \"name\": %s,\n",
763 image->filename);
cristya10f7442014-01-19 18:32:15 +0000764 if (*image->magick_filename != '\0')
765 if (LocaleCompare(image->magick_filename,image->filename) != 0)
766 {
767 char
cristy151b66d2015-04-15 10:50:31 +0000768 filename[MagickPathExtent];
cristya10f7442014-01-19 18:32:15 +0000769
770 GetPathComponent(image->magick_filename,TailPath,filename);
dirk6c316f22015-06-27 15:44:29 +0000771 JsonFormatLocaleFile(file," \"baseName\": %s,\n",filename);
cristya10f7442014-01-19 18:32:15 +0000772 }
dirk6c316f22015-06-27 15:44:29 +0000773 JsonFormatLocaleFile(file," \"format\": %s,\n",image->magick);
cristya10f7442014-01-19 18:32:15 +0000774 magick_info=GetMagickInfo(image->magick,exception);
dirk6c316f22015-06-27 15:44:29 +0000775 if ((magick_info != (const MagickInfo *) NULL) &&
776 (GetMagickDescription(magick_info) != (const char *) NULL))
777 JsonFormatLocaleFile(file," \"formatDescription\": %s,\n",
778 image->magick);
cristy12bcd3d2015-01-28 00:54:23 +0000779 if ((magick_info != (const MagickInfo *) NULL) &&
cristya10f7442014-01-19 18:32:15 +0000780 (GetMagickMimeType(magick_info) != (const char *) NULL))
dirk6c316f22015-06-27 15:44:29 +0000781 JsonFormatLocaleFile(file," \"mimeType\": %s,\n",GetMagickMimeType(
cristya10f7442014-01-19 18:32:15 +0000782 magick_info));
dirk6c316f22015-06-27 15:44:29 +0000783 JsonFormatLocaleFile(file," \"class\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +0000784 MagickClassOptions,(ssize_t) image->storage_class));
dirk6c316f22015-06-27 15:44:29 +0000785 (void) FormatLocaleFile(file," \"geometry\": {\n"
786 " \"width\": %.20g,\n \"height\": %.20g,\n"
787 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
788 (double) image->columns,(double) image->rows,(double) image->tile_offset.x,
789 (double) image->tile_offset.y);
cristya10f7442014-01-19 18:32:15 +0000790 if ((image->magick_columns != 0) || (image->magick_rows != 0))
791 if ((image->magick_columns != image->columns) ||
792 (image->magick_rows != image->rows))
dirk6c316f22015-06-27 15:44:29 +0000793 (void) FormatLocaleFile(file," \"baseGeometry\": {\n"
794 " \"width\": %.20g,\n \"height\": %.20g\n },\n",
795 (double) image->magick_columns,(double) image->magick_rows);
cristya10f7442014-01-19 18:32:15 +0000796 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
797 {
dirk6c316f22015-06-27 15:44:29 +0000798 (void) FormatLocaleFile(file," \"resolution\": {\n"
799 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
800 image->resolution.x,image->resolution.y);
801 (void) FormatLocaleFile(file," \"printSize\": {\n"
802 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
cristya10f7442014-01-19 18:32:15 +0000803 image->columns/image->resolution.x,(double) image->rows/
804 image->resolution.y);
805 }
dirk6c316f22015-06-27 15:44:29 +0000806 JsonFormatLocaleFile(file," \"units\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +0000807 MagickResolutionOptions,(ssize_t) image->units));
dirkab4f0bb2015-07-25 11:46:32 +0000808 colorspace=image->colorspace;
809 type=IdentifyImageType(image,exception);
810 if ((type == BilevelType) || (type == GrayscaleType) ||
811 (type == GrayscaleAlphaType))
812 colorspace=GRAYColorspace;
dirk6c316f22015-06-27 15:44:29 +0000813 JsonFormatLocaleFile(file," \"type\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +0000814 MagickTypeOptions,(ssize_t) type));
dirkab4f0bb2015-07-25 11:46:32 +0000815 base_type=GetImageType(image);
816 if (type != base_type)
dirk6c316f22015-06-27 15:44:29 +0000817 JsonFormatLocaleFile(file," \"baseType\": %s,\n",
dirkab4f0bb2015-07-25 11:46:32 +0000818 CommandOptionToMnemonic(MagickTypeOptions,(ssize_t) base_type));
dirk6c316f22015-06-27 15:44:29 +0000819 JsonFormatLocaleFile(file," \"endianess\": %s,\n",
820 CommandOptionToMnemonic(MagickEndianOptions,(ssize_t) image->endian));
cristy9e818982014-01-18 14:54:37 +0000821 locate=GetImageArtifact(image,"identify:locate");
cristy3e583dd2014-01-19 14:11:51 +0000822 if (locate == (const char *) NULL)
823 locate=GetImageArtifact(image,"json:locate");
cristy9e818982014-01-18 14:54:37 +0000824 if (locate != (const char *) NULL)
825 {
826 const char
827 *limit;
828
829 size_t
830 max_locations;
831
832 StatisticType
833 type;
834
835 /*
836 Display minimum, maximum, or mean pixel locations.
837 */
838 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
839 MagickFalse,locate);
840 limit=GetImageArtifact(image,"identify:limit");
cristy3e583dd2014-01-19 14:11:51 +0000841 if (limit == (const char *) NULL)
842 limit=GetImageArtifact(image,"json:limit");
cristy9e818982014-01-18 14:54:37 +0000843 max_locations=0;
844 if (limit != (const char *) NULL)
845 max_locations=StringToUnsignedLong(limit);
846 channel_statistics=GetLocationStatistics(image,type,exception);
847 if (channel_statistics == (ChannelStatistics *) NULL)
848 return(MagickFalse);
dirk6c316f22015-06-27 15:44:29 +0000849 (void) FormatLocaleFile(file," \"channel%s\": {\n",locate);
850 if (image->alpha_trait != UndefinedPixelTrait)
851 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
852 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000853 switch (colorspace)
854 {
855 case RGBColorspace:
856 default:
857 {
858 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
dirk6c316f22015-06-27 15:44:29 +0000859 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000860 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +0000861 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000862 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
dirk6c316f22015-06-27 15:44:29 +0000863 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000864 break;
865 }
866 case CMYKColorspace:
867 {
868 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
dirk6c316f22015-06-27 15:44:29 +0000869 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000870 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +0000871 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000872 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +0000873 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000874 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +0000875 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000876 break;
877 }
878 case GRAYColorspace:
879 {
880 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
dirk6c316f22015-06-27 15:44:29 +0000881 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000882 break;
883 }
884 }
dirk6c316f22015-06-27 15:44:29 +0000885 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +0000886 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
887 channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000888 }
cristy9e818982014-01-18 14:54:37 +0000889 /*
890 Detail channel depth and extrema.
891 */
dirk6c316f22015-06-27 15:44:29 +0000892 JsonFormatLocaleFile(file," \"colorspace\": %s,\n",
893 CommandOptionToMnemonic(MagickColorspaceOptions,(ssize_t)
894 image->colorspace));
cristy9e818982014-01-18 14:54:37 +0000895 channel_statistics=(ChannelStatistics *) NULL;
896 channel_moments=(ChannelMoments *) NULL;
cristydc395172014-02-23 01:33:36 +0000897 channel_phash=(ChannelPerceptualHash *) NULL;
cristy9e818982014-01-18 14:54:37 +0000898 channel_features=(ChannelFeatures *) NULL;
cristy9e818982014-01-18 14:54:37 +0000899 scale=1;
dirk6c316f22015-06-27 15:44:29 +0000900 channel_statistics=GetImageStatistics(image,exception);
901 if (channel_statistics == (ChannelStatistics *) NULL)
902 return(MagickFalse);
903 artifact=GetImageArtifact(image,"identify:moments");
904 if (artifact == (const char *) NULL)
905 artifact=GetImageArtifact(image,"json:moments");
906 if (artifact != (const char *) NULL)
cristy9e818982014-01-18 14:54:37 +0000907 {
dirk6c316f22015-06-27 15:44:29 +0000908 channel_moments=GetImageMoments(image,exception);
909 channel_phash=GetImagePerceptualHash(image,exception);
cristy9e818982014-01-18 14:54:37 +0000910 }
dirk6c316f22015-06-27 15:44:29 +0000911 artifact=GetImageArtifact(image,"identify:features");
912 if (artifact == (const char *) NULL)
913 artifact=GetImageArtifact(image,"json:features");
914 if (artifact != (const char *) NULL)
915 {
916 distance=StringToUnsignedLong(artifact);
917 channel_features=GetImageFeatures(image,distance,exception);
918 }
919 depth=GetImageDepth(image,exception);
920 (void) FormatLocaleFile(file," \"depth\": %.20g,\n",(double) depth);
921 (void) FormatLocaleFile(file," \"baseDepth\": %.20g,\n",(double)
922 image->depth);
923 (void) FormatLocaleFile(file," \"channelDepth\": {\n");
dirk6c316f22015-06-27 15:44:29 +0000924 if (image->alpha_trait != UndefinedPixelTrait)
925 (void) FormatLocaleFile(file," \"alpha\": %.20g,\n",(double)
926 channel_statistics[AlphaPixelChannel].depth);
927 switch (colorspace)
928 {
929 case RGBColorspace:
930 default:
931 {
932 (void) FormatLocaleFile(file," \"red\": %.20g,\n",(double)
933 channel_statistics[RedChannel].depth);
934 (void) FormatLocaleFile(file," \"green\": %.20g,\n",(double)
935 channel_statistics[GreenChannel].depth);
936 (void) FormatLocaleFile(file," \"blue\": %.20g\n",(double)
937 channel_statistics[BlueChannel].depth);
938 break;
939 }
940 case CMYKColorspace:
941 {
942 (void) FormatLocaleFile(file," \"cyan\": %.20g,\n",(double)
943 channel_statistics[CyanChannel].depth);
944 (void) FormatLocaleFile(file," \"magenta\": %.20g,\n",(double)
945 channel_statistics[MagentaChannel].depth);
946 (void) FormatLocaleFile(file," \"yellow\": %.20g,\n",(double)
947 channel_statistics[YellowChannel].depth);
948 (void) FormatLocaleFile(file," \"black\": %.20g\n",(double)
949 channel_statistics[BlackChannel].depth);
950 break;
951 }
952 case GRAYColorspace:
953 {
954 (void) FormatLocaleFile(file," \"gray\": %.20g\n",(double)
955 channel_statistics[GrayChannel].depth);
956 break;
957 }
958 }
959 (void) FormatLocaleFile(file," },\n");
960 scale=1;
961 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
962 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
963 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy9e818982014-01-18 14:54:37 +0000964 if (channel_statistics != (ChannelStatistics *) NULL)
965 {
dirk6c316f22015-06-27 15:44:29 +0000966 (void) FormatLocaleFile(file," \"pixels\": %.20g,\n",
cristy9e818982014-01-18 14:54:37 +0000967 channel_statistics[CompositePixelChannel].area);
dirk6c316f22015-06-27 15:44:29 +0000968 if (colorspace != GRAYColorspace)
969 {
970 (void) FormatLocaleFile(file," \"imageStatistics\": {\n");
971 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
972 "Overall",1.0/scale,MagickFalse,channel_statistics);
973 (void) FormatLocaleFile(file," },\n");
974 }
975 (void) FormatLocaleFile(file," \"channelStatistics\": {\n");
976 if (image->alpha_trait != UndefinedPixelTrait)
977 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/scale,
978 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000979 switch (colorspace)
980 {
981 case RGBColorspace:
982 default:
983 {
dirk6c316f22015-06-27 15:44:29 +0000984 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/scale,
985 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000986 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
dirk6c316f22015-06-27 15:44:29 +0000987 scale,MagickTrue,channel_statistics);
988 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/scale,
989 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000990 break;
991 }
992 case CMYKColorspace:
993 {
dirk6c316f22015-06-27 15:44:29 +0000994 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/scale,
995 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000996 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
dirk6c316f22015-06-27 15:44:29 +0000997 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000998 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
dirk6c316f22015-06-27 15:44:29 +0000999 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001000 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
dirk6c316f22015-06-27 15:44:29 +00001001 scale,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001002 break;
1003 }
1004 case GRAYColorspace:
1005 {
dirk6c316f22015-06-27 15:44:29 +00001006 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/scale,
1007 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +00001008 break;
1009 }
1010 }
dirk6c316f22015-06-27 15:44:29 +00001011 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001012 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
1013 channel_statistics);
1014 }
1015 if (channel_moments != (ChannelMoments *) NULL)
1016 {
dirk6c316f22015-06-27 15:44:29 +00001017 (void) FormatLocaleFile(file," \"channelMoments\": {\n");
1018 if (image->alpha_trait != UndefinedPixelTrait)
1019 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",MagickTrue,
1020 channel_moments);
cristy9e818982014-01-18 14:54:37 +00001021 switch (colorspace)
1022 {
1023 case RGBColorspace:
1024 default:
1025 {
dirk6c316f22015-06-27 15:44:29 +00001026 (void) PrintChannelMoments(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001027 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001028 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001029 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001030 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001031 channel_moments);
1032 break;
1033 }
1034 case CMYKColorspace:
1035 {
dirk6c316f22015-06-27 15:44:29 +00001036 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001037 channel_moments);
1038 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001039 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001040 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001041 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001042 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001043 MagickFalse,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001044 break;
1045 }
1046 case GRAYColorspace:
1047 {
dirk6c316f22015-06-27 15:44:29 +00001048 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001049 channel_moments);
1050 break;
1051 }
1052 }
dirk6c316f22015-06-27 15:44:29 +00001053 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001054 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
1055 channel_moments);
1056 }
cristydc395172014-02-23 01:33:36 +00001057 if (channel_phash != (ChannelPerceptualHash *) NULL)
1058 {
1059 (void) FormatLocaleFile(file," \"channelPerceptualHash\": {\n");
Cristye6961802016-09-03 11:31:13 -04001060 (void) PrintChannelPerceptualHash(image,file,channel_phash);
cristydc395172014-02-23 01:33:36 +00001061 (void) FormatLocaleFile(file," },\n");
1062 channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory(
1063 channel_phash);
1064 }
cristy9e818982014-01-18 14:54:37 +00001065 if (channel_features != (ChannelFeatures *) NULL)
1066 {
dirk6c316f22015-06-27 15:44:29 +00001067 (void) FormatLocaleFile(file," \"channelFeatures\": {\n");
1068 if (image->alpha_trait != UndefinedPixelTrait)
1069 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",MagickTrue,
1070 channel_features);
cristy9e818982014-01-18 14:54:37 +00001071 switch (colorspace)
1072 {
1073 case RGBColorspace:
1074 default:
1075 {
dirk6c316f22015-06-27 15:44:29 +00001076 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001077 channel_features);
1078 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001079 MagickTrue,channel_features);
1080 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001081 channel_features);
1082 break;
1083 }
1084 case CMYKColorspace:
1085 {
dirk6c316f22015-06-27 15:44:29 +00001086 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001087 channel_features);
1088 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001089 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001090 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001091 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001092 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001093 MagickFalse,channel_features);
cristy9e818982014-01-18 14:54:37 +00001094 break;
1095 }
1096 case GRAYColorspace:
1097 {
dirk6c316f22015-06-27 15:44:29 +00001098 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001099 channel_features);
1100 break;
1101 }
1102 }
dirk6c316f22015-06-27 15:44:29 +00001103 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001104 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
1105 channel_features);
1106 }
dirk6c316f22015-06-27 15:44:29 +00001107 if (image->colorspace == CMYKColorspace)
1108 (void) FormatLocaleFile(file," \"totalInkDensity\": \"%.*g%%\",\n",
cristye1c94d92015-06-28 12:16:33 +00001109 GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
1110 (double) QuantumRange);
dirk6c316f22015-06-27 15:44:29 +00001111 x=0;
1112 if (image->alpha_trait != UndefinedPixelTrait)
1113 {
1114 register const Quantum
1115 *p;
1116
1117 p=(const Quantum *) NULL;
1118 for (y=0; y < (ssize_t) image->rows; y++)
cristy9e818982014-01-18 14:54:37 +00001119 {
dirk6c316f22015-06-27 15:44:29 +00001120 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
1121 if (p == (const Quantum *) NULL)
1122 break;
1123 for (x=0; x < (ssize_t) image->columns; x++)
cristy9e818982014-01-18 14:54:37 +00001124 {
dirk6c316f22015-06-27 15:44:29 +00001125 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy9e818982014-01-18 14:54:37 +00001126 break;
dirk6c316f22015-06-27 15:44:29 +00001127 p+=GetPixelChannels(image);
cristy9e818982014-01-18 14:54:37 +00001128 }
dirk6c316f22015-06-27 15:44:29 +00001129 if (x < (ssize_t) image->columns)
1130 break;
cristy9e818982014-01-18 14:54:37 +00001131 }
dirk6c316f22015-06-27 15:44:29 +00001132 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
1133 {
1134 PixelInfo
1135 pixel;
1136
1137 GetPixelInfo(image,&pixel);
1138 GetPixelInfoPixel(image,p,&pixel);
1139 GetColorTuple(&pixel,MagickTrue,color);
1140 (void) FormatLocaleFile(file," \"alpha\": \"%s\",\n",color);
1141 }
1142 }
cristy9e818982014-01-18 14:54:37 +00001143 if (image->storage_class == PseudoClass)
1144 {
dirk6c316f22015-06-27 15:44:29 +00001145 register PixelInfo
dirk05d2ff72015-11-18 23:13:43 +01001146 *magick_restrict p;
cristy9e818982014-01-18 14:54:37 +00001147
dirk6c316f22015-06-27 15:44:29 +00001148 (void) FormatLocaleFile(file," \"colormapEntries\": %.20g,\n",
1149 (double) image->colors);
1150 (void) FormatLocaleFile(file," \"colormap\": [\n ");
1151 p=image->colormap;
1152 for (i=0; i < (ssize_t) image->colors; i++)
1153 {
1154 GetColorTuple(p,MagickTrue,color);
1155 (void) FormatLocaleFile(file,"\"%s\"",color);
1156 if (i < (ssize_t) (image->colors-1))
1157 (void) FormatLocaleFile(file,",");
1158 if (((i+1) % 5) == 0)
1159 (void) FormatLocaleFile(file,"\n ");
1160 p++;
1161 }
1162 (void) FormatLocaleFile(file,"\n ],\n");
cristy9e818982014-01-18 14:54:37 +00001163 }
1164 if (image->error.mean_error_per_pixel != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001165 (void) FormatLocaleFile(file," \"meanErrorPerPixel\": \"%g\",\n",
cristy9e818982014-01-18 14:54:37 +00001166 image->error.mean_error_per_pixel);
1167 if (image->error.normalized_mean_error != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001168 (void) FormatLocaleFile(file," \"normalizedMeanError\": \"%g\",\n",
cristy9e818982014-01-18 14:54:37 +00001169 image->error.normalized_mean_error);
1170 if (image->error.normalized_maximum_error != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001171 (void) FormatLocaleFile(file," \"normalizedMaximumError\": \"%g\",\n",
cristy9e818982014-01-18 14:54:37 +00001172 image->error.normalized_maximum_error);
dirk6c316f22015-06-27 15:44:29 +00001173 JsonFormatLocaleFile(file," \"renderingIntent\": %s,\n",
cristy9e818982014-01-18 14:54:37 +00001174 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1175 image->rendering_intent));
1176 if (image->gamma != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001177 (void) FormatLocaleFile(file," \"gamma\": %g,\n",image->gamma);
cristy9e818982014-01-18 14:54:37 +00001178 if ((image->chromaticity.red_primary.x != 0.0) ||
1179 (image->chromaticity.green_primary.x != 0.0) ||
1180 (image->chromaticity.blue_primary.x != 0.0) ||
1181 (image->chromaticity.white_point.x != 0.0))
1182 {
1183 /*
1184 Display image chromaticity.
1185 */
dirk6c316f22015-06-27 15:44:29 +00001186 (void) FormatLocaleFile(file," \"chromaticity\": {\n");
1187 (void) FormatLocaleFile(file," \"redPrimary\": {\n"
1188 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001189 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001190 (void) FormatLocaleFile(file," \"greenPrimary\": {\n"
1191 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001192 image->chromaticity.green_primary.x,
1193 image->chromaticity.green_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001194 (void) FormatLocaleFile(file," \"bluePrimary\": {\n"
1195 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001196 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001197 (void) FormatLocaleFile(file," \"whitePrimary\": {\n"
1198 " \"x\": %g,\n \"y\": %g\n }\n",
cristy9e818982014-01-18 14:54:37 +00001199 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
dirk6c316f22015-06-27 15:44:29 +00001200 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001201 }
1202 if ((image->extract_info.width*image->extract_info.height) != 0)
dirk6c316f22015-06-27 15:44:29 +00001203 (void) FormatLocaleFile(file," \"tileGeometry\": {\n"
1204 " \"width\": %.20g,\n \"height\": %.20g,\n"
1205 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001206 (double) image->extract_info.width,(double) image->extract_info.height,
1207 (double) image->extract_info.x,(double) image->extract_info.y);
Cristy18b27502017-02-16 07:29:19 -05001208 GetColorTuple(&image->matte_color,MagickTrue,color);
1209 (void) FormatLocaleFile(file," \"matteColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001210 GetColorTuple(&image->background_color,MagickTrue,color);
1211 (void) FormatLocaleFile(file," \"backgroundColor\": \"%s\",\n",color);
1212 GetColorTuple(&image->border_color,MagickTrue,color);
1213 (void) FormatLocaleFile(file," \"borderColor\": \"%s\",\n",color);
dirk6c316f22015-06-27 15:44:29 +00001214 GetColorTuple(&image->transparent_color,MagickTrue,color);
1215 (void) FormatLocaleFile(file," \"transparentColor\": \"%s\",\n",color);
1216 JsonFormatLocaleFile(file," \"interlace\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001217 MagickInterlaceOptions,(ssize_t) image->interlace));
dirk6c316f22015-06-27 15:44:29 +00001218 JsonFormatLocaleFile(file," \"intensity\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001219 MagickPixelIntensityOptions,(ssize_t) image->intensity));
dirk6c316f22015-06-27 15:44:29 +00001220 JsonFormatLocaleFile(file," \"compose\": %s,\n",
1221 CommandOptionToMnemonic(MagickComposeOptions,(ssize_t) image->compose));
cristy9e818982014-01-18 14:54:37 +00001222 if ((image->page.width != 0) || (image->page.height != 0) ||
1223 (image->page.x != 0) || (image->page.y != 0))
dirk6c316f22015-06-27 15:44:29 +00001224 (void) FormatLocaleFile(file," \"pageGeometry\": {\n"
1225 " \"width\": %.20g,\n \"height\": %.20g,\n"
1226 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
1227 (double) image->page.width,(double) image->page.height,
1228 (double) image->page.x,(double) image->page.y);
cristy9e818982014-01-18 14:54:37 +00001229 if ((image->page.x != 0) || (image->page.y != 0))
dirk6c316f22015-06-27 15:44:29 +00001230 (void) FormatLocaleFile(file," \"originGeometry\": %+.20g%+.20g\n",
1231 (double) image->page.x,(double) image->page.y);
1232 JsonFormatLocaleFile(file," \"dispose\": %s,\n",
1233 CommandOptionToMnemonic(MagickDisposeOptions,(ssize_t) image->dispose));
cristy9e818982014-01-18 14:54:37 +00001234 if (image->delay != 0)
dirk6c316f22015-06-27 15:44:29 +00001235 (void) FormatLocaleFile(file," \"delay\": \"%.20gx%.20g\"\n",
1236 (double) image->delay,(double) image->ticks_per_second);
cristy9e818982014-01-18 14:54:37 +00001237 if (image->iterations != 1)
dirk6c316f22015-06-27 15:44:29 +00001238 (void) FormatLocaleFile(file," \"iterations\": %.20g,\n",(double)
cristy9e818982014-01-18 14:54:37 +00001239 image->iterations);
1240 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
dirk6c316f22015-06-27 15:44:29 +00001241 (void) FormatLocaleFile(file," \"scene\": %.20g\n \"scenes\": "
1242 "%.20g\n",(double) image->scene,(double) GetImageListLength(image));
cristy9e818982014-01-18 14:54:37 +00001243 else
1244 if (image->scene != 0)
dirk6c316f22015-06-27 15:44:29 +00001245 (void) FormatLocaleFile(file," \"scene\": %.20g,\n",(double)
1246 image->scene);
1247 JsonFormatLocaleFile(file," \"compression\": %s,\n",
1248 CommandOptionToMnemonic(MagickCompressOptions,(ssize_t)
1249 image->compression));
cristy9e818982014-01-18 14:54:37 +00001250 if (image->quality != UndefinedCompressionQuality)
dirk6c316f22015-06-27 15:44:29 +00001251 (void) FormatLocaleFile(file," \"quality\": %.20g,\n",(double)
1252 image->quality);
1253 JsonFormatLocaleFile(file," \"orientation\": %s,\n",
1254 CommandOptionToMnemonic(MagickOrientationOptions,(ssize_t)
1255 image->orientation));
cristy9e818982014-01-18 14:54:37 +00001256 if (image->montage != (char *) NULL)
dirk6c316f22015-06-27 15:44:29 +00001257 JsonFormatLocaleFile(file," \"montage\": \"%s\",\n",image->montage);
cristy9e818982014-01-18 14:54:37 +00001258 if (image->directory != (char *) NULL)
1259 {
1260 Image
1261 *tile;
1262
1263 ImageInfo
1264 *image_info;
1265
1266 register char
1267 *p,
1268 *q;
1269
1270 WarningHandler
1271 handler;
1272
1273 /*
1274 Display visual image directory.
1275 */
1276 image_info=AcquireImageInfo();
1277 (void) CloneString(&image_info->size,"64x64");
dirk6c316f22015-06-27 15:44:29 +00001278 (void) FormatLocaleFile(file," \"montageDirectory\": [");
1279 p=image->directory;
1280 while (*p != '\0')
cristy9e818982014-01-18 14:54:37 +00001281 {
1282 q=p;
1283 while ((*q != '\n') && (*q != '\0'))
1284 q++;
1285 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
dirk6c316f22015-06-27 15:44:29 +00001286 p=q+1;
1287 JsonFormatLocaleFile(file,"{\n \"name\": %s",
1288 image_info->filename);
cristy9e818982014-01-18 14:54:37 +00001289 handler=SetWarningHandler((WarningHandler) NULL);
1290 tile=ReadImage(image_info,exception);
1291 (void) SetWarningHandler(handler);
1292 if (tile == (Image *) NULL)
1293 {
dirk6c316f22015-06-27 15:44:29 +00001294 (void) FormatLocaleFile(file," }");
cristy9e818982014-01-18 14:54:37 +00001295 continue;
1296 }
dirk6c316f22015-06-27 15:44:29 +00001297 (void) FormatLocaleFile(file,",\n \"info\": \"%.20gx%.20g %s\"",
1298 (double) tile->magick_columns,(double) tile->magick_rows,
1299 tile->magick);
cristy9e818982014-01-18 14:54:37 +00001300 (void) SignatureImage(tile,exception);
1301 ResetImagePropertyIterator(tile);
1302 property=GetNextImageProperty(tile);
1303 while (property != (const char *) NULL)
1304 {
dirk6c316f22015-06-27 15:44:29 +00001305 JsonFormatLocaleFile(file,",\n %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001306 value=GetImageProperty(tile,property,exception);
dirk6c316f22015-06-27 15:44:29 +00001307 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001308 property=GetNextImageProperty(tile);
1309 }
1310 tile=DestroyImage(tile);
dirk6c316f22015-06-27 15:44:29 +00001311 if (*p != '\0')
1312 (void) FormatLocaleFile(file,"\n },");
1313 else
1314 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001315 }
dirk6c316f22015-06-27 15:44:29 +00001316 (void) FormatLocaleFile(file,"],\n");
cristy9e818982014-01-18 14:54:37 +00001317 image_info=DestroyImageInfo(image_info);
1318 }
1319 (void) GetImageProperty(image,"exif:*",exception);
cristy55166322014-01-23 01:53:24 +00001320 (void) GetImageProperty(image,"icc:*",exception);
1321 (void) GetImageProperty(image,"iptc:*",exception);
1322 (void) GetImageProperty(image,"xmp:*",exception);
cristy9e818982014-01-18 14:54:37 +00001323 ResetImagePropertyIterator(image);
1324 property=GetNextImageProperty(image);
1325 if (property != (const char *) NULL)
1326 {
dirk6c316f22015-06-27 15:44:29 +00001327 size_t
1328 n;
1329
cristy9e818982014-01-18 14:54:37 +00001330 /*
1331 Display image properties.
1332 */
dirk6c316f22015-06-27 15:44:29 +00001333 n=0;
1334 (void) FormatLocaleFile(file," \"properties\": {\n");
cristy9e818982014-01-18 14:54:37 +00001335 while (property != (const char *) NULL)
1336 {
dirk6c316f22015-06-27 15:44:29 +00001337 if (n++ != 0)
1338 (void) FormatLocaleFile(file,",\n");
1339 JsonFormatLocaleFile(file," %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001340 value=GetImageProperty(image,property,exception);
dirk6c316f22015-06-27 15:44:29 +00001341 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001342 property=GetNextImageProperty(image);
1343 }
dirk6c316f22015-06-27 15:44:29 +00001344 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001345 }
cristy151b66d2015-04-15 10:50:31 +00001346 (void) FormatLocaleString(key,MagickPathExtent,"8BIM:1999,2998:#1");
cristy9e818982014-01-18 14:54:37 +00001347 value=GetImageProperty(image,key,exception);
1348 if (value != (const char *) NULL)
1349 {
1350 /*
1351 Display clipping path.
1352 */
dirk6c316f22015-06-27 15:44:29 +00001353 (void) FormatLocaleFile(file," \"clipping path\": {\n");
1354 JsonFormatLocaleFile(file,"%s\n",value);
1355 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001356 }
1357 ResetImageProfileIterator(image);
1358 name=GetNextImageProfile(image);
1359 if (name != (char *) NULL)
1360 {
1361 const StringInfo
1362 *profile;
1363
dirk6c316f22015-06-27 15:44:29 +00001364 size_t
1365 n;
1366
cristy9e818982014-01-18 14:54:37 +00001367 /*
1368 Identify image profiles.
1369 */
dirk6c316f22015-06-27 15:44:29 +00001370 n=0;
1371 (void) FormatLocaleFile(file," \"profiles\": {\n");
cristy9e818982014-01-18 14:54:37 +00001372 while (name != (char *) NULL)
1373 {
1374 profile=GetImageProfile(image,name);
1375 if (profile == (StringInfo *) NULL)
1376 continue;
dirk6c316f22015-06-27 15:44:29 +00001377 if (n++ != 0)
1378 (void) FormatLocaleFile(file,",\n");
1379 JsonFormatLocaleFile(file," %s: {\n",name);
cristy9e818982014-01-18 14:54:37 +00001380 if (LocaleCompare(name,"iptc") == 0)
1381 {
1382 char
1383 *attribute,
1384 **attribute_list;
1385
1386 const char
1387 *tag;
1388
1389 long
1390 dataset,
1391 record,
1392 sentinel;
1393
1394 register ssize_t
1395 j;
1396
1397 size_t
1398 length,
1399 profile_length;
1400
1401 profile_length=GetStringInfoLength(profile);
1402 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
1403 {
1404 length=1;
1405 sentinel=GetStringInfoDatum(profile)[i++];
1406 if (sentinel != 0x1c)
1407 continue;
1408 dataset=GetStringInfoDatum(profile)[i++];
1409 record=GetStringInfoDatum(profile)[i++];
1410 switch (record)
1411 {
1412 case 5: tag="Image Name"; break;
1413 case 7: tag="Edit Status"; break;
1414 case 10: tag="Priority"; break;
1415 case 15: tag="Category"; break;
1416 case 20: tag="Supplemental Category"; break;
1417 case 22: tag="Fixture Identifier"; break;
1418 case 25: tag="Keyword"; break;
1419 case 30: tag="Release Date"; break;
1420 case 35: tag="Release Time"; break;
1421 case 40: tag="Special Instructions"; break;
1422 case 45: tag="Reference Service"; break;
1423 case 47: tag="Reference Date"; break;
1424 case 50: tag="Reference Number"; break;
1425 case 55: tag="Created Date"; break;
1426 case 60: tag="Created Time"; break;
1427 case 65: tag="Originating Program"; break;
1428 case 70: tag="Program Version"; break;
1429 case 75: tag="Object Cycle"; break;
1430 case 80: tag="Byline"; break;
1431 case 85: tag="Byline Title"; break;
1432 case 90: tag="City"; break;
cristya0b0ad32015-07-02 12:33:54 +00001433 case 92: tag="Sub-Location"; break;
cristy9e818982014-01-18 14:54:37 +00001434 case 95: tag="Province State"; break;
1435 case 100: tag="Country Code"; break;
1436 case 101: tag="Country"; break;
1437 case 103: tag="Original Transmission Reference"; break;
1438 case 105: tag="Headline"; break;
1439 case 110: tag="Credit"; break;
1440 case 115: tag="Src"; break;
1441 case 116: tag="Copyright String"; break;
1442 case 120: tag="Caption"; break;
1443 case 121: tag="Local Caption"; break;
1444 case 122: tag="Caption Writer"; break;
1445 case 200: tag="Custom Field 1"; break;
1446 case 201: tag="Custom Field 2"; break;
1447 case 202: tag="Custom Field 3"; break;
1448 case 203: tag="Custom Field 4"; break;
1449 case 204: tag="Custom Field 5"; break;
1450 case 205: tag="Custom Field 6"; break;
1451 case 206: tag="Custom Field 7"; break;
1452 case 207: tag="Custom Field 8"; break;
1453 case 208: tag="Custom Field 9"; break;
1454 case 209: tag="Custom Field 10"; break;
1455 case 210: tag="Custom Field 11"; break;
1456 case 211: tag="Custom Field 12"; break;
1457 case 212: tag="Custom Field 13"; break;
1458 case 213: tag="Custom Field 14"; break;
1459 case 214: tag="Custom Field 15"; break;
1460 case 215: tag="Custom Field 16"; break;
1461 case 216: tag="Custom Field 17"; break;
1462 case 217: tag="Custom Field 18"; break;
1463 case 218: tag="Custom Field 19"; break;
1464 case 219: tag="Custom Field 20"; break;
1465 default: tag="unknown"; break;
1466 }
1467 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1468 (double) dataset,(double) record);
1469 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1470 length|=GetStringInfoDatum(profile)[i++];
1471 attribute=(char *) NULL;
cristy151b66d2015-04-15 10:50:31 +00001472 if (~length >= (MagickPathExtent-1))
1473 attribute=(char *) AcquireQuantumMemory(length+MagickPathExtent,
cristy9e818982014-01-18 14:54:37 +00001474 sizeof(*attribute));
1475 if (attribute != (char *) NULL)
1476 {
1477 (void) CopyMagickString(attribute,(char *)
1478 GetStringInfoDatum(profile)+i,length+1);
1479 attribute_list=StringToList(attribute);
1480 if (attribute_list != (char **) NULL)
1481 {
dirk6c316f22015-06-27 15:44:29 +00001482 (void) FormatLocaleFile(file,"[");
cristy9e818982014-01-18 14:54:37 +00001483 for (j=0; attribute_list[j] != (char *) NULL; j++)
1484 {
dirk6c316f22015-06-27 15:44:29 +00001485 if (j != 0)
1486 (void) FormatLocaleFile(file,",");
1487 JsonFormatLocaleFile(file,"%s",attribute_list[j]);
cristy9e818982014-01-18 14:54:37 +00001488 attribute_list[j]=(char *) RelinquishMagickMemory(
1489 attribute_list[j]);
1490 }
dirk6c316f22015-06-27 15:44:29 +00001491 (void) FormatLocaleFile(file,"],");
cristy9e818982014-01-18 14:54:37 +00001492 attribute_list=(char **) RelinquishMagickMemory(
1493 attribute_list);
1494 }
dirk6c316f22015-06-27 15:44:29 +00001495 else
1496 (void) FormatLocaleFile(file,"null,");
cristy9e818982014-01-18 14:54:37 +00001497 attribute=DestroyString(attribute);
1498 }
dirk6c316f22015-06-27 15:44:29 +00001499 else
1500 (void) FormatLocaleFile(file,"null,");
cristy9e818982014-01-18 14:54:37 +00001501 }
1502 }
dirk6c316f22015-06-27 15:44:29 +00001503 (void) FormatLocaleFile(file," \"length\": \"%.20g\"",(double)
1504 GetStringInfoLength(profile));
1505 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001506 name=GetNextImageProfile(image);
1507 }
dirk6c316f22015-06-27 15:44:29 +00001508 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001509 }
1510 ResetImageArtifactIterator(image);
1511 artifact=GetNextImageArtifact(image);
1512 if (artifact != (const char *) NULL)
1513 {
dirk6c316f22015-06-27 15:44:29 +00001514 ssize_t
1515 n;
1516
cristy9e818982014-01-18 14:54:37 +00001517 /*
1518 Display image artifacts.
1519 */
dirk6c316f22015-06-27 15:44:29 +00001520 n=0;
1521 (void) FormatLocaleFile(file," \"artifacts\": {\n");
cristy9e818982014-01-18 14:54:37 +00001522 while (artifact != (const char *) NULL)
1523 {
dirk6c316f22015-06-27 15:44:29 +00001524 if (n++ != 0)
1525 (void) FormatLocaleFile(file,",\n");
1526 JsonFormatLocaleFile(file," %s: ",artifact);
cristy9e818982014-01-18 14:54:37 +00001527 value=GetImageArtifact(image,artifact);
dirk6c316f22015-06-27 15:44:29 +00001528 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001529 artifact=GetNextImageArtifact(image);
1530 }
dirk6c316f22015-06-27 15:44:29 +00001531 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001532 }
1533 ResetImageRegistryIterator();
1534 registry=GetNextImageRegistry();
1535 if (registry != (const char *) NULL)
1536 {
dirk6c316f22015-06-27 15:44:29 +00001537 ssize_t
1538 n;
1539
cristy9e818982014-01-18 14:54:37 +00001540 /*
1541 Display image registry.
1542 */
dirk6c316f22015-06-27 15:44:29 +00001543 (void) FormatLocaleFile(file," \"registry\": {\n");
1544 n=0;
cristy9e818982014-01-18 14:54:37 +00001545 while (registry != (const char *) NULL)
1546 {
dirk6c316f22015-06-27 15:44:29 +00001547 if (n++ != 0)
1548 (void) FormatLocaleFile(file,",\n");
1549 JsonFormatLocaleFile(file," %s: ",registry);
cristy9e818982014-01-18 14:54:37 +00001550 value=(const char *) GetImageRegistry(StringRegistryType,registry,
1551 exception);
dirk6c316f22015-06-27 15:44:29 +00001552 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001553 registry=GetNextImageRegistry();
1554 }
dirk6c316f22015-06-27 15:44:29 +00001555 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001556 }
dirk6c316f22015-06-27 15:44:29 +00001557 (void) FormatLocaleFile(file," \"tainted\": %s,\n",
1558 image->taint != MagickFalse ? "true" : "false");
cristy151b66d2015-04-15 10:50:31 +00001559 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,"B",MagickPathExtent,
cristyd4618c02015-04-14 23:54:43 +00001560 format);
dirk6c316f22015-06-27 15:44:29 +00001561 JsonFormatLocaleFile(file," \"filesize\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001562 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy151b66d2015-04-15 10:50:31 +00001563 MagickFalse,"B",MagickPathExtent,format);
cristy9e818982014-01-18 14:54:37 +00001564 if (strlen(format) > 1)
1565 format[strlen(format)-1]='\0';
dirk6c316f22015-06-27 15:44:29 +00001566 JsonFormatLocaleFile(file," \"numberPixels\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001567 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristy151b66d2015-04-15 10:50:31 +00001568 elapsed_time+0.5),MagickFalse,"B",MagickPathExtent,format);
dirk6c316f22015-06-27 15:44:29 +00001569 JsonFormatLocaleFile(file," \"pixelsPerSecond\": %s,\n",format);
1570 (void) FormatLocaleFile(file," \"userTime\": \"%0.3fu\",\n",user_time);
1571 (void) FormatLocaleFile(file," \"elapsedTime\": \"%lu:%02lu.%03lu\",\n",
1572 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(
1573 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-floor(
1574 elapsed_time))));
Cristy519e0052016-10-16 15:28:40 -04001575 url=GetMagickHomeURL();
1576 JsonFormatLocaleFile(file," \"version\": %s\n",url);
1577 url=DestroyString(url);
dirk6c316f22015-06-27 15:44:29 +00001578 (void) FormatLocaleFile(file," }\n}\n");
cristy9e818982014-01-18 14:54:37 +00001579 (void) fflush(file);
1580 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1581}
1582
cristy3f07aa32014-01-18 01:16:33 +00001583static MagickBooleanType WriteJSONImage(const ImageInfo *image_info,
1584 Image *image,ExceptionInfo *exception)
1585{
dirk6c316f22015-06-27 15:44:29 +00001586 FILE
1587 *file;
1588
cristy3f07aa32014-01-18 01:16:33 +00001589 MagickBooleanType
1590 status;
1591
1592 MagickOffsetType
1593 scene;
1594
1595 /*
1596 Open output image file.
1597 */
1598 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001599 assert(image_info->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001600 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001601 assert(image->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001602 if (image->debug != MagickFalse)
1603 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1604 status=OpenBlob(image_info,image,WriteBlobMode,exception);
1605 if (status == MagickFalse)
1606 return(status);
dirk6c316f22015-06-27 15:44:29 +00001607 file=GetBlobFileHandle(image);
1608 if (file == (FILE *) NULL)
1609 file=stdout;
cristy3f07aa32014-01-18 01:16:33 +00001610 scene=0;
1611 do
1612 {
dirk6c316f22015-06-27 15:44:29 +00001613 WriteBlobString(image,"[");
cristy9e818982014-01-18 14:54:37 +00001614 image->magick_columns=image->columns;
1615 image->magick_rows=image->rows;
dirk6c316f22015-06-27 15:44:29 +00001616 EncodeImageAttributes(image,file,exception);
cristy3f07aa32014-01-18 01:16:33 +00001617 if (GetNextImageInList(image) == (Image *) NULL)
dirk6c316f22015-06-27 15:44:29 +00001618 {
1619 WriteBlobString(image,"]");
1620 break;
1621 }
1622 WriteBlobString(image,",\n");
cristy3f07aa32014-01-18 01:16:33 +00001623 image=SyncNextImageInList(image);
1624 status=SetImageProgress(image,SaveImagesTag,scene++,
1625 GetImageListLength(image));
1626 if (status == MagickFalse)
1627 break;
1628 } while (image_info->adjoin != MagickFalse);
1629 (void) CloseBlob(image);
1630 return(MagickTrue);
1631}