blob: a1aab00e9fda1f18c47c885a9c9ab3f8e588b865 [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% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 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% %
26% http://www.imagemagick.org/script/license.php %
27% %
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
324 if (GetPixelReadMask(image,p) == 0)
325 {
326 p+=GetPixelChannels(image);
327 continue;
328 }
329 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
330 {
331 PixelChannel channel=GetPixelChannelChannel(image,i);
332 PixelTrait traits=GetPixelChannelTraits(image,channel);
333 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
544 PixelTrait traits=GetPixelChannelTraits(image,channel);
545 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
cristydc395172014-02-23 01:33:36 +0000611static ssize_t PrintChannelPerceptualHash(FILE *file,const ChannelType channel,
612 const char *name,const MagickBooleanType separator,
613 const ChannelPerceptualHash *channel_phash)
614{
615 register ssize_t
616 i;
617
618 ssize_t
619 n;
620
621 n=FormatLocaleFile(file," \"%s\": {\n",name);
cristy79a41dc2014-02-23 21:42:49 +0000622 for (i=0; i < 6; i++)
cristydc395172014-02-23 01:33:36 +0000623 n+=FormatLocaleFile(file,
cristyff4072b2014-02-23 21:47:32 +0000624 " \"PH%.20g\": [ \"%.*g\", \"%.*g\" ],\n",i+1.0,
cristyc0187622014-09-06 00:45:58 +0000625 GetMagickPrecision(),channel_phash[channel].srgb_hu_phash[i],
626 GetMagickPrecision(),channel_phash[channel].hclp_hu_phash[i]);
cristydc395172014-02-23 01:33:36 +0000627 n+=FormatLocaleFile(file,
cristyff4072b2014-02-23 21:47:32 +0000628 " \"PH%.20g\": [ \"%.*g\", \"%.*g\" ]\n",i+1.0,
cristyc0187622014-09-06 00:45:58 +0000629 GetMagickPrecision(),channel_phash[channel].srgb_hu_phash[i],
630 GetMagickPrecision(),channel_phash[channel].hclp_hu_phash[i]);
cristydc395172014-02-23 01:33:36 +0000631 (void) FormatLocaleFile(file," }");
632 if (separator != MagickFalse)
633 (void) FormatLocaleFile(file,",");
634 (void) FormatLocaleFile(file,"\n");
635 return(n);
636}
637
cristy9e818982014-01-18 14:54:37 +0000638static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
dirk6c316f22015-06-27 15:44:29 +0000639 const char *name,const double scale,const MagickBooleanType separator,
cristy9e818982014-01-18 14:54:37 +0000640 const ChannelStatistics *channel_statistics)
641{
dirk6c316f22015-06-27 15:44:29 +0000642#define StatisticsFormat " \"%s\": {\n \"min\": \"" QuantumFormat \
643 "\",\n \"max\": \"" QuantumFormat "\",\n" \
644 " \"mean\": \"%g\",\n \"standardDeviation\": " \
645 "\"%g\",\n \"kurtosis\": \"%g\",\n \"skewness\": " \
646 "\"%g\"\n }"
cristy9e818982014-01-18 14:54:37 +0000647
648 ssize_t
649 n;
650
651 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristye1c94d92015-06-28 12:16:33 +0000652 channel_statistics[channel].minima),ClampToQuantum(scale*
653 channel_statistics[channel].maxima),scale*channel_statistics[channel].mean,
654 scale*channel_statistics[channel].standard_deviation,
cristy9e818982014-01-18 14:54:37 +0000655 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
dirk6c316f22015-06-27 15:44:29 +0000656 if (separator != MagickFalse)
cristye1c94d92015-06-28 12:16:33 +0000657 (void) FormatLocaleFile(file,",");
dirk6c316f22015-06-27 15:44:29 +0000658 (void) FormatLocaleFile(file,"\n");
cristy9e818982014-01-18 14:54:37 +0000659 return(n);
660}
661
662static MagickBooleanType EncodeImageAttributes(Image *image,FILE *file,
663 ExceptionInfo *exception)
664{
cristy9e818982014-01-18 14:54:37 +0000665 char
cristy151b66d2015-04-15 10:50:31 +0000666 color[MagickPathExtent],
667 format[MagickPathExtent],
668 key[MagickPathExtent];
cristy9e818982014-01-18 14:54:37 +0000669
670 ChannelFeatures
671 *channel_features;
672
673 ChannelMoments
674 *channel_moments;
675
cristydc395172014-02-23 01:33:36 +0000676 ChannelPerceptualHash
677 *channel_phash;
678
cristy9e818982014-01-18 14:54:37 +0000679 ChannelStatistics
680 *channel_statistics;
681
682 ColorspaceType
683 colorspace;
684
685 const char
686 *artifact,
687 *locate,
688 *name,
689 *property,
690 *registry,
691 *value;
692
693 const MagickInfo
694 *magick_info;
695
696 double
697 elapsed_time,
698 user_time;
699
700 ImageType
dirkab4f0bb2015-07-25 11:46:32 +0000701 base_type,
cristy9e818982014-01-18 14:54:37 +0000702 type;
703
704 MagickBooleanType
705 ping;
706
707 register const Quantum
708 *p;
709
710 register ssize_t
711 i,
712 x;
713
714 size_t
dirk6c316f22015-06-27 15:44:29 +0000715 depth,
cristy9e818982014-01-18 14:54:37 +0000716 distance,
717 scale;
718
719 ssize_t
720 y;
721
722 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000723 assert(image->signature == MagickCoreSignature);
cristy9e818982014-01-18 14:54:37 +0000724 if (image->debug != MagickFalse)
725 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristya10f7442014-01-19 18:32:15 +0000726 *format='\0';
727 elapsed_time=GetElapsedTime(&image->timer);
728 user_time=GetUserTime(&image->timer);
729 GetTimerInfo(&image->timer);
730 p=GetVirtualPixels(image,0,0,1,1,exception);
731 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristye1c94d92015-06-28 12:16:33 +0000732 (void) ping;
cristya10f7442014-01-19 18:32:15 +0000733 (void) SignatureImage(image,exception);
dirk6c316f22015-06-27 15:44:29 +0000734 JsonFormatLocaleFile(file,"{\n \"image\": {\n \"name\": %s,\n",
735 image->filename);
cristya10f7442014-01-19 18:32:15 +0000736 if (*image->magick_filename != '\0')
737 if (LocaleCompare(image->magick_filename,image->filename) != 0)
738 {
739 char
cristy151b66d2015-04-15 10:50:31 +0000740 filename[MagickPathExtent];
cristya10f7442014-01-19 18:32:15 +0000741
742 GetPathComponent(image->magick_filename,TailPath,filename);
dirk6c316f22015-06-27 15:44:29 +0000743 JsonFormatLocaleFile(file," \"baseName\": %s,\n",filename);
cristya10f7442014-01-19 18:32:15 +0000744 }
dirk6c316f22015-06-27 15:44:29 +0000745 JsonFormatLocaleFile(file," \"format\": %s,\n",image->magick);
cristya10f7442014-01-19 18:32:15 +0000746 magick_info=GetMagickInfo(image->magick,exception);
dirk6c316f22015-06-27 15:44:29 +0000747 if ((magick_info != (const MagickInfo *) NULL) &&
748 (GetMagickDescription(magick_info) != (const char *) NULL))
749 JsonFormatLocaleFile(file," \"formatDescription\": %s,\n",
750 image->magick);
cristy12bcd3d2015-01-28 00:54:23 +0000751 if ((magick_info != (const MagickInfo *) NULL) &&
cristya10f7442014-01-19 18:32:15 +0000752 (GetMagickMimeType(magick_info) != (const char *) NULL))
dirk6c316f22015-06-27 15:44:29 +0000753 JsonFormatLocaleFile(file," \"mimeType\": %s,\n",GetMagickMimeType(
cristya10f7442014-01-19 18:32:15 +0000754 magick_info));
dirk6c316f22015-06-27 15:44:29 +0000755 JsonFormatLocaleFile(file," \"class\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +0000756 MagickClassOptions,(ssize_t) image->storage_class));
dirk6c316f22015-06-27 15:44:29 +0000757 (void) FormatLocaleFile(file," \"geometry\": {\n"
758 " \"width\": %.20g,\n \"height\": %.20g,\n"
759 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
760 (double) image->columns,(double) image->rows,(double) image->tile_offset.x,
761 (double) image->tile_offset.y);
cristya10f7442014-01-19 18:32:15 +0000762 if ((image->magick_columns != 0) || (image->magick_rows != 0))
763 if ((image->magick_columns != image->columns) ||
764 (image->magick_rows != image->rows))
dirk6c316f22015-06-27 15:44:29 +0000765 (void) FormatLocaleFile(file," \"baseGeometry\": {\n"
766 " \"width\": %.20g,\n \"height\": %.20g\n },\n",
767 (double) image->magick_columns,(double) image->magick_rows);
cristya10f7442014-01-19 18:32:15 +0000768 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
769 {
dirk6c316f22015-06-27 15:44:29 +0000770 (void) FormatLocaleFile(file," \"resolution\": {\n"
771 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
772 image->resolution.x,image->resolution.y);
773 (void) FormatLocaleFile(file," \"printSize\": {\n"
774 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
cristya10f7442014-01-19 18:32:15 +0000775 image->columns/image->resolution.x,(double) image->rows/
776 image->resolution.y);
777 }
dirk6c316f22015-06-27 15:44:29 +0000778 JsonFormatLocaleFile(file," \"units\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +0000779 MagickResolutionOptions,(ssize_t) image->units));
dirkab4f0bb2015-07-25 11:46:32 +0000780 colorspace=image->colorspace;
781 type=IdentifyImageType(image,exception);
782 if ((type == BilevelType) || (type == GrayscaleType) ||
783 (type == GrayscaleAlphaType))
784 colorspace=GRAYColorspace;
dirk6c316f22015-06-27 15:44:29 +0000785 JsonFormatLocaleFile(file," \"type\": %s,\n",CommandOptionToMnemonic(
cristya10f7442014-01-19 18:32:15 +0000786 MagickTypeOptions,(ssize_t) type));
dirkab4f0bb2015-07-25 11:46:32 +0000787 base_type=GetImageType(image);
788 if (type != base_type)
dirk6c316f22015-06-27 15:44:29 +0000789 JsonFormatLocaleFile(file," \"baseType\": %s,\n",
dirkab4f0bb2015-07-25 11:46:32 +0000790 CommandOptionToMnemonic(MagickTypeOptions,(ssize_t) base_type));
dirk6c316f22015-06-27 15:44:29 +0000791 JsonFormatLocaleFile(file," \"endianess\": %s,\n",
792 CommandOptionToMnemonic(MagickEndianOptions,(ssize_t) image->endian));
cristy9e818982014-01-18 14:54:37 +0000793 locate=GetImageArtifact(image,"identify:locate");
cristy3e583dd2014-01-19 14:11:51 +0000794 if (locate == (const char *) NULL)
795 locate=GetImageArtifact(image,"json:locate");
cristy9e818982014-01-18 14:54:37 +0000796 if (locate != (const char *) NULL)
797 {
798 const char
799 *limit;
800
801 size_t
802 max_locations;
803
804 StatisticType
805 type;
806
807 /*
808 Display minimum, maximum, or mean pixel locations.
809 */
810 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
811 MagickFalse,locate);
812 limit=GetImageArtifact(image,"identify:limit");
cristy3e583dd2014-01-19 14:11:51 +0000813 if (limit == (const char *) NULL)
814 limit=GetImageArtifact(image,"json:limit");
cristy9e818982014-01-18 14:54:37 +0000815 max_locations=0;
816 if (limit != (const char *) NULL)
817 max_locations=StringToUnsignedLong(limit);
818 channel_statistics=GetLocationStatistics(image,type,exception);
819 if (channel_statistics == (ChannelStatistics *) NULL)
820 return(MagickFalse);
dirk6c316f22015-06-27 15:44:29 +0000821 (void) FormatLocaleFile(file," \"channel%s\": {\n",locate);
822 if (image->alpha_trait != UndefinedPixelTrait)
823 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
824 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000825 switch (colorspace)
826 {
827 case RGBColorspace:
828 default:
829 {
830 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
dirk6c316f22015-06-27 15:44:29 +0000831 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000832 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +0000833 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000834 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
dirk6c316f22015-06-27 15:44:29 +0000835 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000836 break;
837 }
838 case CMYKColorspace:
839 {
840 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
dirk6c316f22015-06-27 15:44:29 +0000841 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000842 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +0000843 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000844 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +0000845 type,max_locations,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000846 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +0000847 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000848 break;
849 }
850 case GRAYColorspace:
851 {
852 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
dirk6c316f22015-06-27 15:44:29 +0000853 type,max_locations,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000854 break;
855 }
856 }
dirk6c316f22015-06-27 15:44:29 +0000857 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +0000858 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
859 channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000860 }
cristy9e818982014-01-18 14:54:37 +0000861 /*
862 Detail channel depth and extrema.
863 */
dirk6c316f22015-06-27 15:44:29 +0000864 JsonFormatLocaleFile(file," \"colorspace\": %s,\n",
865 CommandOptionToMnemonic(MagickColorspaceOptions,(ssize_t)
866 image->colorspace));
cristy9e818982014-01-18 14:54:37 +0000867 channel_statistics=(ChannelStatistics *) NULL;
868 channel_moments=(ChannelMoments *) NULL;
cristydc395172014-02-23 01:33:36 +0000869 channel_phash=(ChannelPerceptualHash *) NULL;
cristy9e818982014-01-18 14:54:37 +0000870 channel_features=(ChannelFeatures *) NULL;
cristy9e818982014-01-18 14:54:37 +0000871 scale=1;
dirk6c316f22015-06-27 15:44:29 +0000872 channel_statistics=GetImageStatistics(image,exception);
873 if (channel_statistics == (ChannelStatistics *) NULL)
874 return(MagickFalse);
875 artifact=GetImageArtifact(image,"identify:moments");
876 if (artifact == (const char *) NULL)
877 artifact=GetImageArtifact(image,"json:moments");
878 if (artifact != (const char *) NULL)
cristy9e818982014-01-18 14:54:37 +0000879 {
dirk6c316f22015-06-27 15:44:29 +0000880 channel_moments=GetImageMoments(image,exception);
881 channel_phash=GetImagePerceptualHash(image,exception);
cristy9e818982014-01-18 14:54:37 +0000882 }
dirk6c316f22015-06-27 15:44:29 +0000883 artifact=GetImageArtifact(image,"identify:features");
884 if (artifact == (const char *) NULL)
885 artifact=GetImageArtifact(image,"json:features");
886 if (artifact != (const char *) NULL)
887 {
888 distance=StringToUnsignedLong(artifact);
889 channel_features=GetImageFeatures(image,distance,exception);
890 }
891 depth=GetImageDepth(image,exception);
892 (void) FormatLocaleFile(file," \"depth\": %.20g,\n",(double) depth);
893 (void) FormatLocaleFile(file," \"baseDepth\": %.20g,\n",(double)
894 image->depth);
895 (void) FormatLocaleFile(file," \"channelDepth\": {\n");
dirk6c316f22015-06-27 15:44:29 +0000896 if (image->alpha_trait != UndefinedPixelTrait)
897 (void) FormatLocaleFile(file," \"alpha\": %.20g,\n",(double)
898 channel_statistics[AlphaPixelChannel].depth);
899 switch (colorspace)
900 {
901 case RGBColorspace:
902 default:
903 {
904 (void) FormatLocaleFile(file," \"red\": %.20g,\n",(double)
905 channel_statistics[RedChannel].depth);
906 (void) FormatLocaleFile(file," \"green\": %.20g,\n",(double)
907 channel_statistics[GreenChannel].depth);
908 (void) FormatLocaleFile(file," \"blue\": %.20g\n",(double)
909 channel_statistics[BlueChannel].depth);
910 break;
911 }
912 case CMYKColorspace:
913 {
914 (void) FormatLocaleFile(file," \"cyan\": %.20g,\n",(double)
915 channel_statistics[CyanChannel].depth);
916 (void) FormatLocaleFile(file," \"magenta\": %.20g,\n",(double)
917 channel_statistics[MagentaChannel].depth);
918 (void) FormatLocaleFile(file," \"yellow\": %.20g,\n",(double)
919 channel_statistics[YellowChannel].depth);
920 (void) FormatLocaleFile(file," \"black\": %.20g\n",(double)
921 channel_statistics[BlackChannel].depth);
922 break;
923 }
924 case GRAYColorspace:
925 {
926 (void) FormatLocaleFile(file," \"gray\": %.20g\n",(double)
927 channel_statistics[GrayChannel].depth);
928 break;
929 }
930 }
931 (void) FormatLocaleFile(file," },\n");
932 scale=1;
933 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
934 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
935 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy9e818982014-01-18 14:54:37 +0000936 if (channel_statistics != (ChannelStatistics *) NULL)
937 {
dirk6c316f22015-06-27 15:44:29 +0000938 (void) FormatLocaleFile(file," \"pixels\": %.20g,\n",
cristy9e818982014-01-18 14:54:37 +0000939 channel_statistics[CompositePixelChannel].area);
dirk6c316f22015-06-27 15:44:29 +0000940 if (colorspace != GRAYColorspace)
941 {
942 (void) FormatLocaleFile(file," \"imageStatistics\": {\n");
943 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
944 "Overall",1.0/scale,MagickFalse,channel_statistics);
945 (void) FormatLocaleFile(file," },\n");
946 }
947 (void) FormatLocaleFile(file," \"channelStatistics\": {\n");
948 if (image->alpha_trait != UndefinedPixelTrait)
949 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/scale,
950 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000951 switch (colorspace)
952 {
953 case RGBColorspace:
954 default:
955 {
dirk6c316f22015-06-27 15:44:29 +0000956 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/scale,
957 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000958 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
dirk6c316f22015-06-27 15:44:29 +0000959 scale,MagickTrue,channel_statistics);
960 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/scale,
961 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000962 break;
963 }
964 case CMYKColorspace:
965 {
dirk6c316f22015-06-27 15:44:29 +0000966 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/scale,
967 MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000968 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
dirk6c316f22015-06-27 15:44:29 +0000969 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000970 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
dirk6c316f22015-06-27 15:44:29 +0000971 scale,MagickTrue,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000972 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
dirk6c316f22015-06-27 15:44:29 +0000973 scale,MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000974 break;
975 }
976 case GRAYColorspace:
977 {
dirk6c316f22015-06-27 15:44:29 +0000978 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/scale,
979 MagickFalse,channel_statistics);
cristy9e818982014-01-18 14:54:37 +0000980 break;
981 }
982 }
dirk6c316f22015-06-27 15:44:29 +0000983 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +0000984 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
985 channel_statistics);
986 }
987 if (channel_moments != (ChannelMoments *) NULL)
988 {
dirk6c316f22015-06-27 15:44:29 +0000989 (void) FormatLocaleFile(file," \"channelMoments\": {\n");
990 if (image->alpha_trait != UndefinedPixelTrait)
991 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",MagickTrue,
992 channel_moments);
cristy9e818982014-01-18 14:54:37 +0000993 switch (colorspace)
994 {
995 case RGBColorspace:
996 default:
997 {
dirk6c316f22015-06-27 15:44:29 +0000998 (void) PrintChannelMoments(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +0000999 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001000 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001001 channel_moments);
dirk6c316f22015-06-27 15:44:29 +00001002 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001003 channel_moments);
1004 break;
1005 }
1006 case CMYKColorspace:
1007 {
dirk6c316f22015-06-27 15:44:29 +00001008 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001009 channel_moments);
1010 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001011 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001012 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001013 MagickTrue,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001014 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001015 MagickFalse,channel_moments);
cristy9e818982014-01-18 14:54:37 +00001016 break;
1017 }
1018 case GRAYColorspace:
1019 {
dirk6c316f22015-06-27 15:44:29 +00001020 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001021 channel_moments);
1022 break;
1023 }
1024 }
dirk6c316f22015-06-27 15:44:29 +00001025 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001026 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
1027 channel_moments);
1028 }
cristydc395172014-02-23 01:33:36 +00001029 if (channel_phash != (ChannelPerceptualHash *) NULL)
1030 {
1031 (void) FormatLocaleFile(file," \"channelPerceptualHash\": {\n");
cristy17f11b02014-12-20 19:37:04 +00001032 if (image->alpha_trait != UndefinedPixelTrait)
cristydc395172014-02-23 01:33:36 +00001033 (void) PrintChannelPerceptualHash(file,AlphaChannel,"alphaAlpha",
1034 MagickTrue,channel_phash);
1035 (void) PrintChannelPerceptualHash(file,RedChannel,"redHue",MagickTrue,
1036 channel_phash);
1037 (void) PrintChannelPerceptualHash(file,GreenChannel,"greenChroma",
1038 MagickTrue,channel_phash);
1039 (void) PrintChannelPerceptualHash(file,BlueChannel,"blueLuma",MagickFalse,
1040 channel_phash);
1041 (void) FormatLocaleFile(file," },\n");
1042 channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory(
1043 channel_phash);
1044 }
cristy9e818982014-01-18 14:54:37 +00001045 if (channel_features != (ChannelFeatures *) NULL)
1046 {
dirk6c316f22015-06-27 15:44:29 +00001047 (void) FormatLocaleFile(file," \"channelFeatures\": {\n");
1048 if (image->alpha_trait != UndefinedPixelTrait)
1049 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",MagickTrue,
1050 channel_features);
cristy9e818982014-01-18 14:54:37 +00001051 switch (colorspace)
1052 {
1053 case RGBColorspace:
1054 default:
1055 {
dirk6c316f22015-06-27 15:44:29 +00001056 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001057 channel_features);
1058 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
dirk6c316f22015-06-27 15:44:29 +00001059 MagickTrue,channel_features);
1060 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001061 channel_features);
1062 break;
1063 }
1064 case CMYKColorspace:
1065 {
dirk6c316f22015-06-27 15:44:29 +00001066 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",MagickTrue,
cristy9e818982014-01-18 14:54:37 +00001067 channel_features);
1068 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
dirk6c316f22015-06-27 15:44:29 +00001069 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001070 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
dirk6c316f22015-06-27 15:44:29 +00001071 MagickTrue,channel_features);
cristy9e818982014-01-18 14:54:37 +00001072 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
dirk6c316f22015-06-27 15:44:29 +00001073 MagickFalse,channel_features);
cristy9e818982014-01-18 14:54:37 +00001074 break;
1075 }
1076 case GRAYColorspace:
1077 {
dirk6c316f22015-06-27 15:44:29 +00001078 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",MagickFalse,
cristy9e818982014-01-18 14:54:37 +00001079 channel_features);
1080 break;
1081 }
1082 }
dirk6c316f22015-06-27 15:44:29 +00001083 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001084 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
1085 channel_features);
1086 }
dirk6c316f22015-06-27 15:44:29 +00001087 if (image->colorspace == CMYKColorspace)
1088 (void) FormatLocaleFile(file," \"totalInkDensity\": \"%.*g%%\",\n",
cristye1c94d92015-06-28 12:16:33 +00001089 GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
1090 (double) QuantumRange);
dirk6c316f22015-06-27 15:44:29 +00001091 x=0;
1092 if (image->alpha_trait != UndefinedPixelTrait)
1093 {
1094 register const Quantum
1095 *p;
1096
1097 p=(const Quantum *) NULL;
1098 for (y=0; y < (ssize_t) image->rows; y++)
cristy9e818982014-01-18 14:54:37 +00001099 {
dirk6c316f22015-06-27 15:44:29 +00001100 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
1101 if (p == (const Quantum *) NULL)
1102 break;
1103 for (x=0; x < (ssize_t) image->columns; x++)
cristy9e818982014-01-18 14:54:37 +00001104 {
dirk6c316f22015-06-27 15:44:29 +00001105 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy9e818982014-01-18 14:54:37 +00001106 break;
dirk6c316f22015-06-27 15:44:29 +00001107 p+=GetPixelChannels(image);
cristy9e818982014-01-18 14:54:37 +00001108 }
dirk6c316f22015-06-27 15:44:29 +00001109 if (x < (ssize_t) image->columns)
1110 break;
cristy9e818982014-01-18 14:54:37 +00001111 }
dirk6c316f22015-06-27 15:44:29 +00001112 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
1113 {
1114 PixelInfo
1115 pixel;
1116
1117 GetPixelInfo(image,&pixel);
1118 GetPixelInfoPixel(image,p,&pixel);
1119 GetColorTuple(&pixel,MagickTrue,color);
1120 (void) FormatLocaleFile(file," \"alpha\": \"%s\",\n",color);
1121 }
1122 }
cristy9e818982014-01-18 14:54:37 +00001123 if (image->storage_class == PseudoClass)
1124 {
dirk6c316f22015-06-27 15:44:29 +00001125 register PixelInfo
dirk05d2ff72015-11-18 23:13:43 +01001126 *magick_restrict p;
cristy9e818982014-01-18 14:54:37 +00001127
dirk6c316f22015-06-27 15:44:29 +00001128 (void) FormatLocaleFile(file," \"colormapEntries\": %.20g,\n",
1129 (double) image->colors);
1130 (void) FormatLocaleFile(file," \"colormap\": [\n ");
1131 p=image->colormap;
1132 for (i=0; i < (ssize_t) image->colors; i++)
1133 {
1134 GetColorTuple(p,MagickTrue,color);
1135 (void) FormatLocaleFile(file,"\"%s\"",color);
1136 if (i < (ssize_t) (image->colors-1))
1137 (void) FormatLocaleFile(file,",");
1138 if (((i+1) % 5) == 0)
1139 (void) FormatLocaleFile(file,"\n ");
1140 p++;
1141 }
1142 (void) FormatLocaleFile(file,"\n ],\n");
cristy9e818982014-01-18 14:54:37 +00001143 }
1144 if (image->error.mean_error_per_pixel != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001145 (void) FormatLocaleFile(file," \"meanErrorPerPixel\": \"%g\",\n",
cristy9e818982014-01-18 14:54:37 +00001146 image->error.mean_error_per_pixel);
1147 if (image->error.normalized_mean_error != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001148 (void) FormatLocaleFile(file," \"normalizedMeanError\": \"%g\",\n",
cristy9e818982014-01-18 14:54:37 +00001149 image->error.normalized_mean_error);
1150 if (image->error.normalized_maximum_error != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001151 (void) FormatLocaleFile(file," \"normalizedMaximumError\": \"%g\",\n",
cristy9e818982014-01-18 14:54:37 +00001152 image->error.normalized_maximum_error);
dirk6c316f22015-06-27 15:44:29 +00001153 JsonFormatLocaleFile(file," \"renderingIntent\": %s,\n",
cristy9e818982014-01-18 14:54:37 +00001154 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1155 image->rendering_intent));
1156 if (image->gamma != 0.0)
dirk6c316f22015-06-27 15:44:29 +00001157 (void) FormatLocaleFile(file," \"gamma\": %g,\n",image->gamma);
cristy9e818982014-01-18 14:54:37 +00001158 if ((image->chromaticity.red_primary.x != 0.0) ||
1159 (image->chromaticity.green_primary.x != 0.0) ||
1160 (image->chromaticity.blue_primary.x != 0.0) ||
1161 (image->chromaticity.white_point.x != 0.0))
1162 {
1163 /*
1164 Display image chromaticity.
1165 */
dirk6c316f22015-06-27 15:44:29 +00001166 (void) FormatLocaleFile(file," \"chromaticity\": {\n");
1167 (void) FormatLocaleFile(file," \"redPrimary\": {\n"
1168 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001169 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001170 (void) FormatLocaleFile(file," \"greenPrimary\": {\n"
1171 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001172 image->chromaticity.green_primary.x,
1173 image->chromaticity.green_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001174 (void) FormatLocaleFile(file," \"bluePrimary\": {\n"
1175 " \"x\": %g,\n \"y\": %g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001176 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
dirk6c316f22015-06-27 15:44:29 +00001177 (void) FormatLocaleFile(file," \"whitePrimary\": {\n"
1178 " \"x\": %g,\n \"y\": %g\n }\n",
cristy9e818982014-01-18 14:54:37 +00001179 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
dirk6c316f22015-06-27 15:44:29 +00001180 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001181 }
1182 if ((image->extract_info.width*image->extract_info.height) != 0)
dirk6c316f22015-06-27 15:44:29 +00001183 (void) FormatLocaleFile(file," \"tileGeometry\": {\n"
1184 " \"width\": %.20g,\n \"height\": %.20g,\n"
1185 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
cristy9e818982014-01-18 14:54:37 +00001186 (double) image->extract_info.width,(double) image->extract_info.height,
1187 (double) image->extract_info.x,(double) image->extract_info.y);
dirk6c316f22015-06-27 15:44:29 +00001188 GetColorTuple(&image->background_color,MagickTrue,color);
1189 (void) FormatLocaleFile(file," \"backgroundColor\": \"%s\",\n",color);
1190 GetColorTuple(&image->border_color,MagickTrue,color);
1191 (void) FormatLocaleFile(file," \"borderColor\": \"%s\",\n",color);
1192 GetColorTuple(&image->matte_color,MagickTrue,color);
1193 (void) FormatLocaleFile(file," \"matteColor\": \"%s\",\n",color);
1194 GetColorTuple(&image->transparent_color,MagickTrue,color);
1195 (void) FormatLocaleFile(file," \"transparentColor\": \"%s\",\n",color);
1196 JsonFormatLocaleFile(file," \"interlace\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001197 MagickInterlaceOptions,(ssize_t) image->interlace));
dirk6c316f22015-06-27 15:44:29 +00001198 JsonFormatLocaleFile(file," \"intensity\": %s,\n",CommandOptionToMnemonic(
cristy9e818982014-01-18 14:54:37 +00001199 MagickPixelIntensityOptions,(ssize_t) image->intensity));
dirk6c316f22015-06-27 15:44:29 +00001200 JsonFormatLocaleFile(file," \"compose\": %s,\n",
1201 CommandOptionToMnemonic(MagickComposeOptions,(ssize_t) image->compose));
cristy9e818982014-01-18 14:54:37 +00001202 if ((image->page.width != 0) || (image->page.height != 0) ||
1203 (image->page.x != 0) || (image->page.y != 0))
dirk6c316f22015-06-27 15:44:29 +00001204 (void) FormatLocaleFile(file," \"pageGeometry\": {\n"
1205 " \"width\": %.20g,\n \"height\": %.20g,\n"
1206 " \"x\": %.20g,\n \"y\": %.20g\n },\n",
1207 (double) image->page.width,(double) image->page.height,
1208 (double) image->page.x,(double) image->page.y);
cristy9e818982014-01-18 14:54:37 +00001209 if ((image->page.x != 0) || (image->page.y != 0))
dirk6c316f22015-06-27 15:44:29 +00001210 (void) FormatLocaleFile(file," \"originGeometry\": %+.20g%+.20g\n",
1211 (double) image->page.x,(double) image->page.y);
1212 JsonFormatLocaleFile(file," \"dispose\": %s,\n",
1213 CommandOptionToMnemonic(MagickDisposeOptions,(ssize_t) image->dispose));
cristy9e818982014-01-18 14:54:37 +00001214 if (image->delay != 0)
dirk6c316f22015-06-27 15:44:29 +00001215 (void) FormatLocaleFile(file," \"delay\": \"%.20gx%.20g\"\n",
1216 (double) image->delay,(double) image->ticks_per_second);
cristy9e818982014-01-18 14:54:37 +00001217 if (image->iterations != 1)
dirk6c316f22015-06-27 15:44:29 +00001218 (void) FormatLocaleFile(file," \"iterations\": %.20g,\n",(double)
cristy9e818982014-01-18 14:54:37 +00001219 image->iterations);
1220 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
dirk6c316f22015-06-27 15:44:29 +00001221 (void) FormatLocaleFile(file," \"scene\": %.20g\n \"scenes\": "
1222 "%.20g\n",(double) image->scene,(double) GetImageListLength(image));
cristy9e818982014-01-18 14:54:37 +00001223 else
1224 if (image->scene != 0)
dirk6c316f22015-06-27 15:44:29 +00001225 (void) FormatLocaleFile(file," \"scene\": %.20g,\n",(double)
1226 image->scene);
1227 JsonFormatLocaleFile(file," \"compression\": %s,\n",
1228 CommandOptionToMnemonic(MagickCompressOptions,(ssize_t)
1229 image->compression));
cristy9e818982014-01-18 14:54:37 +00001230 if (image->quality != UndefinedCompressionQuality)
dirk6c316f22015-06-27 15:44:29 +00001231 (void) FormatLocaleFile(file," \"quality\": %.20g,\n",(double)
1232 image->quality);
1233 JsonFormatLocaleFile(file," \"orientation\": %s,\n",
1234 CommandOptionToMnemonic(MagickOrientationOptions,(ssize_t)
1235 image->orientation));
cristy9e818982014-01-18 14:54:37 +00001236 if (image->montage != (char *) NULL)
dirk6c316f22015-06-27 15:44:29 +00001237 JsonFormatLocaleFile(file," \"montage\": \"%s\",\n",image->montage);
cristy9e818982014-01-18 14:54:37 +00001238 if (image->directory != (char *) NULL)
1239 {
1240 Image
1241 *tile;
1242
1243 ImageInfo
1244 *image_info;
1245
1246 register char
1247 *p,
1248 *q;
1249
1250 WarningHandler
1251 handler;
1252
1253 /*
1254 Display visual image directory.
1255 */
1256 image_info=AcquireImageInfo();
1257 (void) CloneString(&image_info->size,"64x64");
dirk6c316f22015-06-27 15:44:29 +00001258 (void) FormatLocaleFile(file," \"montageDirectory\": [");
1259 p=image->directory;
1260 while (*p != '\0')
cristy9e818982014-01-18 14:54:37 +00001261 {
1262 q=p;
1263 while ((*q != '\n') && (*q != '\0'))
1264 q++;
1265 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
dirk6c316f22015-06-27 15:44:29 +00001266 p=q+1;
1267 JsonFormatLocaleFile(file,"{\n \"name\": %s",
1268 image_info->filename);
cristy9e818982014-01-18 14:54:37 +00001269 handler=SetWarningHandler((WarningHandler) NULL);
1270 tile=ReadImage(image_info,exception);
1271 (void) SetWarningHandler(handler);
1272 if (tile == (Image *) NULL)
1273 {
dirk6c316f22015-06-27 15:44:29 +00001274 (void) FormatLocaleFile(file," }");
cristy9e818982014-01-18 14:54:37 +00001275 continue;
1276 }
dirk6c316f22015-06-27 15:44:29 +00001277 (void) FormatLocaleFile(file,",\n \"info\": \"%.20gx%.20g %s\"",
1278 (double) tile->magick_columns,(double) tile->magick_rows,
1279 tile->magick);
cristy9e818982014-01-18 14:54:37 +00001280 (void) SignatureImage(tile,exception);
1281 ResetImagePropertyIterator(tile);
1282 property=GetNextImageProperty(tile);
1283 while (property != (const char *) NULL)
1284 {
dirk6c316f22015-06-27 15:44:29 +00001285 JsonFormatLocaleFile(file,",\n %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001286 value=GetImageProperty(tile,property,exception);
dirk6c316f22015-06-27 15:44:29 +00001287 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001288 property=GetNextImageProperty(tile);
1289 }
1290 tile=DestroyImage(tile);
dirk6c316f22015-06-27 15:44:29 +00001291 if (*p != '\0')
1292 (void) FormatLocaleFile(file,"\n },");
1293 else
1294 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001295 }
dirk6c316f22015-06-27 15:44:29 +00001296 (void) FormatLocaleFile(file,"],\n");
cristy9e818982014-01-18 14:54:37 +00001297 image_info=DestroyImageInfo(image_info);
1298 }
1299 (void) GetImageProperty(image,"exif:*",exception);
cristy55166322014-01-23 01:53:24 +00001300 (void) GetImageProperty(image,"icc:*",exception);
1301 (void) GetImageProperty(image,"iptc:*",exception);
1302 (void) GetImageProperty(image,"xmp:*",exception);
cristy9e818982014-01-18 14:54:37 +00001303 ResetImagePropertyIterator(image);
1304 property=GetNextImageProperty(image);
1305 if (property != (const char *) NULL)
1306 {
dirk6c316f22015-06-27 15:44:29 +00001307 size_t
1308 n;
1309
cristy9e818982014-01-18 14:54:37 +00001310 /*
1311 Display image properties.
1312 */
dirk6c316f22015-06-27 15:44:29 +00001313 n=0;
1314 (void) FormatLocaleFile(file," \"properties\": {\n");
cristy9e818982014-01-18 14:54:37 +00001315 while (property != (const char *) NULL)
1316 {
dirk6c316f22015-06-27 15:44:29 +00001317 if (n++ != 0)
1318 (void) FormatLocaleFile(file,",\n");
1319 JsonFormatLocaleFile(file," %s: ",property);
cristy9e818982014-01-18 14:54:37 +00001320 value=GetImageProperty(image,property,exception);
dirk6c316f22015-06-27 15:44:29 +00001321 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001322 property=GetNextImageProperty(image);
1323 }
dirk6c316f22015-06-27 15:44:29 +00001324 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001325 }
cristy151b66d2015-04-15 10:50:31 +00001326 (void) FormatLocaleString(key,MagickPathExtent,"8BIM:1999,2998:#1");
cristy9e818982014-01-18 14:54:37 +00001327 value=GetImageProperty(image,key,exception);
1328 if (value != (const char *) NULL)
1329 {
1330 /*
1331 Display clipping path.
1332 */
dirk6c316f22015-06-27 15:44:29 +00001333 (void) FormatLocaleFile(file," \"clipping path\": {\n");
1334 JsonFormatLocaleFile(file,"%s\n",value);
1335 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001336 }
1337 ResetImageProfileIterator(image);
1338 name=GetNextImageProfile(image);
1339 if (name != (char *) NULL)
1340 {
1341 const StringInfo
1342 *profile;
1343
dirk6c316f22015-06-27 15:44:29 +00001344 size_t
1345 n;
1346
cristy9e818982014-01-18 14:54:37 +00001347 /*
1348 Identify image profiles.
1349 */
dirk6c316f22015-06-27 15:44:29 +00001350 n=0;
1351 (void) FormatLocaleFile(file," \"profiles\": {\n");
cristy9e818982014-01-18 14:54:37 +00001352 while (name != (char *) NULL)
1353 {
1354 profile=GetImageProfile(image,name);
1355 if (profile == (StringInfo *) NULL)
1356 continue;
dirk6c316f22015-06-27 15:44:29 +00001357 if (n++ != 0)
1358 (void) FormatLocaleFile(file,",\n");
1359 JsonFormatLocaleFile(file," %s: {\n",name);
cristy9e818982014-01-18 14:54:37 +00001360 if (LocaleCompare(name,"iptc") == 0)
1361 {
1362 char
1363 *attribute,
1364 **attribute_list;
1365
1366 const char
1367 *tag;
1368
1369 long
1370 dataset,
1371 record,
1372 sentinel;
1373
1374 register ssize_t
1375 j;
1376
1377 size_t
1378 length,
1379 profile_length;
1380
1381 profile_length=GetStringInfoLength(profile);
1382 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
1383 {
1384 length=1;
1385 sentinel=GetStringInfoDatum(profile)[i++];
1386 if (sentinel != 0x1c)
1387 continue;
1388 dataset=GetStringInfoDatum(profile)[i++];
1389 record=GetStringInfoDatum(profile)[i++];
1390 switch (record)
1391 {
1392 case 5: tag="Image Name"; break;
1393 case 7: tag="Edit Status"; break;
1394 case 10: tag="Priority"; break;
1395 case 15: tag="Category"; break;
1396 case 20: tag="Supplemental Category"; break;
1397 case 22: tag="Fixture Identifier"; break;
1398 case 25: tag="Keyword"; break;
1399 case 30: tag="Release Date"; break;
1400 case 35: tag="Release Time"; break;
1401 case 40: tag="Special Instructions"; break;
1402 case 45: tag="Reference Service"; break;
1403 case 47: tag="Reference Date"; break;
1404 case 50: tag="Reference Number"; break;
1405 case 55: tag="Created Date"; break;
1406 case 60: tag="Created Time"; break;
1407 case 65: tag="Originating Program"; break;
1408 case 70: tag="Program Version"; break;
1409 case 75: tag="Object Cycle"; break;
1410 case 80: tag="Byline"; break;
1411 case 85: tag="Byline Title"; break;
1412 case 90: tag="City"; break;
cristya0b0ad32015-07-02 12:33:54 +00001413 case 92: tag="Sub-Location"; break;
cristy9e818982014-01-18 14:54:37 +00001414 case 95: tag="Province State"; break;
1415 case 100: tag="Country Code"; break;
1416 case 101: tag="Country"; break;
1417 case 103: tag="Original Transmission Reference"; break;
1418 case 105: tag="Headline"; break;
1419 case 110: tag="Credit"; break;
1420 case 115: tag="Src"; break;
1421 case 116: tag="Copyright String"; break;
1422 case 120: tag="Caption"; break;
1423 case 121: tag="Local Caption"; break;
1424 case 122: tag="Caption Writer"; break;
1425 case 200: tag="Custom Field 1"; break;
1426 case 201: tag="Custom Field 2"; break;
1427 case 202: tag="Custom Field 3"; break;
1428 case 203: tag="Custom Field 4"; break;
1429 case 204: tag="Custom Field 5"; break;
1430 case 205: tag="Custom Field 6"; break;
1431 case 206: tag="Custom Field 7"; break;
1432 case 207: tag="Custom Field 8"; break;
1433 case 208: tag="Custom Field 9"; break;
1434 case 209: tag="Custom Field 10"; break;
1435 case 210: tag="Custom Field 11"; break;
1436 case 211: tag="Custom Field 12"; break;
1437 case 212: tag="Custom Field 13"; break;
1438 case 213: tag="Custom Field 14"; break;
1439 case 214: tag="Custom Field 15"; break;
1440 case 215: tag="Custom Field 16"; break;
1441 case 216: tag="Custom Field 17"; break;
1442 case 217: tag="Custom Field 18"; break;
1443 case 218: tag="Custom Field 19"; break;
1444 case 219: tag="Custom Field 20"; break;
1445 default: tag="unknown"; break;
1446 }
1447 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1448 (double) dataset,(double) record);
1449 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1450 length|=GetStringInfoDatum(profile)[i++];
1451 attribute=(char *) NULL;
cristy151b66d2015-04-15 10:50:31 +00001452 if (~length >= (MagickPathExtent-1))
1453 attribute=(char *) AcquireQuantumMemory(length+MagickPathExtent,
cristy9e818982014-01-18 14:54:37 +00001454 sizeof(*attribute));
1455 if (attribute != (char *) NULL)
1456 {
1457 (void) CopyMagickString(attribute,(char *)
1458 GetStringInfoDatum(profile)+i,length+1);
1459 attribute_list=StringToList(attribute);
1460 if (attribute_list != (char **) NULL)
1461 {
dirk6c316f22015-06-27 15:44:29 +00001462 (void) FormatLocaleFile(file,"[");
cristy9e818982014-01-18 14:54:37 +00001463 for (j=0; attribute_list[j] != (char *) NULL; j++)
1464 {
dirk6c316f22015-06-27 15:44:29 +00001465 if (j != 0)
1466 (void) FormatLocaleFile(file,",");
1467 JsonFormatLocaleFile(file,"%s",attribute_list[j]);
cristy9e818982014-01-18 14:54:37 +00001468 attribute_list[j]=(char *) RelinquishMagickMemory(
1469 attribute_list[j]);
1470 }
dirk6c316f22015-06-27 15:44:29 +00001471 (void) FormatLocaleFile(file,"],");
cristy9e818982014-01-18 14:54:37 +00001472 attribute_list=(char **) RelinquishMagickMemory(
1473 attribute_list);
1474 }
dirk6c316f22015-06-27 15:44:29 +00001475 else
1476 (void) FormatLocaleFile(file,"null,");
cristy9e818982014-01-18 14:54:37 +00001477 attribute=DestroyString(attribute);
1478 }
dirk6c316f22015-06-27 15:44:29 +00001479 else
1480 (void) FormatLocaleFile(file,"null,");
cristy9e818982014-01-18 14:54:37 +00001481 }
1482 }
dirk6c316f22015-06-27 15:44:29 +00001483 (void) FormatLocaleFile(file," \"length\": \"%.20g\"",(double)
1484 GetStringInfoLength(profile));
1485 (void) FormatLocaleFile(file,"\n }");
cristy9e818982014-01-18 14:54:37 +00001486 name=GetNextImageProfile(image);
1487 }
dirk6c316f22015-06-27 15:44:29 +00001488 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001489 }
1490 ResetImageArtifactIterator(image);
1491 artifact=GetNextImageArtifact(image);
1492 if (artifact != (const char *) NULL)
1493 {
dirk6c316f22015-06-27 15:44:29 +00001494 ssize_t
1495 n;
1496
cristy9e818982014-01-18 14:54:37 +00001497 /*
1498 Display image artifacts.
1499 */
dirk6c316f22015-06-27 15:44:29 +00001500 n=0;
1501 (void) FormatLocaleFile(file," \"artifacts\": {\n");
cristy9e818982014-01-18 14:54:37 +00001502 while (artifact != (const char *) NULL)
1503 {
dirk6c316f22015-06-27 15:44:29 +00001504 if (n++ != 0)
1505 (void) FormatLocaleFile(file,",\n");
1506 JsonFormatLocaleFile(file," %s: ",artifact);
cristy9e818982014-01-18 14:54:37 +00001507 value=GetImageArtifact(image,artifact);
dirk6c316f22015-06-27 15:44:29 +00001508 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001509 artifact=GetNextImageArtifact(image);
1510 }
dirk6c316f22015-06-27 15:44:29 +00001511 (void) FormatLocaleFile(file,"\n },\n");
cristy9e818982014-01-18 14:54:37 +00001512 }
1513 ResetImageRegistryIterator();
1514 registry=GetNextImageRegistry();
1515 if (registry != (const char *) NULL)
1516 {
dirk6c316f22015-06-27 15:44:29 +00001517 ssize_t
1518 n;
1519
cristy9e818982014-01-18 14:54:37 +00001520 /*
1521 Display image registry.
1522 */
dirk6c316f22015-06-27 15:44:29 +00001523 (void) FormatLocaleFile(file," \"registry\": {\n");
1524 n=0;
cristy9e818982014-01-18 14:54:37 +00001525 while (registry != (const char *) NULL)
1526 {
dirk6c316f22015-06-27 15:44:29 +00001527 if (n++ != 0)
1528 (void) FormatLocaleFile(file,",\n");
1529 JsonFormatLocaleFile(file," %s: ",registry);
cristy9e818982014-01-18 14:54:37 +00001530 value=(const char *) GetImageRegistry(StringRegistryType,registry,
1531 exception);
dirk6c316f22015-06-27 15:44:29 +00001532 JsonFormatLocaleFile(file,"%s",value);
cristy9e818982014-01-18 14:54:37 +00001533 registry=GetNextImageRegistry();
1534 }
dirk6c316f22015-06-27 15:44:29 +00001535 (void) FormatLocaleFile(file," },\n");
cristy9e818982014-01-18 14:54:37 +00001536 }
dirk6c316f22015-06-27 15:44:29 +00001537 (void) FormatLocaleFile(file," \"tainted\": %s,\n",
1538 image->taint != MagickFalse ? "true" : "false");
cristy151b66d2015-04-15 10:50:31 +00001539 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,"B",MagickPathExtent,
cristyd4618c02015-04-14 23:54:43 +00001540 format);
dirk6c316f22015-06-27 15:44:29 +00001541 JsonFormatLocaleFile(file," \"filesize\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001542 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy151b66d2015-04-15 10:50:31 +00001543 MagickFalse,"B",MagickPathExtent,format);
cristy9e818982014-01-18 14:54:37 +00001544 if (strlen(format) > 1)
1545 format[strlen(format)-1]='\0';
dirk6c316f22015-06-27 15:44:29 +00001546 JsonFormatLocaleFile(file," \"numberPixels\": %s,\n",format);
cristy9e818982014-01-18 14:54:37 +00001547 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristy151b66d2015-04-15 10:50:31 +00001548 elapsed_time+0.5),MagickFalse,"B",MagickPathExtent,format);
dirk6c316f22015-06-27 15:44:29 +00001549 JsonFormatLocaleFile(file," \"pixelsPerSecond\": %s,\n",format);
1550 (void) FormatLocaleFile(file," \"userTime\": \"%0.3fu\",\n",user_time);
1551 (void) FormatLocaleFile(file," \"elapsedTime\": \"%lu:%02lu.%03lu\",\n",
1552 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(
1553 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-floor(
1554 elapsed_time))));
1555 JsonFormatLocaleFile(file," \"version\": %s\n",
1556 GetMagickVersion((size_t *) NULL));
1557 (void) FormatLocaleFile(file," }\n}\n");
cristy9e818982014-01-18 14:54:37 +00001558 (void) fflush(file);
1559 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1560}
1561
cristy3f07aa32014-01-18 01:16:33 +00001562static MagickBooleanType WriteJSONImage(const ImageInfo *image_info,
1563 Image *image,ExceptionInfo *exception)
1564{
dirk6c316f22015-06-27 15:44:29 +00001565 FILE
1566 *file;
1567
cristy3f07aa32014-01-18 01:16:33 +00001568 MagickBooleanType
1569 status;
1570
1571 MagickOffsetType
1572 scene;
1573
1574 /*
1575 Open output image file.
1576 */
1577 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001578 assert(image_info->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001579 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +00001580 assert(image->signature == MagickCoreSignature);
cristy3f07aa32014-01-18 01:16:33 +00001581 if (image->debug != MagickFalse)
1582 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1583 status=OpenBlob(image_info,image,WriteBlobMode,exception);
1584 if (status == MagickFalse)
1585 return(status);
dirk6c316f22015-06-27 15:44:29 +00001586 file=GetBlobFileHandle(image);
1587 if (file == (FILE *) NULL)
1588 file=stdout;
cristy3f07aa32014-01-18 01:16:33 +00001589 scene=0;
1590 do
1591 {
dirk6c316f22015-06-27 15:44:29 +00001592 WriteBlobString(image,"[");
cristy9e818982014-01-18 14:54:37 +00001593 image->magick_columns=image->columns;
1594 image->magick_rows=image->rows;
dirk6c316f22015-06-27 15:44:29 +00001595 EncodeImageAttributes(image,file,exception);
cristy3f07aa32014-01-18 01:16:33 +00001596 if (GetNextImageInList(image) == (Image *) NULL)
dirk6c316f22015-06-27 15:44:29 +00001597 {
1598 WriteBlobString(image,"]");
1599 break;
1600 }
1601 WriteBlobString(image,",\n");
cristy3f07aa32014-01-18 01:16:33 +00001602 image=SyncNextImageInList(image);
1603 status=SetImageProgress(image,SaveImagesTag,scene++,
1604 GetImageListLength(image));
1605 if (status == MagickFalse)
1606 break;
1607 } while (image_info->adjoin != MagickFalse);
1608 (void) CloseBlob(image);
1609 return(MagickTrue);
1610}