返回介绍

Working with images with PHP in PostgreSQL

发布于 2025-02-22 22:20:18 字数 3931 浏览 0 评论 0 收藏 0

In this chapter of the PostgreSQL PHP tutorial, we will work with image files. Some people do not agree with putting images into databases. Here we only show how to do it. We do not dwell into technical issues of whether to save images in databases or not.

testdb=> CREATE TABLE images(id INT PRIMARY KEY, data BYTEA);

For this example, we create a new table called images. For the images, we use the BYTEA data type. It allows to store binary strings.

Inserting images

In the first example, we are going to insert an image into the PostgreSQL database.

<?php 

$host = "localhost"; 
$user = "user12"; 
$pass = "34klq*"; 
$db = "testdb"; 

$con = pg_connect("host=$host dbname=$db user=$user password=$pass")
  or die ("Could not connect to server\n");

$file_name = "woman.jpg";

$img = fopen($file_name, 'r') or die("cannot read image\n");
$data = fread($img, filesize($file_name));

$es_data = pg_escape_bytea($data);
fclose($img);

$query = "INSERT INTO images(id, data) Values(1, '$es_data')";
pg_query($con, $query); 

pg_close($con); 

?>

We read an image from the current working directory and write it into the images table of the PostgreSQL testdb database.

$file_name = "woman.jpg";

This is the name of the image file that we will insert into the database. The image is located in the current working directory.

$img = fopen($file_name, 'r') or die("cannot read image\n");
$data = fread($img, filesize($file_name));

We read binary data from the filesystem.

$es_data = pg_escape_bytea($data);

Binary data might have characters that may cause problems when inserting them into a database table. The pg_escape_bytea() function escapes the string for insertion into a bytea field . Later, when reading binary data from the database, the data must be un-escaped.

fclose($img);

The handle pointing to the image file is closed.

$query = "INSERT INTO images(id, data) Values(1, '$es_data')";
pg_query($con, $query); 

The image is inserted into the database.

Reading images

In this section, we are going to perform the reverse operation. We will read an image from the database table.

<?php 

$host = "localhost"; 
$user = "user12"; 
$pass = "34klq*"; 
$db = "testdb"; 

$con = pg_connect("host=$host dbname=$db user=$user password=$pass")
  or die ("Could not connect to server\n");

$query = "SELECT data FROM images WHERE id=1";
$res = pg_query($con, $query) or die (pg_last_error($con)); 

$data = pg_fetch_result($res, 'data');
$unes_image = pg_unescape_bytea($data);

$file_name = "woman2.jpg";
$img = fopen($file_name, 'wb') or die("cannot open image\n");
fwrite($img, $unes_image) or die("cannot write image data\n");
fclose($img);

pg_close($con); 

?>

We read image data from the images table and write it to another file, which we call woman2.jpg .

$query = "SELECT data FROM images WHERE id=1";

This line is a SQL SELECT statement to retrieve the image data from the table.

$data = pg_fetch_result($res, 'data');

We fetch the data from the data column of the images table.

$unes_image = pg_unescape_bytea($data);

When we inserted the image data into the database, we have escaped it. Now we have to un-escape it back to the original.

$file_name = "woman2.jpg";
$img = fopen($file_name, 'wb') or die("cannot open image\n");

We open a file for writing. The new file name will be woman2.jpg .

fwrite($img, $unes_image) or die("cannot write image data\n");

The data is written to the filesystem.

This part of the PostgreSQL PHP tutorial was dedicated to reading and writing images.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文