Tenho imagens com dimensões bastante grandes e quero reduzi-las com o jQuery, mantendo as proporções restritas, ou seja, a mesma proporção.
Alguém pode me indicar algum código ou explicar a lógica?
<img src='image.jpg' width=200>
Tenho imagens com dimensões bastante grandes e quero reduzi-las com o jQuery, mantendo as proporções restritas, ou seja, a mesma proporção.
Alguém pode me indicar algum código ou explicar a lógica?
<img src='image.jpg' width=200>
Respostas:
Veja este código em 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
}
});
});
max-width
e max-height
para 100%
. jsfiddle.net/9EQ5c
Eu acho que esse é um método muito legal :
/**
* 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 };
}
Math.floor
realmente vai ajudar com um pixel de perfeita projeto :-)
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'; }
Se entendi a pergunta corretamente, você nem precisa do jQuery para isso. A redução proporcional da imagem no cliente pode ser feita apenas com CSS: basta definir its max-width
e max-height
to 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>
Aqui está o violino: http://jsfiddle.net/9EQ5c/
width: auto; height: auto;
para obter o seu código em execução :)
Para determinar a proporção , é necessário ter uma proporção a ser apontada.
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);
}
Neste exemplo, eu uso 16:10
desde essa a proporção típica do monitor.
var ratio = (16/10);
var height = getHeight(300,ratio);
var width = getWidth(height,ratio);
console.log(height);
console.log(width);
Os resultados acima seriam 147
e300
na verdade, acabei de encontrar esse problema e a solução que encontrei era estranhamente simples e estranha
$("#someimage").css({height:<some new height>})
e milagrosamente a imagem é redimensionada para a nova altura e conservando a mesma proporção!
Existem 4 parâmetros para este problema
E existem 3 parâmetros condicionais diferentes
solução
é tudo o que você precisa fazer.
//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 ;
Este é um fórum maduro, não estou lhe dando código para isso :)
Será que <img src="/path/to/pic.jpg" style="max-width:XXXpx; max-height:YYYpx;" >
ajuda?
O navegador cuidará de manter intacta a proporção.
ou seja, max-width
entra em ação quando a largura da imagem é maior que a altura e sua altura será calculada proporcionalmente. Da mesma forma, max-height
entrará em vigor quando a altura for maior que a largura.
Você não precisa de jQuery ou javascript para isso.
Suportado por ie7 + e outros navegadores ( http://caniuse.com/minmaxwh ).
Isso deve funcionar para imagens com todas as proporções possíveis
$(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
}
});
});
Aqui está uma correção para a resposta de Mehdiway. A nova largura e / ou altura não estavam sendo definidas para o valor máximo. Um bom caso de teste é o seguinte (1768 x 1075 pixels): http://spacecoastsports.com/wp-content/uploads/2014/06/sportsballs1.png . (Não pude comentar acima devido à falta de pontos de reputação.)
// 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);
}
}
$('#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
});
Se a imagem for proporcional, esse código preencherá o wrapper com a imagem. Se a imagem não for proporcional, a largura / altura extra será cortada.
<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>
Sem temporários ou suportes adicionais.
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;
}
Lembre-se: os mecanismos de pesquisa não gostam, se o atributo width e height não se encaixar na imagem, mas eles não conhecem o JS.
Após algumas tentativas e erros, cheguei a esta solução:
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";
}
O redimensionamento pode ser alcançado (mantendo a proporção) usando CSS. Esta é uma resposta mais simplificada, inspirada no post de Dan Dascalescu.
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"/>
2 Passos:
Etapa 1) calcule a proporção da largura / altura do original da imagem.
Etapa 2) multiplique a proporção original_width / original_height pela nova altura desejada para obter a nova largura correspondente à nova altura.
Este problema pode ser resolvido por CSS.
.image{
max-width:*px;
}
max-width
emax-height
como100%
.