Javascript图像调整大小

时间:2008-10-04 16:39:32

标签: javascript internet-explorer-6 image-manipulation

有谁知道如何使用JavaScript按比例调整图片大小?

我试图通过动态添加属性heightwidth来修改DOM,但似乎无法在IE6上运行。

13 个答案:

答案 0 :(得分:65)

要按比例修改图像,只需更改其中一个宽度/高度css属性,将另一个设置保留为自动。

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

这将确保其宽高比保持不变。

请记住,浏览器在调整图像时很容易吮吸 - 您可能会发现调整后的图像看起来很糟糕。

答案 1 :(得分:18)

好吧它解决了,这是我的最终代码

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

谢谢你们

答案 2 :(得分:6)

不要修改图像的高度和宽度属性,而是尝试修改CSS高度和宽度。

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

一个常见的“问题”是高度和宽度样式是包含单位的字符串,如上例中的“px”。

编辑 - 我认为直接设置高度和宽度而不是使用style.height和style.width应该可行。它还具有已经具有原始尺寸的优点。你可以发布一些代码吗?你确定你处于标准模式而不是怪癖模式吗?

这应该有效:

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

答案 3 :(得分:5)

我在这里提出answered这个问题:How to resize images proportionally / keeping the aspect ratio?。我在这里复制它是因为我真的认为这是一种非常可靠的方法:)

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

答案 4 :(得分:4)

尝试了以下代码,在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和Opera 9.26中也可以。

答案 5 :(得分:3)

示例:如何使用百分比调整大小

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

答案 6 :(得分:2)

您不必使用Javascript。您只需创建一个CSS类并将其应用于您的标记。

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

答案 7 :(得分:2)

这适用于所有情况。

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

答案 8 :(得分:1)

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

答案 9 :(得分:1)

试试这个..

<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。点击提交。您将获得调整大小的图像。将图像路径替换为图像标记中的点。

答案 10 :(得分:0)

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元素或图像元素的id,以及新的宽度和高度。

或者你可以传递它只是宽度或只是高度(如果只是高度,然后将宽度传递为null或undefined)它将调整大小保持宽高比

答案 11 :(得分:0)

在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">

答案 12 :(得分:0)

这是我的封面填充解决方案(类似于background-size:封面,但它支持旧的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>