Friday, September 27, 2024
Google search engine
HomeLanguagesPHP | GmagickDraw gettextencoding() Function

PHP | GmagickDraw gettextencoding() Function

The GmagickDraw::gettextencoding() function is an inbuilt function in PHP which is used to get the code set used for text annotations. These code sets tell the computer how to interpret raw zeroes and ones into real characters. Usually, they produce the same text but use different code sets.

Syntax:

string GmagickDraw::gettextencoding( void )

Parameters: This function doesn’t accept any parameters.

Return Value: This function returns a string value containing the text encoding used.

Exceptions: This function throws GmagickDrawException on error.

Below given programs illustrate the GmagickDraw::gettextencoding() function in PHP:

Program 1:




<?php
  
// Create a new GmagickDraw object
$draw = new GmagickDraw();
  
// Get the text encoding
$textEncoding = $draw->gettextencoding();
echo $textEncoding;
?>


Output:

// Empty string which is the default value

Program 2:




<?php
  
// Create a new GmagickDraw object
$draw = new GmagickDraw();
  
// Set the text encoding
$draw->settextencoding('utf-8');
  
// Get the text encoding
$textEncoding = $draw->gettextencoding();
echo $textEncoding;
?>


Output:

utf-8

Used Image:

Program 3:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('neveropen.png');
  
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Set the color
$draw->setFillColor('#0E0E0E');
  
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
  
// Set the font size
$draw->setFontSize(40);
  
// Set the fill color
$draw->setfillcolor('white');
  
// Set the text encoding
$draw->settextencoding('UTF-8');
  
// Annotate a text
$draw->annotate(50, 50,
    'This line is encoded with '
    . $draw->getTextEncoding());
  
// Set the text encoding
$draw->settextencoding('UTF-32');
  
// Annotate a text
$draw->annotate(50, 100,
    'This line is encoded with '
    . $draw->getTextEncoding());
  
// Use of drawimage functeannotate
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>


Output:

Reference: https://www.php.net/manual/en/gmagickdraw.gettextencoding.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments