php中如何调用数据库中的图片并且显示到页面

php中如何调用数据库中的图片并且显示到页面,第1张

一般不向数据库插入图片 而是插入图片的src 通过src找到图片然后显示。

<?php

session_start()

//array数组中放图片的格式

$uptypes = array("image/jpg","image/jpeg","image/png","image/pjpeg","image/gif","image/bmp","image/x-png")

$files =$_FILES["uppic"]

if($files["size"]>2097152){ //图片大小判断

echo "上传图片不能大于2M"

echo ""

exit

}

$ftype =$files["type"]

if(!in_array($ftype,$uptypes)){ //图片格式判断

echo "上传的图片文件格式不正确"

echo ""

}

$fname = $files["tmp_name"]//在服务器临时存储名称

$image_info = getimagesize($fname)

$name = $files["name"]

$str_name = pathinfo($name)//以数组的形式返回文件路劲的信息

$extname = strtolower($str_name["extension"])//把字符串改为小写 extensiorn扩展名

$upload_dir = "upload/"//upload文件夹

$file_name = date("YmdHis").rand(1000,9999).".".$extname

$str_file = $upload_dir.$file_name//文件目录

//存入数据库

$con=mysql_connect("localhost","root","")

if(!$con){

die(("数据库连接失败").mysql_error())

}

mysql_select_db("mywork",$con)

$sql="update user set picpath='$str_file' where user_name='$username'"//将图片地址插入数据库mywork

mysql_query($sql,$con)

mysql_close($con)

if(!file_exists($upload_dir)){

mkdir($upload_dir)//创建目录 成功则返回true 失败则返回flase

}

if(!move_uploaded_file($files["tmp_name"],$str_file)){ //将上传的文件移动到新的目录 要移动文件和文件新目录 成功则返回true

echo "图片上传失败"

echo "

// 定义上传目录

$upload_dir = $_SERVER['DOCUMENT_ROOT'].'/upload/'

// 创建目录

if(!is_dir($upload_dir))mkdir($upload_dir)

// 二进制数据 $picture

$image_type = image_type_to_mime_type($picture))

// 取得图片类型

$temp = explode('/', $image_type)

// 文件名

$uuid = rand(0,100).strtotime('+1 day')

$name = $uuid.$temp[1]

$path = $upload_dir.$name

// 打开文件准备写入

$file = fopen($path, 'w')

// 写入

fwrite($file, $picture)

//关闭

fclose($file)

保存图片到数据库做什么?保存到本地使用起来也方便,真要保存通过base64字符串保存。

<?php

header('Content-type:text/htmlcharset=utf-8')

//读取图片文件,转换成base64编码格式

$image_file = './image123.jpg'

$image_info = getimagesize($image_file)

$base64_image_content = "data:{$image_info['mime']}base64," . chunk_split(base64_encode(file_get_contents($image_file)))

// $base64_image_content 输入到数据库

//保存base64字符串为图片

//匹配出图片的格式

if (preg_match('/^(data:\s*image\/(\w+)base64,)/', $base64_image_content, $result)){

  $type = $result[2]

  $new_file = "./test.{$type}"

  if (file_put_contents($new_file, base64_decode(str_replace($result[1], '', $base64_image_content)))){

    echo '新文件保存成功:', $new_file

  }

}

?> <img src="<?php echo $base64_image_content?>" />


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9508466.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存