web-dev-qa-db-ja.com

jQueryのサイズをアスペクト比に変更

JQueryで画像のサイズを一定のアスペクト比に変更するにはどうすればよいですか。たとえば、最大の高さを設定し、幅のサイズを正しく変更します。ありがとう。

13
usertest

これは手動で計算できますが、

つまり:

function GetWidth(newHeight,orginalWidth,originalHeight)
{
if(currentHeight == 0)return newHeight;
var aspectRatio = currentWidth / currentHeight;
return newHeight * aspectRatio;
}

画像には必ずORIGINAL値を使用してください。使用しないと、時間の経過とともに劣化します。

編集:jQueryバージョンの例(テストされていません)

jQuery.fn.resizeHeightMaintainRatio = function(newHeight){
    var aspectRatio = $(this).data('aspectRatio');
    if (aspectRatio == undefined) {
        aspectRatio = $(this).width() / $(this).height();
        $(this).data('aspectRatio', aspectRatio);
    }
    $(this).height(newHeight); 
    $(this).width(parseInt(newHeight * aspectRatio));
}
13
Paul

これがあなたが望むことをするかもしれない便利な関数です:

jQuery.fn.fitToParent = function()
{
    this.each(function()
    {
        var width  = $(this).width();
        var height = $(this).height();
        var parentWidth  = $(this).parent().width();
        var parentHeight = $(this).parent().height();

        if(width/parentWidth < height/parentHeight) {
            newWidth  = parentWidth;
            newHeight = newWidth/width*height;
        }
        else {
            newHeight = parentHeight;
            newWidth  = newHeight/height*width;
        }
        var margin_top  = (parentHeight - newHeight) / 2;
        var margin_left = (parentWidth  - newWidth ) / 2;

        $(this).css({'margin-top' :margin_top  + 'px',
                     'margin-left':margin_left + 'px',
                     'height'     :newHeight   + 'px',
                     'width'      :newWidth    + 'px'});
    });
};

基本的に、要素を取得し、親の中央に配置してから、アスペクト比を維持しながら、親の背景が表示されないように要素を引き伸ばします。

繰り返しますが、これはあなたがやりたいことではないかもしれません。

19
Eric

使用 JQuery UIサイズ変更可能

$("#some_image").resizable({ aspectRatio:true, maxHeight:300 });

アスペクト比:true->元のアスペクト比を維持

7
Jason Harwig

そこにコピーとペーストの量の説明はありませんええ!私もこれを知りたかったのですが、私が見たのはスケーリング幅OR高さ..他のオーバーフローを誰が望んでいるのか?!

  • ループを必要とせずに幅と高さのサイズを変更する
  • 画像の元の寸法を超えない
  • 適切に機能する計算を使用します。つまり、幅/高さのアスペクト、および高さ*幅のアスペクトで、画像が実際に適切に上下に拡大縮小されます:/

Javascriptまたは他の言語に変換するのに十分簡単である必要があります

//////////////

private void ResizeImage(Image img, double maxWidth, double maxHeight)
{
    double srcWidth = img.Width;
    double srcHeight = img.Height;

    double resizeWidth = srcWidth;
    double resizeHeight = srcHeight;

    double aspect = resizeWidth / resizeHeight;

    if (resizeWidth > maxWidth)
    {
        resizeWidth = maxWidth;
        resizeHeight = resizeWidth / aspect;
    }
    if (resizeHeight > maxHeight)
    {
        aspect = resizeWidth / resizeHeight;
        resizeHeight = maxHeight;
        resizeWidth = resizeHeight * aspect;
    }

    img.Width = resizeWidth;
    img.Height = resizeHeight;
}
1
Dominic

これは、トリミング後に完全な高さと幅のアスペクト比が必要な場合に適したソリューションであり、完全なトリミング比率が得られます。

getPerfectRatio(img,widthRatio,heightRatio){

  if(widthRatio < heightRatio){
    var height = img.scalingHeight - (img.scalingHeight % heightRatio);
    var finalHeight = height
    var finalWidth = widthRatio * (height/heightRatio);

    img.cropHeight = finalHeight;
    img.cropWidth = finalWidth
  }
  if(heightRatio < widthRatio){;
    var width = img.scalingWidth - (img.scalingWidth % widthRatio);
    var finalWidth = width;
    var finalHeight  = heightRatio * (width/widthRatio);
    img.cropHeight = finalHeight;
    img.cropWidth = finalWidth
  }

  return img
  
}
0
sourabh