web-dev-qa-db-ja.com

Javascript画像のサイズ変更

JavaScriptを使用して比例的に画像のサイズを変更する方法を知っていますか?

属性heightおよびwidthをその場で追加してDOMを変更しようとしましたが、IE6では機能しなかったようです。

44
Komang

画像を比例的に変更するには、幅/高さのCSSプロパティの1つのみを変更し、他の設定は自動のままにします。

image.style.width = '50%'
image.style.height = 'auto'

これにより、アスペクト比が同じままになります。

ブラウザはsuckで画像を適切にサイズ変更する傾向があることに注意してください-サイズ変更された画像が恐ろしく見えることに気付くでしょう。

65
Dan

大丈夫、解決しました、ここに私の最終的なコードがあります

if($(this).width() > $(this).height()) { 
 $(this).css('width',MaxPreviewDimension+'px');
 $(this).css('height','auto');
} else {
 $(this).css('height',MaxPreviewDimension+'px');
 $(this).css('width','auto');
}

みんなありがとう

18
Komang

画像の高さと幅の属性を変更する代わりに、CSSの高さと幅を変更してください。

myimg = document.getElementById('myimg');
myimg.style.height = "50px";
myimg.style.width = "50px";

一般的な「落とし穴」の1つは、高さと幅のスタイルが上記の例の「px」のような単位を含む文字列であることです。

編集-style.heightとstyle.widthを使用する代わりに、高さと幅を直接設定する必要があると思います。また、元の寸法をすでに持っているという利点もあります。コードを少し投稿できますか?互換モードではなく標準モードになっていますか?

これは動作するはずです:

myimg = document.getElementById('myimg');
myimg.height = myimg.height * 2;
myimg.width = myimg.width * 2;
5
Neall

回答済み この質問: 比例的に画像のサイズを変更する方法/アスペクト比を維持する方法 。私はそれが非常に信頼できる方法だと本当に思うので、ここにコピーしています:)

 /**
  * 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 };
 }
5
Jason J. Nathan

次のコードを試し、WinXP Pro SP3上のIE6で問題なく動作しました。

function Resize(imgId)
{
  var img = document.getElementById(imgId);
  var w = img.width, h = img.height;
  w /= 2; h /= 2;
  img.width = w; img.height = h;
}

FF3でもOK、Opera 9.26。

4
PhiLho

例:パーセントでサイズを変更する方法

<head>
    <script type="text/javascript">
        var CreateNewImage = function (url, value) {
            var img = new Image;
            img.src = url;
            img.width = img.width * (1 + (value / 100));
            img.height = img.height * (1 + (value / 100));

            var container = document.getElementById ("container");
            container.appendChild (img);
        }
    </script>
</head>
<body>
    <button onclick="CreateNewImage ('http://www.medellin.gov.co/transito/images_jq/imagen5.jpg', 40);">Zoom +40%</button>
    <button onclick="CreateNewImage ('http://www.medellin.gov.co/transito/images_jq/imagen5.jpg', 60);">Zoom +50%</button>
    <div id="container"></div>
</body>
3
equiman

これはすべての場合に有効です。

function resizeImg(imgId) {
    var img = document.getElementById(imgId);
    var $img = $(img);
    var maxWidth = 110;
    var maxHeight = 100;
    var width = img.width;
    var height = img.height;
    var aspectW = width / maxWidth;
    var aspectH = height / maxHeight;

    if (aspectW > 1 || aspectH > 1) {
        if (aspectW > aspectH) {
            $img.width(maxWidth);
            $img.height(height / aspectW);
        }
        else {
            $img.height(maxHeight);
            $img.width(width / aspectH);
        }
    }
}
2
user246340

Javascriptを使用する必要はありません。 CSSクラスを作成して、タグに適用するだけです。

.preview_image{
        width: 300px;
    height: auto;
    border: 0px;
}
2

これを試して..

<html>
<body>
<head>
<script type="text/javascript">
function splitString()
{
var myDimen=document.getElementById("dimen").value;
var splitDimen = myDimen.split("*");
document.getElementById("myImage").width=splitDimen[0];
document.getElementById("myImage").height=splitDimen[1];
}
</script>
</head>

<h2>Norwegian Mountain Trip</h2>
<img border="0" id="myImage" src="..." alt="Pulpit rock" width="304" height="228" /><br>
<input type="text" id="dimen" name="dimension" />
<input type="submit" value="Submit" Onclick ="splitString()"/>

</body>
</html>

テキストボックスに、希望どおりの寸法を50 * 60の形式で指定します。送信をクリックします。サイズ変更された画像を取得します。画像タグのドットの代わりに画像パスを指定します。

1
vadivu

JQueryを使用する

var scale=0.5;

minWidth=50;
minHeight=100;

if($("#id img").width()*scale>minWidth && $("#id img").height()*scale >minHeight)
{
    $("#id img").width($("#id img").width()*scale);
    $("#id img").height($("#id img").height()*scale);
}
1
Tim

javaScriptで画像のサイズを変更するには:

$(window).load(function() {
mitad();doble();
});
function mitad(){ 

    imag0.width=imag0.width/2;
    imag0.height=imag0.height/2;

    }
function doble(){ 
  imag0.width=imag0.width*2; 
  imag0.height=imag0.height*2;}

imag0は画像の名前です。

 <img src="xxx.jpg" name="imag0">
0
user2561474

ここに私のカバーフィルソリューションがあります(背景サイズ:カバーに似ていますが、古いIEブラウザ)をサポートしています)

<div class="imgContainer" style="height:100px; width:500px; overflow:hidden; background-color: black">
    <img src="http://dev.isaacsonwebdevelopment.com/sites/development/files/views-slideshow-settings-jquery-cycle-custom-options-message.png" id="imgCat">
</div>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.11.3.min.js"></script>
<script>
    $(window).load(function() {
        var heightRate =$("#imgCat").height() / $("#imgCat").parent(".imgContainer").height();
        var widthRate = $("#imgCat").width() / $("#imgCat").parent(".imgContainer").width();

        if (window.console) {
            console.log($("#imgCat").height());
            console.log(heightRate);
            console.log(widthRate);
            console.log(heightRate > widthRate);
        }
        if (heightRate <= widthRate) {
            $("#imgCat").height($("#imgCat").parent(".imgContainer").height());
        } else {
            $("#imgCat").width($("#imgCat").parent(".imgContainer").width());
        }
    });
</script>
0
Weijing Jay Lin
function resize_image(image, w, h) {

    if (typeof(image) != 'object') image = document.getElementById(image);

    if (w == null || w == undefined)
        w = (h / image.clientHeight) * image.clientWidth;

    if (h == null || h == undefined)
        h = (w / image.clientWidth) * image.clientHeight;

    image.style['height'] = h + 'px';
    image.style['width'] = w + 'px';
    return;
}

img DOM要素、またはimage要素のid、および新しい幅と高さを渡すだけです。

または、幅だけまたは高さだけを渡すことができます(高さだけの場合は、幅をnullまたは未定義として渡します)

0
Uther Pendragon