PHP | Función GmagickDraw setfontweight()

La función GmagickDraw::setfontweight() es una función incorporada en PHP que se utiliza para establecer el peso de la fuente.

Sintaxis:

 public GmagickDraw::setfontweight( $font_weight ) : GmagickDraw

Parámetros: esta función acepta el parámetro único $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 el objeto GmagickDraw en caso de éxito.

Los siguientes programas ilustran la función GmagickDraw::setfontweight() en PHP:

Programa 1:

<?php
  
// Create an GmagickDraw object
$draw = new GmagickDraw();
  
// 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 gmagick object    
$gmagick = new Gmagick();
  
// Set the image dimension 
$gmagick->newImage(350, 300, 'white');
  
// Set the image format
$gmagick->setImageFormat("png");
  
// Draw the image 
$gmagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $gmagick->getImageBlob();
?>

Producción:
establecerFontWeight

Programa 2:

<?php
  
// Create an GmagickDraw object
$draw = new GmagickDraw();
  
// 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 Gmagick object    
$gmagick= new Gmagick();
  
// Set the image dimension
$gmagick->newImage(250, 70, 'white');
  
// Set the image format
$gmagick->setImageFormat("png");
  
// Draw the image
$gmagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $gmagick->getImageBlob();
?>

Producción:
establecerFontWeight

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

Publicación traducida automáticamente

Artículo escrito por R_Raj 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 *