


How to convert php text to image with automatic line wrapping_PHP tutorial
When I accidentally browsed the Internet today, I found a long Weibo, which can convert text into png images, so I studied the method of converting text into images in PHP. In fact, as long as I use the PHP extension library, GD library to generate the image, and then generate it through the image function. After writing the code, I found that if there are too many words, the image will exceed the width of the screen, causing the browser's right pull bar to appear. So, I thought about whether there is any way to make the image It can automatically wrap lines. Through GG, I found an article that realizes automatic line wrapping of text and images by judging strings, intercepting strings, and then splicing them together. This code is posted below for learning:
header ("Content-type: image/png" );
mb_internal_encoding("UTF-8"); // Set encoding
function autowrap($fontsize, $angle, $fontface, $string, $width) {
// These variables are font size, angle, font name, string, default width
$content = "";
// Split the string into individual words and save them in the array letter
for ($i=0;$i
}
foreach ($letter as $l) {
$teststr = $content." ".$l;
$testbox = imagettfbbox($fontsize, $angle, $fontface, $teststr);
// Determine whether the spliced string exceeds the preset width
if (($testbox[2] > $width) && ($content !== "")) {
$content .= "n";
}
$content .= $l;
}
return $content;
}
$bg = imagecreatetruecolor(300, 290); // Create canvas
$white = imagecolorallocate($bg, 255, 255, 255); // Create white
$text = "Practice using it some time ago When using PHP's GD library, I struggled for a long time with the automatic line wrapping of text. Although line wrapping can be achieved by inserting \n, considering that the text contains both Chinese and English, the effect of forcing line wrapping every few words is very poor. Finally, I found a method to automatically wrap lines in English. The general principle is to use spaces as separators to split the string into words, and then splice them together one by one to determine whether their length exceeds the canvas. If so, Then change the line and then splice, otherwise continue to splice. Considering that Chinese needs to separate each text, I made a little modification. The complete code is as follows: ";
$text = autowrap(12, 0, "simsun.ttc. ", $text, 280); // Automatic line wrapping
// If the file encoding is GB2312, please remove the comments in the following line
// $text = iconv("GB2312", "UTF-8", $text);
imagettftext($bg, 12, 0, 10, 30, $white, "simsun.ttc", $text);
imagepng($bg);
imagedestroy($bg);
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
