Skip to content

Instantly share code, notes, and snippets.

@cviebrock
Created January 8, 2014 20:15
Show Gist options
  • Select an option

  • Save cviebrock/8323807 to your computer and use it in GitHub Desktop.

Select an option

Save cviebrock/8323807 to your computer and use it in GitHub Desktop.
$data = $YOUR_QR_STUFF->getImage();
ob_start();
imagepng($data);
$image_data = ob_get_contents();
ob_end_clean();
store_stuff_in_redis($key, $data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment