Cita:
Iniciado por Dradi7 Para que te pueda tomar los valores de width o height correctamente debes hacerlo en el evento onload de la imagen asi
Código Javascript
:
Ver originalimg.onload = function(){
document.getElementById("marco").innerHTML=text;
document.getElementById("marco").style.marginLeft="-"+parseInt(img.width/2);
document.getElementById("marco").style.marginTop="-"+parseInt(img.height/2);
document.getElementById("marco").style.display="block";
}
Gracias por la respuesta pero sigue sin funcionar :S