PHP 画像は ASCII コードに変換され、変換後は文字列を通じて画像を直接表示できます
- Ascii
-
- body{
- line-height:0;
- font-size:1px;
- }
-
-
-
- $image = 'image.jpg';
- //allow_url_fopen が有効な場合は http をサポートします
- $image = file_get_contents($image);
- $img = imagecreatefromstring($image);
-
- $width = imagex($img);
- $height = imagey($img);
-
- for ($h=0;$h<$height;$h++){
- for($w=0;$w<=$width;$w++){
- $rgb = imagecolorat($img, $w, $h) ;
- $a = ($rgb >> 24) & 0xFF;
- $r = ($rgb >> 16) & 0xFF;
- $g = ($rgb >> 8) & 0xFF;
- $b = $rgb & 0xFF;
- $a = abs(($a / 127) - 1);
- if($w == $width){
- echo '
';
- }else {
- echo '#スパン>' ;
- }
- }
- }
- ?>
-
|