Home Backend Development PHP Tutorial How to convert php text to image with automatic line wrapping_PHP tutorial

How to convert php text to image with automatic line wrapping_PHP tutorial

Jul 21, 2016 pm 03:12 PM
php Discover Can picture it Will text method Browse net change

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:

Copy code The code is as follows:

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 $letter[] = mb_substr($string, $i, 1);
}

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);
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326737.htmlTechArticleWhen I accidentally browsed the Internet today, I found a long Weibo, which can convert text into png images, so Just study how to convert PHP text to image. In fact, as long as you use PHP extensions...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles