手機端將 圖片加入浮水印之後再儲存到手機本地
現在看到的下載怎麼都是下載到伺服器,不能下載到手機本地嗎?
下載程式碼參考了這個
public function downloadImage($url, $path='images/')
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
$file = curl_exec($ch);
curl_close($ch);
$this->saveAsImage($url, $file, $path);
}
private function saveAsImage($url, $file, $path)
{
$filename = pathinfo($url, PATHINFO_BASENAME);
$resource = fopen($path . $filename, 'a');
fwrite($resource, $file);
fclose($resource);
}
downloadImg是把遠端圖片下載到伺服器本地,而如果需要將手機將圖片保存到本地,這個只能靠瀏覽器,js去實現,php是運行在服務端的
樓上正解 下載完全可以不使用JS a標籤就可以搞定
瀏覽器直接a連結檔案位址就可以了
針對你的問題, 答案是: 不能.
你這段程式碼就是透過http, 保存遠端檔案到PHP所在的伺服器的.
要下載到手機上, 參考http檔下載.
header('Content-Disposition: attachment; filename=xxxxx');
readfile('PHP伺服器上的檔案');