Created
June 20, 2014 01:54
-
-
Save shigwata/7f4d18a49a37944990ef to your computer and use it in GitHub Desktop.
imgタグ 縦横リサイズ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $size = getimagesize($img); | |
| $size_w = 708; | |
| $size_h = ($size_w / $size[0]) * $size[1]; | |
| $image = '<img src="'.$img.'" width="'.$size_w.'" height="'.$size_h.'">'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment