web-dev-qa-db-ja.com

画像を縦横比を保ちながらどのようにリサイズするのですか?

サイズがかなり大きくなる画像があり、縦横比を制限したまま、つまり同じ縦横比でjQueryを使用して縮小したいと思います。

誰かが私にコードを指示したり、ロジックを説明したりできますか?

142
kobe

http://ericjuden.com/2009/07/jquery-image-resize/ からこのコードを見てください。

$(document).ready(function() {
    $('.story-small img').each(function() {
        var maxWidth = 100; // Max width for the image
        var maxHeight = 100;    // Max height for the image
        var ratio = 0;  // Used for aspect ratio
        var width = $(this).width();    // Current image width
        var height = $(this).height();  // Current image height

        // Check if the current width is larger than the max
        if(width > maxWidth){
            ratio = maxWidth / width;   // get ratio for scaling image
            $(this).css("width", maxWidth); // Set new width
            $(this).css("height", height * ratio);  // Scale height based on ratio
            height = height * ratio;    // Reset height to match scaled image
            width = width * ratio;    // Reset width to match scaled image
        }

        // Check if current height is larger than max
        if(height > maxHeight){
            ratio = maxHeight / height; // get ratio for scaling image
            $(this).css("height", maxHeight);   // Set new height
            $(this).css("width", width * ratio);    // Scale width based on ratio
            width = width * ratio;    // Reset width to match scaled image
            height = height * ratio;    // Reset height to match scaled image
        }
    });
});
165
Moin Zaman

私はこれが本当に---だと思います クールな方法

 /**
  * Conserve aspect ratio of the original region. Useful when shrinking/enlarging
  * images to fit into a certain area.
  *
  * @param {Number} srcWidth width of source image
  * @param {Number} srcHeight height of source image
  * @param {Number} maxWidth maximum available width
  * @param {Number} maxHeight maximum available height
  * @return {Object} { width, height }
  */
function calculateAspectRatioFit(srcWidth, srcHeight, maxWidth, maxHeight) {

    var ratio = Math.min(maxWidth / srcWidth, maxHeight / srcHeight);

    return { width: srcWidth*ratio, height: srcHeight*ratio };
 }
384
Jason J. Nathan

私が質問を正しく理解していれば、これにはjQueryも必要ありません。クライアント上で画像を比例して縮小するには、CSSだけで行うことができます。そのmax-widthmax-height100%に設定するだけです。

<div style="height: 100px">
<img src="http://www.getdigital.de/images/produkte/t4/t4_css_sucks2.jpg"
    style="max-height: 100%; max-width: 100%">
</div>​

これがフィドルです。 http://jsfiddle.net/9EQ5c/

63
Dan Dascalescu

アスペクト比 を決定するためには、目標とする比が必要です。

Height

function getHeight(length, ratio) {
  var height = ((length)/(Math.sqrt((Math.pow(ratio, 2)+1))));
  return Math.round(height);
}

Width

function getWidth(length, ratio) {
  var width = ((length)/(Math.sqrt((1)/(Math.pow(ratio, 2)+1))));
  return Math.round(width);
}

この例では16:10を使用しています。これは一般的なモニターの縦横比です。

var ratio = (16/10);
var height = getHeight(300,ratio);
var width = getWidth(height,ratio);

console.log(height);
console.log(width);

上記の結果は147300になります。

10
Rick

実際に私はちょうどこの問題に遭遇したと私が見つけた解決策は奇妙に単純で奇妙だった

$("#someimage").css({height:<some new height>})

奇跡的に画像は新しい高さに変更され、同じ比率を保ちます。

6
WindowsMaker

この問題には4つのパラメータがあります。

  1. 現在の画像幅iX
  2. 現在の画像の高さ
  3. ターゲットビューポート幅cX
  4. 目標ビューポートの高さcY

そして3つの異なる条件付きパラメーターがあります

  1. cX> cY?
  2. iX> cX?
  3. iY> cY?

溶液

  1. ターゲットビューポートFの小さい側を探します
  2. 現在のビューポートLの大きい方の側を見つける
  3. F/L = factorの両方の因子を求める
  4. 現在のポートの両側に係数を掛けます。すなわち、fX = iX * factorです。 fY = iY *係数

それがあなたがする必要があるすべてです。

//Pseudo code


iX;//current width of image in the client
iY;//current height of image in the client
cX;//configured width
cY;//configured height
fX;//final width
fY;//final height

1. check if iX,iY,cX,cY values are >0 and all values are not empty or not junk

2. lE = iX > iY ? iX: iY; //long Edge

3. if ( cX < cY )
   then
4.      factor = cX/lE;     
   else
5.      factor = cY/lE;

6. fX = iX * factor ; fY = iY * factor ; 

これは成熟したフォーラムです、私はあなたにそのためのコードを与えていません:)

4

<img src="/path/to/pic.jpg" style="max-width:XXXpx; max-height:YYYpx;" >は役に立ちますか?

ブラウザは縦横比をそのままに保ちます。

つまり、max-widthは、画像の幅が高さよりも大きい場合に開始し、その高さは比例して計算されます。同様に、max-heightは、heightがwidthより大きいときに有効になります。

これにはjQueryやJavaScriptは必要ありません。

Ie7 +および他のブラウザでサポートされています( http://caniuse.com/minmaxwh )。

4
sojin
$('#productThumb img').each(function() {
    var maxWidth = 140; // Max width for the image
    var maxHeight = 140;    // Max height for the image
    var ratio = 0;  // Used for aspect ratio
    var width = $(this).width();    // Current image width
    var height = $(this).height();  // Current image height
    // Check if the current width is larger than the max
    if(width > height){
        height = ( height / width ) * maxHeight;

    } else if(height > width){
        maxWidth = (width/height)* maxWidth;
    }
    $(this).css("width", maxWidth); // Set new width
    $(this).css("height", maxHeight);  // Scale height based on ratio
});
2
khalid khan

これは、すべての縦横比を持つ画像に対して機能します。

$(document).ready(function() {
    $('.list img').each(function() {
        var maxWidth = 100;
        var maxHeight = 100;
        var width = $(this).width();
        var height = $(this).height();
        var ratioW = maxWidth / width;  // Width ratio
        var ratioH = maxHeight / height;  // Height ratio

        // If height ratio is bigger then we need to scale height
        if(ratioH > ratioW){
            $(this).css("width", maxWidth);
            $(this).css("height", height * ratioW);  // Scale height according to width ratio
        }
        else{ // otherwise we scale width
            $(this).css("height", maxHeight);
            $(this).css("width", height * ratioH);  // according to height ratio
        }
    });
});
2
Ajjaah

サイズ変更はCSSを使って(アスペクト比を維持して)達成することができます。これはDan Dascalescuの投稿に触発された、さらに単純化された答えです。

http://jsbin.com/viqare

img{
     max-width:200px;
 /*Or define max-height*/
  }
<img src="http://e1.365dm.com/13/07/4-3/20/alastair-cook-ashes-profile_2967773.jpg"  alt="Alastair Cook" />

<img src="http://e1.365dm.com/13/07/4-3/20/usman-khawaja-australia-profile_2974601.jpg" alt="Usman Khawaja"/>
1
rush dee

いくつかの試行錯誤の後、私はこの解決策に至りました:

function center(img) {
    var div = img.parentNode;
    var divW = parseInt(div.style.width);
    var divH = parseInt(div.style.height);
    var srcW = img.width;
    var srcH = img.height;
    var ratio = Math.min(divW/srcW, divH/srcH);
    var newW = img.width * ratio;
    var newH = img.height * ratio;
    img.style.width  = newW + "px";
    img.style.height = newH + "px";
    img.style.marginTop = (divH-newH)/2 + "px";
    img.style.marginLeft = (divW-newW)/2 + "px";
}
1

追加のtemp-varまたはブラケットなし。

    var width= $(this).width(), height= $(this).height()
      , maxWidth=100, maxHeight= 100;

    if(width > maxWidth){
      height = Math.floor( maxWidth * height / width );
      width = maxWidth
      }
    if(height > maxHeight){
      width = Math.floor( maxHeight * width / height );
      height = maxHeight;
      }

覚えておいてください:幅と高さの属性が画像に合わない場合、検索エンジンはそれを好きではありませんが、彼らはJSを知りません。

1
B.F.

画像が適切であれば、このコードはラッパーを画像で埋めます。画像が比例していない場合は、余分な幅/高さがトリミングされます。

    <script type="text/javascript">
        $(function(){
            $('#slider img').each(function(){
                var ReqWidth = 1000; // Max width for the image
                var ReqHeight = 300; // Max height for the image
                var width = $(this).width(); // Current image width
                var height = $(this).height(); // Current image height
                // Check if the current width is larger than the max
                if (width > height && height < ReqHeight) {

                    $(this).css("min-height", ReqHeight); // Set new height
                }
                else 
                    if (width > height && width < ReqWidth) {

                        $(this).css("min-width", ReqWidth); // Set new width
                    }
                    else 
                        if (width > height && width > ReqWidth) {

                            $(this).css("max-width", ReqWidth); // Set new width
                        }
                        else 
                            (height > width && width < ReqWidth)
                {

                    $(this).css("min-width", ReqWidth); // Set new width
                }
            });
        });
    </script>
1
Anu

これがMehdiwayの答えに対する訂正です。新しい幅や高さが最大値に設定されていませんでした。適切なテストケースは次のとおりです(1768 x 1075ピクセル)。 http://spacecoastsports.com/wp-content/uploads/2014/06/sportsballs1.png (評判ポイントが不足しているため、私は上でそれについてコメントすることができませんでした。)

  // Make sure image doesn't exceed 100x100 pixels
  // note: takes jQuery img object not HTML: so width is a function
  // not a property.
  function resize_image (image) {
      var maxWidth = 100;           // Max width for the image
      var maxHeight = 100;          // Max height for the image
      var ratio = 0;                // Used for aspect ratio

      // Get current dimensions
      var width = image.width()
      var height = image.height(); 
      console.log("dimensions: " + width + "x" + height);

      // If the current width is larger than the max, scale height
      // to ratio of max width to current and then set width to max.
      if (width > maxWidth) {
          console.log("Shrinking width (and scaling height)")
          ratio = maxWidth / width;
          height = height * ratio;
          width = maxWidth;
          image.css("width", width);
          image.css("height", height);
          console.log("new dimensions: " + width + "x" + height);
      }

      // If the current height is larger than the max, scale width
      // to ratio of max height to current and then set height to max.
      if (height > maxHeight) {
          console.log("Shrinking height (and scaling width)")
          ratio = maxHeight / height;
          width = width * ratio;
          height = maxHeight;
          image.css("width", width);
          image.css("height", height);
          console.log("new dimensions: " + width + "x" + height);
      }
  }
1
Tom O'Hara

2つのステップ:

ステップ1)画像の元の幅/元の高さの比を計算する。

ステップ2)新しい幅に対応する新しい幅を得るために、元の幅/元の高さの比に新しい所望の高さを掛ける。

0
Hitesh Ranaut

この作品を見てください...

/**
 * @param {Number} width
 * @param {Number} height
 * @param {Number} destWidth
 * @param {Number} destHeight
 * 
 * @return {width: Number, height:Number}
 */
function resizeKeepingRatio(width, height, destWidth, destHeight)
{
    if (!width || !height || width <= 0 || height <= 0)
    {
        throw "Params error";
    }
    var ratioW = width / destWidth;
    var ratioH = height / destHeight;
    if (ratioW <= 1 && ratioH <= 1)
    {
        var ratio = 1 / ((ratioW > ratioH) ? ratioW : ratioH);
        width *= ratio;
        height *= ratio;
    }
    else if (ratioW > 1 && ratioH <= 1)
    {
        var ratio = 1 / ratioW;
        width *= ratio;
        height *= ratio;
    }
    else if (ratioW <= 1 && ratioH > 1)
    {
        var ratio = 1 / ratioH;
        width *= ratio;
        height *= ratio;
    }
    else if (ratioW >= 1 && ratioH >= 1)
    {
        var ratio = 1 / ((ratioW > ratioH) ? ratioW : ratioH);
        width *= ratio;
        height *= ratio;
    }
    return {
        width : width,
        height : height
    };
}
0
noopmk