|
39 | 39 | - [Meta data parsing](#meta-data-parsing) |
40 | 40 | - [Image head](#image-head) |
41 | 41 | - [Exif parser](#exif-parser) |
| 42 | + - [Exif parser options](#exif-parser-options) |
42 | 43 | - [Exif writer](#exif-writer) |
43 | 44 | - [IPTC parser](#iptc-parser) |
| 45 | + - [IPTC parser options](#iptc-parser-options) |
44 | 46 | - [License](#license) |
45 | 47 | - [Credits](#credits) |
46 | 48 |
|
@@ -481,8 +483,9 @@ var name = data.exif.getName(0x0112) // Orientation |
481 | 483 | var allTags = data.exif.getAll() |
482 | 484 | ``` |
483 | 485 |
|
484 | | -The Exif parser also adds additional options for the parseMetaData method, to |
485 | | -disable certain aspects of the parser: |
| 486 | +#### Exif parser options |
| 487 | + |
| 488 | +The Exif parser adds additional options: |
486 | 489 |
|
487 | 490 | - `disableExif`: Disables Exif parsing when `true`. |
488 | 491 | - `disableExifThumbnail`: Disables parsing of Thumbnail data when `true`. |
@@ -599,8 +602,9 @@ var name = data.iptc.getName(5) // ObjectName |
599 | 602 | var allTags = data.iptc.getAll() |
600 | 603 | ``` |
601 | 604 |
|
602 | | -The IPTC parser also adds additional options for the parseMetaData method, to |
603 | | -disable certain aspects of the parser: |
| 605 | +#### IPTC parser options |
| 606 | + |
| 607 | +The IPTC parser adds additional options: |
604 | 608 |
|
605 | 609 | - `disableIptc`: Disables IPTC parsing when true. |
606 | 610 | - `disableIptcOffsets`: Disables storing IPTC tag offsets when `true`. |
|
0 commit comments