Voting

: min(one, zero)?
(Example: nine)

The Note You're Voting On

Nick
14 years ago
You can use this function in combination with imagecreatefromstring() to clone the gd resource with minimum fuss (no writing to tmp file):

<?php
function cloneGd($gd)
{
ob_start();
imagegd2($gd);
return
imagecreatefromstring(ob_get_clean());
}
?>

<< Back to user notes page

To Top