Skip to content

Instantly share code, notes, and snippets.

@shigwata
Created June 20, 2014 01:54
Show Gist options
  • Select an option

  • Save shigwata/7f4d18a49a37944990ef to your computer and use it in GitHub Desktop.

Select an option

Save shigwata/7f4d18a49a37944990ef to your computer and use it in GitHub Desktop.
imgタグ 縦横リサイズ
<?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