From professional translators, enterprises, web pages and freely available translation repositories.
imagedestroy($im);
imagedestroy ($im);
Last Update: 2018-02-13
Usage Frequency: 4
Quality:
imagedestroy ( $dest );
ftruncate ( $file , ftell ( $file ));
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
imagedestroy ( $image );
$df_d = disk_free_space ( "d:" );
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
see also imagedestroy() and imagecreate().
siehe auch imagedestroy() und imagecreatetruecolor().
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
imagepng ( $image ); imagedestroy ( $image );
$key = array_search ( 'rot' , $array ); //$key=1;
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
omega: amp; #937 ;"); imagejpeg($im); imagedestroy($im);?
omega: #937; "); imagegif ($im); imagedestroy ($im);?
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
imagedestroy() frees any memory associated with image image. image is the image identifier returned by the imagecreate() function.
im ist der bezeichner, der ihnen beim aufruf der funktion imagecreate() zurück gegeben worden ist.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
imagedestroy() frees any memory associated with image image. image is the image identifier returned by one of the image create functions, such as imagecreatetruecolor().
imagedestroy() gibt den durch das bild im belegten speicher wieder frei. im ist der bezeichner, der ihnen beim aufruf der funktion imagecreate() zurück gegeben worden ist.
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
// create a blank image and add some text $im = imagecreatetruecolor (120, 20); $text_color = imagecolorallocate ( $im , 233, 14, 91); imagestring ( $im , 1, 5, 5, "a simple text string" , $text_color ); imagegd2 ( $im ); // free up memory imagedestroy ( $im ); beispiel #2 saving a gd2 image php code 1 2 3 4 5 6 7 8 9
header ( "content-type: image/png" ); $im = @ imagecreate (50, 100) or die ( "kann keinen neuen gd-bild-stream erzeugen" ); $background_color = imagecolorallocate ( $im , 255, 255, 255); $text_color = imagecolorallocate ( $im , 233, 14, 91); imagestring ( $im , 1, 5, 5, "ein test-string" , $text_color ); imagepng ( $im );
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting