Home php教程 php手册 PHP 实现的将图片转换为TXT

PHP 实现的将图片转换为TXT

Jun 06, 2016 pm 07:41 PM
Image conversion

今天在用PHP写一个小插件的时候,遇到了一个小小的问题,就是需要将图片转换为TXT文本的内容。简单的说就是将图片转换为ASCII码,下面把代码分享给大家。

PHP 实现的将图片转换为TXT

i!lI;:,\"^`'. "; function getimgchars($color_tran,$chars){ $length = strlen($chars); $alpha=$color_tran['alpha']; $r=$color_tran['red']; $g=$color_tran['green']; $b=$color_tran['blue']; $gray = intval(0.2126 * $r + 0.7152 * $g + 0.0722 * $b); if($gray==0){ return '.'; } if($gray'.$char."";; } function resize_img($file_name,$chars,$flage=true){ //header('Content-Type: image/jpeg'); list($width, $height,$type) = getimagesize($file_name); $fun='imagecreatefrom' . image_type_to_extension($type, false); if($type==3){ $flage=false; } $fun($file_name); $new_height =100; $percent=$height/$new_height; $new_width=$width/$percent; $image_p = imagecreatetruecolor($new_width, $new_height); $image = $fun($file_name); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); if($flage){ return $image_p; }else{ return $image; } } $im=resize_img($file_name,$chars); $width=imagesx($im); $height=imagesy($im); $back_text=""; for($i=1;$i"; } echo "

";
echo $back_text;
echo "
Copy after login
"; //file_put_contents('1.txt',$back_text); ,
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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
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 尊渡假赌尊渡假赌尊渡假赌

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)

How to convert pictures to SVG vector graphics using Golang How to convert pictures to SVG vector graphics using Golang Aug 25, 2023 pm 10:28 PM

Introduction to how to use Golang to convert pictures into SVG vector graphics: In the field of image processing, SVG (ScalableVectorGraphics) has become a popular format, which can store and display vector graphics. This article will introduce how to use the Golang programming language to convert images into SVG vector graphics. SVG conversion principle: The principle of converting pictures into SVG vector graphics is to convert pixel points into paths, and use paths to describe the outline of the image. During the conversion process we will

How to convert multiple pictures to video using Golang How to convert multiple pictures to video using Golang Aug 22, 2023 am 11:29 AM

How to use Golang to convert multiple pictures into videos. With the development of the Internet and the popularity of smart devices, video has become an important form of media. Sometimes we may need to convert multiple pictures into videos to show continuous changes in pictures or to create slideshows. This article will introduce how to convert multiple pictures into videos using the Golang programming language. Before starting, please make sure you have installed Golang and the related development environment. Step 1: Import related packages First, we need to import some related Gola

How to convert pictures into vector graphics and matrix representation using Golang How to convert pictures into vector graphics and matrix representation using Golang Aug 19, 2023 pm 08:57 PM

How to use Golang to convert pictures into vector graphics and matrix representation Introduction: With the development of computer graphics, image processing has become an important branch of computer science. Among them, converting pictures into vector graphics and matrix representations is a common task in image processing. As a powerful programming language, Golang also provides a wealth of image processing libraries and interfaces, making this task easier to implement. This article will introduce how to use Golang to convert images into vector graphics and matrix representations, and provide corresponding code examples. one

How to convert multiple pictures to segmentation and image fusion using Golang How to convert multiple pictures to segmentation and image fusion using Golang Aug 26, 2023 pm 02:57 PM

Overview of How to Convert Multiple Images to Segmentation and Image Fusion Using Golang: In this article, we will show how to convert multiple images to segmentation and image fusion using Golang programming language. We will use Golang's image processing library and simple algorithms to implement this process. By converting multiple pictures into different parts of an image and then blending them together, we can create a new interesting and unique image. Step 1: Import the required libraries First, we need to import Golang’s image processing library

PHP and GD Library Tutorial: How to Convert Picture to Grayscale PHP and GD Library Tutorial: How to Convert Picture to Grayscale Jul 13, 2023 pm 03:22 PM

PHP and GD Library Tutorial: How to Convert Pictures to Grayscale Overview: In web development, sometimes you need to perform some processing on pictures, such as converting color pictures into grayscale images. In PHP, we can use the GD library to implement this function. The GD library is a graphics processing library for PHP that provides some commonly used image processing functions to easily manipulate images. Steps: The following are the steps to convert an image to grayscale: Install the GD library: First, make sure your PHP environment has the GD library installed. If the GD library is not installed, you can

How to convert multiple pictures into animated GIF images using Golang How to convert multiple pictures into animated GIF images using Golang Aug 25, 2023 pm 11:13 PM

How to convert multiple pictures into dynamic GIF images using Golang GIF (GraphicsInterchangeFormat) is a very common and popular image file format that supports animation and transparency. In this article, we will learn how to convert multiple static image files into a dynamic GIF image file using the Golang programming language. In this process, we will use some Golang libraries to achieve this goal. To start this task we need to install some G

PHP and GD Library Tutorial: How to Convert an Image to Black and White PHP and GD Library Tutorial: How to Convert an Image to Black and White Jul 12, 2023 am 10:33 AM

PHP and GD Library Tutorial: How to Convert Pictures to Black and White Introduction: In website development, image processing is a common requirement. Sometimes, we may want to convert color pictures to black and white to increase the visual effect of the website, or to achieve certain specific functions. In PHP, we can use the GD library to achieve this goal. This tutorial will show you how to convert a color image to black and white using PHP and the GD library. Step 1: Install the GD library First, we need to make sure that the GD library is installed on our PHP server. you

How to use PHP to convert pictures in Qiniu cloud storage to Base64 format and export it? How to use PHP to convert pictures in Qiniu cloud storage to Base64 format and export it? Sep 05, 2023 pm 04:36 PM

How to use PHP to convert pictures in Qiniu cloud storage to Base64 format and export it? In recent years, with the popularity and widespread application of cloud storage, more and more websites and applications choose to store pictures and other files in the cloud so that they can be obtained and shared anytime and anywhere. As a leading cloud service provider, Qiniu Cloud Storage is highly respected in the industry for its stability and efficiency. This article will introduce how to use PHP to convert images in Qiniu Cloud Storage to Base64 format and export them locally. First, we need to use Qiniu Cloud Storage

See all articles