전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.
imagecolorallocate
imagecolorallocate
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:
vea imagecolorallocate().
see imagecolorallocate().
마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:
vea también imagecreate() y imagecolorallocate().
see also imagecreate() and imagecolorallocate().
마지막 업데이트: 2018-02-13
사용 빈도: 2
품질:
imagecolorallocate--reserva un color para una imagen
imagecolorallocate--allocate a color for an image
마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:
imagecolorallocate devuelve un identificador del color representado por la mezcla de los componentes rgb dados.
imagecolorallocate() returns a color identifier representing the color composed of the given rgb components.
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:
nota: la primera llamada a imagecolorallocate() se emplea para seleccionar el color de fondo.
note: the first call to imagecolorallocate() fills the background color.
마지막 업데이트: 2018-02-13
사용 빈도: 1
품질:
$white = imagecolorallocate( $im, 255,255,255); $black = imagecolorallocate($im, 0,0,0);
returns -1 if the allocation failed.
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:
?php header( "content-type: image / gif"); $im = imagecreate(400,30); $black = imagecolorallocate($im, 0,0,0); $white = imagecolorallocate($im, 255,255,255); imagettftext($im, 20, 0, 10, 20, $white, "/ path / arial.ttf", "testing...
?php header( "content-type: image / jpeg"); $im = imagecreate(400,30); $white = imagecolorallocate($im, 255,255,255); $black = imagecolorallocate($im, 0,0,0); / / replace path by your own font path imagettftext($im, 20, 0, 10, 20, $black, "/ path / arial.ttf", "testing...
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:
경고: 보이지 않는 HTML 형식이 포함되어 있습니다