程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java 圖片處理-Jcrop 處理多張圖片時,尺寸不正確的問題

java 圖片處理-Jcrop 處理多張圖片時,尺寸不正確的問題

編輯:編程解疑
Jcrop 處理多張圖片時,尺寸不正確的問題

1,
圖片說明

2,
圖片說明

3,
什麼時候會動態加載照片?
用戶異步上傳圖片時,例如使用ajaxfileupload.js.
當用戶上傳了一張圖片後,又想換一張.
結果後來換的照片全部是按照第一張照片的尺寸顯示的,發生扭曲變形.

即使用jQuery修改圖片的尺寸也不行:
$("#target").attr("width","400");
$("#target").attr("height","250");

求解決方案,使得:每次動態加載的照片都能按照真實的尺寸顯示,而且還可以用Jcrop來選區區域.

源碼請下載附件, 所有的代碼都是前端的,下載後即可訪問,打開文件"crop.html".
下載鏈接: Jcrop 例子源碼
crop.html的全部代碼如下:

 <!DOCTYPE html>
<html lang="en">
<head>


<script src="js/jquery.min.js"></script>
<script src="js/jquery.Jcrop.js"></script>
<script type="text/javascript">


  jQuery(function($){

    var jcrop_api;

    initJcrop();

    $('#coords').on('change','input',function(e){
      var x1 = $('#x1').val(),
          x2 = $('#x2').val(),
          y1 = $('#y1').val(),
          y2 = $('#y2').val();
      jcrop_api.setSelect([x1,y1,x2,y2]);
    });

     function initJcrop()
    {
      $('#target').Jcrop({
      onChange:   showCoords,
      onSelect:   showCoords,
      onRelease:  clearCoords
    },function(){
      jcrop_api = this;
    });
    };



    $('#changeToWiderPicture').click(function(e) {
        jcrop_api.destroy();
      $("#target").attr("src","img/2.jpg");
      $("#target").attr("width","400");
      $("#target").attr("height","250");

      $("#normalPicture").attr("src","img/2.jpg");

      $("#normanPicureIntroduction").html("Original picure:400X250");

      $('#changeToWiderPicture').hide();
      $('#changeBack').show();
      initJcrop();
      return false;
    });
    $('#changeBack').click(function(e) {
     jcrop_api.destroy();
      $("#target").attr("src","img/1.jpg");
      $("#normalPicture").attr("src","img/1.jpg");
      $("#normanPicureIntroduction").html("Original picure:250X400");


      $('#changeBack').hide();
      $('#changeToWiderPicture').show();

      initJcrop();
      return false;
    });


  });


  function showCoords(c)
  {
    $('#x1').val(c.x);
    $('#y1').val(c.y);
    $('#x2').val(c.x2);
    $('#y2').val(c.y2);
    $('#w').val(c.w);
    $('#h').val(c.h);
  };

  function clearCoords()
  {
    $('#coords input').val('');
  };



</script>
<link rel="stylesheet" href="css/main.css" type="text/css" />
<link rel="stylesheet" href="css/demos.css" type="text/css" />
<link rel="stylesheet" href="css/jquery.Jcrop.css" type="text/css" />


</head>
<body>


<table>
<tr>
<td>
<img src="img/1.jpg" id="target" /><br>
Picture with Jcrop attached

</td>
<td width=40%> </td>
<td>
<img src="img/1.jpg" id="normalPicture" /><br>
<span id='normanPicureIntroduction'>Original picure:250X400</span>
</td>
</tr>
</table>

  <form id="coords"
    class="coords">

    <div class="inline-labels">
    <label>X1 <input type="text" size="4" id="x1" name="x1" /></label>
    <label>Y1 <input type="text" size="4" id="y1" name="y1" /></label>
    <label>X2 <input type="text" size="4" id="x2" name="x2" /></label>
    <label>Y2 <input type="text" size="4" id="y2" name="y2" /></label>
    <label>W <input type="text" size="4" id="w" name="w" /></label>
    <label>H <input type="text" size="4" id="h" name="h" /></label>
    </div>
  </form>


  <div style="padding-top:20px;">
    <button id="changeToWiderPicture" class="btn btn-mini">changeToWiderPicture</button>
    <button id="changeBack" class="btn btn-mini" style="display:none;" >changeBack</button>
  </div>


</body>
</html>


最佳回答:


我在stackoverflow找到答案了
要麼用
$('#image').removeAttr('style');
來去掉第一張圖片的樣式

要麼覆蓋掉對應的css樣式:
$("#target").css({"width":"400px" ,"height":"250px"});
因為: css 樣式的優先級是高於attribute的, 所以下面的attribute沒有生效:
$("#target").attr("width","400");
$("#target").attr("height","250");

所以,為了安全起見,盡量使用css樣式,而不是attribute.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved