1
A
回答
2
<?php
$image = $row['myimage'];
header("Content-type: image/gif");
print $image;
exit;
>?
但它似乎更容易只是存儲路徑...
0
這個概念有點類似下面的代碼,其中img1.jpg
是圖像文件
$handle = fopen('img1.jpg', 'r');
header("Content-type: image/gif");//make sure that you dont have output before it
echo fread($handle, filesize('img1.jpg'));
並嘗試爲下一個實驗
$handle = fopen('img1.jpg', 'r');
echo fread($handle, filesize('img1.jpg'));
//If you are storing the output of this in
//your db then this should work
//however it is best recommended to store
//path which makes you jog a lot easir
//if you get the same error then you have error in
//storing your file
相關問題
- 1. 如何顯示存儲在MySql數據庫中的BLOB圖像?
- 2. 如何顯示存儲在mysql數據庫中的圖像
- 3. 顯示存儲在MySQL數據庫中的圖像的問題?
- 4. 顯示存儲在mysql數據庫中的圖像+ ASP.NET MVC
- 5. 如何顯示存儲在數據庫中的圖像?
- 6. 如何顯示名稱存儲在數據庫中的圖像
- 7. 如何顯示存儲在數據庫中的所有圖像
- 8. 顯示作爲圖庫存儲在數據庫中的圖像
- 9. 圖像存儲在mysql數據庫中
- 10. 如何顯示使用PHP存儲在mysql數據庫中的圖像
- 11. 顯示圖像從PHP文件(存儲在MySQL數據庫)
- 12. 如何將圖像存儲在數據庫中,如mysql或oracle?
- 13. 將存儲在mysql數據庫中的jp2圖像顯示到網頁中
- 14. 使用php顯示存儲在數據庫中的圖像(tinyblob)
- 15. 從其存儲在數據庫中的路徑顯示圖像
- 16. 顯示存儲在Firebase存儲中的Firebase數據庫中的圖像
- 17. 在MySql數據庫中顯示保存爲Blob的圖像
- 18. 如何使用REST webservice在MySQL數據庫中存儲圖像
- 19. 如何使用php存儲圖像在mysql數據庫中
- 20. 如何在圖庫中存儲SQLite數據庫中的圖像
- 21. 如何在php中顯示來自mysql數據庫的圖像?
- 22. 使用Wicket在MYSQL數據庫中顯示存儲爲BLOB的圖像
- 23. 如何在春天顯示存儲在數據庫中的圖像mvc
- 24. 如何在PHP頁面上顯示存儲在數據庫中的圖像?
- 25. 如何顯示存儲在MySQL數據庫的PHP代碼
- 26. mailto正文 - 顯示圖像存儲在數據庫中
- 27. 如何顯示存儲在我的數據庫中的所有圖像?
- 28. 如何顯示存儲在數據庫中的路徑的圖像?
- 29. 如何在Golang中的MySQL數據庫中存儲和檢索圖像數據
- 30. 如何使用PHP顯示存儲在MySQL中的圖像?
它顯示這些代碼給我 ç\t \t T 「\t }!1AQa」 Q2#BR $ 3房 – user1400 2011-02-26 08:38:04
是U存儲什麼類型的圖像?您需要用適當的類型替換GIF。 – diagonalbatman 2011-02-26 10:59:54
我將jpeg文件存儲在我的表格中 – user1400 2011-02-26 11:18:01