Skip to content

Instantly share code, notes, and snippets.

@Kingsy
Created February 25, 2016 16:52
Show Gist options
  • Save Kingsy/7c56353eb0f15482eded to your computer and use it in GitHub Desktop.
Save Kingsy/7c56353eb0f15482eded to your computer and use it in GitHub Desktop.
<?php
function createImage($str) {
header("Content-type: image/png");
$handle = ImageCreate(180, 50);
ImageColorAllocate($handle, 255, 0, 0);
$txt_color = ImageColorAllocate($handle, 255,255, 255);
ImageString($handle, 5, 15, 18, $str, $txt_color);
imageflip($handle, IMG_FLIP_HORIZONTAL);
ImagePng($handle);
}
createImage('This is a string');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment