縦横比を維持しながら画像を比例的にサイズ変更する方法は?


167

寸法が非常に大きくなる画像があり、縦横比を維持したまま、つまり同じアスペクト比を維持しながら、jQueryで縮小したい。

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


4
jQueryを使用する必要がある理由を詳しく説明してください。CSS-唯一の解決策は、(参照あります私の答えを):その設定max-widthmax-heightします100%
Dan Dascalescu 2012

9
だれもが知らない場合に備えて、画像の1つの寸法(幅または高さ)のみを設定した場合、それに比例してサイズが変更されます。Webの黎明期からこのようになっています。例:<img src='image.jpg' width=200>
GetFree

2
また、slimmage.jsなどを使用して、帯域幅とモバイルデバイスのRAMを節約することも検討してください。
リリスリバー

回答:


188

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
        }
    });
});

1
申し訳ありませんが、数学者のロジックが不足しています...すべてを増やす必要がある場合はどうでしょう(たとえば、maxHeightを増やしているとします)。
ベン

4
これはCSSだけでできますか?(最大幅、高さ:自動など?)
Tronathan

11
なぜjQueryが必要なのかわからない。クライアントに比例した画像を縮小するには、CSSで行うことができ、そしてそれは些細です:ちょうどその設定max-widthmax-heightします100%jsfiddle.net/9EQ5c
Dan Dascalescu 2012

10
これは、IFステートメントのため、CSSでは実行できません。ポイントはサムネイル画像を埋めることだと思います。画像が高すぎる場合は、最大幅にする必要があります。画像が広すぎる場合は、最大高さにする必要があります。CSSのmax-width、max-heightを実行すると、完全に入力されるのではなく、空白を含むサムネイルが表示されます
ntgCleaner

このコードは、ブラウザで問題を引き起こしたり、クラッシュしたり、遅くなったりする可能性がありますか?
デジャボンド

442

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

 /**
  * 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 };
 }

33
非常に優れた答え!高さと幅の両方が大きい場合、正解はその面で平らになります。本当に、いい口ひげ。
スターカーズ2013年

1
あなたはその@sstaurossについて正しい、小数ピクセルはわずかに予期しない結果をもたらす可能性があります。しかし、私のユースケースでは、それはごくわずかでした。ピクセルパーフェクトなデザインにMath.floor本当に役立つと 思います:-)
Jason J. Nathan

1
おかげで、これはほぼ「ワンライナー」が必要でした。
エルナン

1
Jasonに感謝します。この回答は本当に役に立ちました。
Ashok Shah

4
これはこの問題を処理する素晴らしい方法です!私は+画像を拡大防止のimg要素のためにそれを少し微調整:function imgSizeFit(img, maxWidth, maxHeight){ var ratio = Math.min(1, maxWidth / img.naturalWidth, maxHeight / img.naturalHeight); img.style.width = img.naturalWidth * ratio + 'px'; img.style.height = img.naturalHeight * ratio + 'px'; }
oriadam

70

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

<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/


2
これは上記よりはるかに簡単な答えです。ありがとう。ところで、あなたの投稿にスクロールダウンするための「私の回答」リンクはどのようにして手に入れたのですか?
SnareChops、

@SnareChops:それは単なるHTMLアンカーです。
Dan Dascalescu 2013年

1
@SnareChops:回答の下の「共有」リンクで指定されたリンクを使用すると、回答までスクロールします。
Flimm 2013

1
@Flimmスパンが表示されないため:デフォルトではブロックします。display:ブロックを追加するか、divにします。
mahemoff 2013年

1
私の場合、IMGはWordPressでレンダリングされたので、幅と高さが設定されています。CSSではwidth: auto; height: auto;、コードを実行するように設定する必要もありました:)
lippoliv 14

12

アスペクト比を決定するには、目的の比率が必要です。

高さ

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

幅

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


考慮して、300 =対角幅=高さ*比率と高さはあなたが言ったのと同じです
ジョニーパイ

6

実際に私はこの問題に遭遇しました、そして私が見つけた解決策は奇妙に単純で奇妙でした

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

奇跡的に、画像は新しい高さにサイズ変更され、同じ比率を維持します!


1
これは便利だと思いますが、非常に幅広の場合、画像を
最大幅に

これは、他の属性を設定しなくても機能します。(この場合の幅)
NoobishPro 2017

4

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

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

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

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

解決

  1. ターゲットビューポートFの小さい側を見つけます
  2. 現在のビューポートLの大きい側を見つけます
  3. 両方の係数を見つけるF / L =係数
  4. 現在のポートの両側を係数で乗算します。つまり、fX = iX *係数。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 ; 

これは成熟したフォーラムです。そのためのコードは提供していません:)


2
この背後にあるメソッドを投稿するのは素晴らしいことですが、実際にコードを投稿してユーザーを支援していないことを認めます。少し邪魔に見える
Doidgey 2013年

6
「誰かが私にコードを指摘したり、ロジックを説明したりできますか?」-明らかに彼は彼に説明された方法だけを持っていても大丈夫でした。個人的には、コードをコピーして貼り付けるよりも、メソッドを理解するのを助けるために、これが誰かを支援するより良い方法だと思います。
JessMcintosh 2013

@JessMcintosh、元の質問に対するバジリオンの編集を同情し、コメントをコンテキスト外にレンダリングしました:)
Jason J. Nathan

4

DOESの<img src="/path/to/pic.jpg" style="max-width:XXXpx; max-height:YYYpx;" >ヘルプ?

ブラウザは、アスペクト比をそのまま維持することを担当します。

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

このためにjQueryやJavaScriptは必要ありません。

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


すばらしいヒントです。CSSをCSSファイルに配置するだけで、HTMLコードには直接配置しません。
マーク・

これの問題は、ページが読み込まれるまで、最大幅と最大高さがわからない場合は機能しないことだと思います。そのため、JSソリューションが必要です。これは通常、レスポンシブサイトの場合です。
Jason J. Nathan、

2

これは、可能なすべての比率の画像で機能するはずです。

$(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

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);
      }
  }

2
$('#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
});

5
投稿に回答するときは、コードだけでなく、説明を追加することを検討してください。
–JørgenR 2012

1

画像が比例している場合、このコードはラッパーを画像で埋めます。画像が比例していない場合、余分な幅/高さが切り取られます。

    <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

追加の一時変数またはブラケットなし。

    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

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

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

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

2ステップ:

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

ステップ2)original_width / original_height比に新しい希望の高さを掛けて、新しい高さに対応する新しい幅を取得します。



-4

これはドラッグ可能なアイテムのために私にとって完全に機能しました-aspectRatio:true

.appendTo(divwrapper).resizable({
    aspectRatio: true,
    handles: 'se',
    stop: resizestop 
})
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.