From professional translators, enterprises, web pages and freely available translation repositories.
imagecreate() returns an image identifier representing a blank image of size x_size by y_size.
esimerkki 1.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
function loadgif ($imgname) {$im = @imagecreatefromgif ($imgname); /* attempt to open */ if (!$im) {/* see if it failed */ $im = imagecreate (150, 30); /* create a blank image */ $bgc = imagecolorallocate ($im, 255, 255, 255); $tc = imagecolorallocate ($im, 0, 0, 0); imagefilledrectangle ($im, 0, 0, 150, 30, $bgc); /* output an errmsg */ imagestring ($im, 1, 5, 5, "error loading $imgname", $tc);} return $im;}
huomaa:
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
Some human translations with low relevance have been hidden.
Show low-relevance results.