Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.jpeg または .png ファイルを開かずに、そのサイズをどのように知ることができますか?
寸法を特定できない場合、画像を自動的にトリミングするにはどうすればよいですか?
PHPとJSを使用しています。
list($width, $height) = getimagesize("img.jpg"); or $im=imagecreatefromjpeg("image_testin_1.JPG"); imagetruecolortopalette($im, false, 255); $w = imagesx($im);//provide width of full page $h = imagesy($im);//provide height of full page