Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 09dd2c5

Browse files
committed
Update project description.
1 parent bc66fda commit 09dd2c5

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,15 @@
5656

5757
## Description
5858

59-
JavaScript Load Image is a library to load images provided as File or Blob
60-
objects or via URL. It returns an optionally scaled and/or cropped HTML img or
61-
canvas element. It also provides methods to parse image meta data to extract
62-
IPTC and Exif tags as well as embedded thumbnail images and to restore the
63-
complete image header after resizing.
59+
JavaScript Load Image is a library to load images provided as `File` or `Blob`
60+
objects or via `URL`. It returns an optionally **scaled**, **cropped** or
61+
**rotated** HTML `img` or `canvas` element.
62+
63+
It also provides methods to parse image metadata to extract
64+
[IPTC](https://iptc.org/standards/photo-metadata/) and
65+
[Exif](https://en.wikipedia.org/wiki/Exif) tags as well as embedded thumbnail
66+
images, to overwrite the Exif Orientation value and to restore the complete
67+
image header after resizing.
6468

6569
## Setup
6670

index.html

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<title>JavaScript Load Image</title>
2121
<meta
2222
name="description"
23-
content="JavaScript Load Image is a library to load images provided as File or Blob objects or via URL. It returns an optionally scaled and/or cropped HTML img or canvas element. It also provides methods to parse image meta data to extract IPTC and Exif tags as well as embedded thumbnail images and to restore the complete image header after resizing."
23+
content="JavaScript Load Image is a library to load images provided as File or Blob objects or via URL. It returns an optionally scaled, cropped or rotated HTML img or canvas element. It also provides methods to parse image metadata to extract IPTC and Exif tags as well as embedded thumbnail images, to overwrite the Exif Orientation value and to restore the complete image header after resizing."
2424
/>
2525
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2626
<!--
@@ -39,17 +39,19 @@ <h1>JavaScript Load Image Demo</h1>
3939
<a href="https://developer.mozilla.org/en/DOM/File">File</a> or
4040
<a href="https://developer.mozilla.org/en/DOM/Blob">Blob</a> objects or
4141
via URL.<br />
42-
It returns an optionally <strong>scaled</strong> and/or
43-
<strong>cropped</strong> HTML
42+
It returns an optionally <strong>scaled</strong>,
43+
<strong>cropped</strong> or <strong>rotated</strong> HTML
4444
<a href="https://developer.mozilla.org/en/docs/HTML/Element/Img">img</a>
4545
or
4646
<a href="https://developer.mozilla.org/en/docs/HTML/Canvas">canvas</a>
47-
element.<br />
48-
It also provides a method to parse image meta data to extract
47+
element.
48+
</p>
49+
<p>
50+
It also provides methods to parse image metadata to extract
4951
<a href="https://iptc.org/standards/photo-metadata/">IPTC</a> and
5052
<a href="https://en.wikipedia.org/wiki/Exif">Exif</a> tags as well as
51-
embedded thumbnail images and to restore the complete image header after
52-
resizing.
53+
embedded thumbnail images, to overwrite the Exif Orientation value and to
54+
restore the complete image header after resizing.
5355
</p>
5456
<ul id="navigation">
5557
<li>

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "blueimp-load-image",
33
"version": "5.0.1",
44
"title": "JavaScript Load Image",
5-
"description": "JavaScript Load Image is a library to load images provided as File or Blob objects or via URL. It returns an optionally scaled and/or cropped HTML img or canvas element. It also provides methods to parse image meta data to extract IPTC and Exif tags as well as embedded thumbnail images and to restore the complete image header after resizing.",
5+
"description": "JavaScript Load Image is a library to load images provided as File or Blob objects or via URL. It returns an optionally scaled, cropped or rotated HTML img or canvas element. It also provides methods to parse image metadata to extract IPTC and Exif tags as well as embedded thumbnail images, to overwrite the Exif Orientation value and to restore the complete image header after resizing.",
66
"keywords": [
77
"javascript",
88
"load",
@@ -13,13 +13,14 @@
1313
"url",
1414
"scale",
1515
"crop",
16+
"rotate",
1617
"img",
1718
"canvas",
1819
"meta",
1920
"exif",
20-
"iptc",
21+
"orientation",
2122
"thumbnail",
22-
"resizing"
23+
"iptc"
2324
],
2425
"homepage": "https://github.com/blueimp/JavaScript-Load-Image",
2526
"author": {

0 commit comments

Comments
 (0)