图像下载按钮PHP

时间:2011-07-30 09:48:17

标签: php image

嗨我有一个位图图像数据存储在variable中,我需要提供一个按钮来将此图像下载到用户文件系统..,因为图像没有直接的链接怎么做?

1 个答案:

答案 0 :(得分:5)

链接到执行此操作的PHP脚本:

header("Content-type: image/bmp");
header("Content-disposition: attachment; filename='image.bmp'");
echo $variable_containing_bitmap;