09/10/2018, 18:14

xác định kích thước ảnh???????????

giả sử khi nhập url của một tấm ảnh vào thì làm sao để lấy kích thước của nó
vnpenguin viết 20:21 ngày 09/10/2018
PHP ? Perl ? hay cai gi ???
ntn005 viết 20:20 ngày 09/10/2018
Quote Được gửi bởi namtuocbongtoi
giả sử khi nhập url của một tấm ảnh vào thì làm sao để lấy kích thước của nó
kích thước = size hả ?(phải ko ta) nếu phải thì vào properties mà xem
namtuocbongtoi viết 20:29 ngày 09/10/2018
dùng ASP
kích thước tức là chiều dài,rộng
quachhylam viết 20:28 ngày 09/10/2018
Chào
Mình cũng đang thắc mắc vấn đề này (nhưng xác định bằng PHP)
Sao không ai chỉ giải đáp hết vậy, giúp với, Thanks!!!
vnpenguin viết 20:24 ngày 09/10/2018
PHP: getimagesize
Code:
Description
array getimagesize ( string filename [, array imageinfo])

The getimagesize() function will determine the size of any GIF, JPG, PNG, SWF, 
SWC, PSD, TIFF, BMP, IFF, JP2, JPX, JB2, JPC, XBM, or WBMP image file and 
return the dimensions along with the file type and a height/width text string 
to be used inside a normal HTML IMG tag.

Note: Support for JPC, JP2, JPX, JB2, XBM, and WBMP became available in PHP
 4.3.2. Support for SWC as of PHP 4.3.0. 

Returns an array with 4 elements. Index 0 contains the width of the image in
 pixels. Index 1 contains the height. Index 2 is a flag indicating the type of the
 image: 1 = GIF, 2 = JPG, 3 = PNG, 4 = SWF, 5 = PSD, 6 = BMP, 7 = TIFF
(intel byte order), 8 = TIFF(motorola byte order), 9 = JPC, 10 = JP2, 11 = JPX, 
12 = JB2, 13 = SWC, 14 = IFF, 15 = WBMP, 16 = XBM. These values correspond
 to the IMAGETYPE constants that were added in PHP 4.3. Index 3 is a text string
 with the correct height="yyy" width="***" string that can be used directly in an 
IMG tag.
More info : http://php.net/manual/en/function.getimagesize.php
namtuocbongtoi viết 20:18 ngày 09/10/2018
có ai chỉ tui cách lấy width,height của image không(ASP)
namtuocbongtoi viết 20:29 ngày 09/10/2018
sao không ai chỉ tui hết vậy
Bài liên quan
0