亚洲视频二区_亚洲欧洲日本天天堂在线观看_日韩一区二区在线观看_中文字幕不卡一区

公告:魔扣目錄網(wǎng)為廣大站長提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.430618.com 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

html5+canvas進(jìn)行移動端手機(jī)照片上傳時(shí),發(fā)現(xiàn)ios手機(jī)上傳豎拍照片會逆時(shí)針旋轉(zhuǎn)90度,橫拍照片無此問題;Android手機(jī)沒這個(gè)問題。

因此解決這個(gè)問題的思路是:獲取到照片拍攝的方向角,對非橫拍的ios照片進(jìn)行角度旋轉(zhuǎn)修正。

利用exif.js讀取照片的拍攝信息,詳見 http://code.ciaoca.com/javascript/exif-js/

這里主要用到Orientation屬性。

Orientation屬性說明如下:


旋轉(zhuǎn)角度參數(shù)
1
順時(shí)針90°6
逆時(shí)針90°8
180°3


<!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;
		//獲取照片方向角屬性,用戶旋轉(zhuǎn)控制
		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);
	}
}


用到的第三方j(luò)s文件:mobileBUGFix.mini.js



分享到:
標(biāo)簽:html5 canvas 手機(jī)端 上傳預(yù)覽
用戶無頭像

網(wǎng)友整理

注冊時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運(yùn)動步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定