php image to base64 method: 1, get an image address; 2, through the "chunk_split(base64_encode($gambar));" method to convert the image to base64 string format can be.

How to convert php image to base64?

PHP Image to base64 conversion

The following code uses PHP to convert an image to base64 string format:

Example

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

<?php

//$file:Image address

//Filetype: JPEG,PNG,GIF

$file = "encode.jpg";

if($fp = fopen($file,"rb", 0))

{

    $gambar = fread($fp,filesize($file));

    fclose($fp);

      

    $base64 = chunk_split(base64_encode($gambar));

    // Output

    $encode = '<img src="data:image/jpg/png/gif;base64,' . $base64 .'" >';

    echo $encode;

}   

?>

Related articles

How to merge arrays in PHP

How to merge arrays in PHP? To do this we need to use the array_merge function and the array_merge_recursive function. Here we will introduce these two functions separately.

How to compare strings in PHP?

String is an important data type in PHP, which how to compare strings is also very common in our development work, there are many kinds of comparison methods to compare strings, here we will introduce the more commonly used several comparison methods.

The difference between jumps and redirects in PHP

Difference: 1. Jump is the current URL request success, re-request a new URL; while redirect is the current URL is invalid, was redirected to a new URL. 2. In the jump, the browser will record the current URL and the new URL to the history; while redirect

How to merge elements of different arrays in php

php merge different array elements method: 1, create a PHP sample file; 2, by "array_keys(array_flip($a) + array_flip($b) + array_flip($c));" way to multiple arrays can be merged and de-weighted.

The php exec function does not work

The solution for the php exec function not taking effect: 1. Open the /etc/php.ini file, delete the exec, then save and restart php-fpm; 2. Change the value of "safe_mode" to off.

What is the difference between ado and php

The difference between ado and php: 1, ADO is a Microsoft technology, is a programming interface to access data in the database, while PHP is a general open source scripting language;

php how to set local time

How to set the local time in php: 1. Use "date_default_timezone_set()" in the header to set the default time zone; 2. Set "date.timezone" in php.ini " in php.ini to set the value of "date.timezone" to PRC.

How to set error messages in php.ini

How to set the error message in php.ini: 1. Find and open the php.ini file; 2. Find "display_errors = On" and change it to "display_errors = off". This will work.