PHP | Función ImagickDraw setFontWeight()

La función ImagickDraw::setFontWeight() es una función incorporada en PHP que se usa para establecer el peso de la fuente.

Sintaxis:

bool ImagickDraw::setFontWeight( $font_weight )

Parámetros: esta función acepta un solo parámetro $font_weight que se usa para mantener el valor del peso de la fuente como un tipo entero.

Valor de retorno: esta función devuelve True en caso de éxito.

Los siguientes programas ilustran la función ImagickDraw::setFontWeight() en PHP:

Programa 1:

<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
  
// Set the image filled color
$draw->setFillColor('red');
  
// Set the Font Weight
$draw->setFontWeight(200);
  
// Set the font size
$draw->setFontSize(40);
  
// Set the font family
$draw->setFontFamily('Ubuntu-Mono');
  
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
  
// Set the image filled color
$draw->setFillColor('green');
  
// Set the Font Stretch
$draw->setFontStretch(3);
  
// Set the font size
$draw->setFontSize(30);
  
// Set the font family
$draw->setFontFamily('Open-Sans-Light-Italic');
  
// Set the text to be added
$draw->annotation(30, 250, "Font-Weight : 200");
  
// Create new imagick object    
$imagick = new Imagick();
  
// Set the image dimension 
$imagick->newImage(350, 300, 'white');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image 
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

Producción:
setFontWeight

Programa 2:

<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
  
// Set the image filled color
$draw->setFillColor('Green');
  
// Set the font size
$draw->setFontSize(30);
  
// Set the Font Weight
$draw->setFontWeight(400);
  
// Set the font family
$draw->setFontFamily('Ani');
  
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
  
// Create new Imagick object    
$imagick = new Imagick();
  
// Set the image dimension
$imagick->newImage(250, 70, 'white');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

Producción:
setFontWeight

Referencia: http://php.net/manual/en/imagickdraw.setfontweight.php

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *