3v4l.org

run code in 300+ PHP versions simultaneously
<?php header ("Content-type: image/png"); $string = DigitalPortfolio; $font = 15; $width = 300; $height = 350; $image = imagecreate($width, $height); $back = ImageColorAllocate($image, 255, 255, 255); $border = ImageColorAllocate($image, 0, 0, 0); ImageFilledRectangle($image, 0, 0, $width, $height, $border); ImageFilledRectangle($image, 1, 1, $width-2, $height-2, $back); $text_color = imagecolorallocate($image, 255, 0, 0); ImageStringWrap($image, $font, 3, 2, $string, $text_color, $width-2 ); imagepng($image); function ImageStringWrap($image, $font, $x, $y, $text, $color, $maxwidth) { $fontwidth = ImageFontWidth($font); $fontheight = ImageFontHeight($font); if ($maxwidth != NULL) { $maxcharsperline = floor($maxwidth / $fontwidth); $text = wordwrap($text, $maxcharsperline, "\n", false); } while (list($numl, $line) = each($lines)) { ImageString($image, $font, $x, $y, $line, $color); $y += $fontheight; } }

preferences:
39.38 ms | 402 KiB | 5 Q