Kullanıcının bir resim koyabileceği bir forma sahip bir JPS'im var:
<div class="photo">
<div>Photo (max 240x240 and 100 kb):</div>
<input type="file" name="photo" id="photoInput" onchange="checkPhoto(this)"/>
</div>
Bu js'yi yazdım:
function checkPhoto(target) {
if(target.files[0].type.indexOf("image") == -1) {
document.getElementById("photoLabel").innerHTML = "File not supported";
return false;
}
if(target.files[0].size > 102400) {
document.getElementById("photoLabel").innerHTML = "Image too big (max 100kb)";
return false;
}
document.getElementById("photoLabel").innerHTML = "";
return true;
}
dosya türünü ve boyutunu kontrol etmek için iyi çalışıyor. Şimdi resim genişliğini ve yüksekliğini kontrol etmek istiyorum ama yapamıyorum.
Denedim target.files[0].width
ama anladım undefined
. Aldığım diğer yollarla 0
.
Baska öneri?