Skip to content

Commit 2715acb

Browse files
committed
Add headlines for the Exif/IPTC parser options.
1 parent addca35 commit 2715acb

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@
3939
- [Meta data parsing](#meta-data-parsing)
4040
- [Image head](#image-head)
4141
- [Exif parser](#exif-parser)
42+
- [Exif parser options](#exif-parser-options)
4243
- [Exif writer](#exif-writer)
4344
- [IPTC parser](#iptc-parser)
45+
- [IPTC parser options](#iptc-parser-options)
4446
- [License](#license)
4547
- [Credits](#credits)
4648

@@ -481,8 +483,9 @@ var name = data.exif.getName(0x0112) // Orientation
481483
var allTags = data.exif.getAll()
482484
```
483485

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:
486489

487490
- `disableExif`: Disables Exif parsing when `true`.
488491
- `disableExifThumbnail`: Disables parsing of Thumbnail data when `true`.
@@ -599,8 +602,9 @@ var name = data.iptc.getName(5) // ObjectName
599602
var allTags = data.iptc.getAll()
600603
```
601604

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:
604608

605609
- `disableIptc`: Disables IPTC parsing when true.
606610
- `disableIptcOffsets`: Disables storing IPTC tag offsets when `true`.

0 commit comments

Comments
 (0)