Skip to content

Commit f905b15

Browse files
committed
Fix scaling images on iOS which are not subsampled, but do suffer a vertical squash.
1 parent c1b88ae commit f905b15

5 files changed

+6
-6
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blueimp-load-image",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"title": "JavaScript Load Image",
55
"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 a method to parse image meta data to extract Exif tags and thumbnails and to restore the complete image header after resizing.",
66
"keywords": [

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h2>Exif meta data</h2>
6363
<script src="js/load-image-exif.js"></script>
6464
<script src="js/load-image-exif-map.js"></script>
6565
<!-- jQuery and Jcrop are not required by JavaScript Load Image, but included for the demo -->
66-
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
66+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
6767
<script src="js/vendor/jquery.Jcrop.js"></script>
6868
<script src="js/demo.js"></script>
6969
</body>

js/load-image-ios.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* JavaScript Load Image iOS scaling fixes 1.0.2
2+
* JavaScript Load Image iOS scaling fixes 1.0.3
33
* https://github.com/blueimp/JavaScript-Load-Image
44
*
55
* Copyright 2013, Sebastian Tschan
@@ -119,7 +119,7 @@
119119
sourceHeight /= 2;
120120
}
121121
vertSquashRatio = loadImage.detectVerticalSquash(img, subsampled);
122-
if (subsampled && vertSquashRatio !== 1) {
122+
if (subsampled || vertSquashRatio !== 1) {
123123
sourceY *= vertSquashRatio;
124124
destWidth = Math.ceil(tileSize * destWidth / sourceWidth);
125125
destHeight = Math.ceil(

js/load-image.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blueimp-load-image",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"title": "JavaScript Load Image",
55
"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 a method to parse image meta data to extract Exif tags and thumbnails and to restore the complete image header after resizing.",
66
"keywords": [

0 commit comments

Comments
 (0)