html 5 + exif. js + canvas 핸드폰 엔 드 사진 업로드 미리 보기, 압축, 회전 기능 실현

7222 단어
html 5 + canvas 가 모 바 일 폰 사진 을 업로드 할 때 ios 핸드폰 에 세로 사진 을 올 리 면 시계 반대 방향 으로 90 도 회전 하고 가로 사진 은 문제 가 없 음 을 발견 했다.안 드 로 이 드 핸드폰 은 그런 문제 없어 요.
따라서 이 문 제 를 해결 하 는 방향 은 사진 촬영 의 방향 각 을 얻 고 가로로 찍 지 않 은 ios 사진 을 각도 회전 수정 하 는 것 이다.
exif. js 를 이용 하여 사진 의 촬영 정 보 를 읽 습 니 다. 자세 한 내용 은 다음 과 같 습 니 다.  http://code.ciaoca.com/javascript/exif-js/
여 기 는 주로 Orientation 。Orientation 속성 설명 은 다음 과 같다.
1
90° 6
90° 8
180° 3


html5 :

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <title>    </title>
    <script type="text/javascript" src="js/jquery-1.8.3.js"></script>
    <script type="text/javascript" src="js/uploadPicture/mobileBUGFix.mini.js" ></script>
    <script type="text/javascript" src="js/uploadPicture/uploadImage.js" ></script>
        <script type="text/javascript" src="js/exif.js" ></script>
</head>
<body>
	<div style="height: 50px; line-height: 50px;text-align: center;border-bottom: 1px solid #171E28;">
			    :
			<input type="file" accept="image/*" id="uploadImage" capture="camera" onchange="selectFileImage(this);" />
		</div>
		<div style="margin-top: 10px;">
			<img alt="preview" src="" id="myImage"/>
		</div>
</body>
</html>

js:
function selectFileImage(fileObj) {
	var file = fileObj.files['0'];
	//      added by lzk
	var Orientation = null;
	
	if (file) {
		console.log("    ,   ...");
		var rFilter = /^(image\/jpeg|image\/png)$/i; //       
		if (!rFilter.test(file.type)) {
			//showMyTips("   jpeg、png     ", false);
			return;
		}
		// var URL = URL || webkitURL;
		//         ,      
		EXIF.getData(file, function() {
		   // alert(EXIF.pretty(this));
		    EXIF.getAllTags(this); 
		    //alert(EXIF.getTag(this, 'Orientation')); 
		    Orientation = EXIF.getTag(this, 'Orientation');
		    //return;
		});
		
		var oReader = new FileReader();
		oReader.onload = function(e) {
			//var blob = URL.createObjectURL(file);
			//_compress(blob, file, basePath);
			var image = new Image();
			image.src = e.target.result;
			image.onload = function() {
				var expectWidth = this.naturalWidth;
				var expectHeight = this.naturalHeight;
				
				if (this.naturalWidth > this.naturalHeight && this.naturalWidth > 800) {
					expectWidth = 800;
					expectHeight = expectWidth * this.naturalHeight / this.naturalWidth;
				} else if (this.naturalHeight > this.naturalWidth && this.naturalHeight > 1200) {
					expectHeight = 1200;
					expectWidth = expectHeight * this.naturalWidth / this.naturalHeight;
				}
				alert(expectWidth+','+expectHeight);
				var canvas = document.createElement("canvas");
				var ctx = canvas.getContext("2d");
				canvas.width = expectWidth;
				canvas.height = expectHeight;
				ctx.drawImage(this, 0, 0, expectWidth, expectHeight);
				alert(canvas.width+','+canvas.height);
				
				var base64 = null;
				var mpImg = new MegaPixImage(image);
					mpImg.render(canvas, {
						maxWidth: 800,
						maxHeight: 1200,
						quality: 0.8,
						orientation: Orientation
					});
					
				base64 = canvas.toDataURL("image/jpeg", 0.8);
				
				//uploadImage(base64);
				$("#myImage").attr("src", base64);
			};
		};
		oReader.readAsDataURL(file);
	}
}

js :mobileBUGFix.mini.js


demo :

http://download.csdn.net/detail/linlzk/9127441


좋은 웹페이지 즐겨찾기