2012-08-29 119 views
1

我有我已經建立了一個網站,我只是不能看到圖像出現在IE只。在鉻它的作品:無法看到的圖像在Internet Explorer

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
     <title>Report</title> 
     <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
    </head> 
    <body> 
     <table> 
      <tr> 
       <td align="left"> 
        <img width="215" height="62" src="Report_files/image293.png" /> 
       </td> 
       <td align="right"> 
        <img width="257" height="75" src="Report_files/image310.jpg" /> 
       </td> 
      </tr> 
     </table> 
     <img width="776" height="9" src="Report_files/image318.gif" /> 
     <br /> 
     <div style="text-align: center;"> 
      Report - Protein Expression<br /> 
      1111111111 <br /><br /> 

     </div> 
     <div> 
      Application Details<br /> 
      Application: Protein Expression<br /> 
      <img width="382" height="245" src="Report_files/Plate.gif" /><br /> 
     </div> 
    </body> 
</html> 

我可以看到前三個圖像,但不是Plate.gif之一。

編輯: 其實,我無法看到該圖片在Internet Explorer在所有即使直接訪問它!

編輯2: 我發現我創建使用C#代碼圖像。我的猜測是圖像是用錯誤的標題或其他東西創建的。這裏是代碼:

Size size = new Size(panelPlateDrawing1.Size.Width + ucColorMapLegend1.Size.Width, 
       Math.Max(panelPlateDrawing1.Size.Height, ucColorMapLegend1.Size.Height)); 

      Bitmap img = new Bitmap(size.Width, size.Height); 

      panelPlateDrawing1.DrawToBitmap(img, new Rectangle(0, 0, panelPlateDrawing1.Size.Width, panelPlateDrawing1.Size.Height)); 

      ucColorMapLegend1.DrawToBitmap(img, new Rectangle(panelPlateDrawing1.Size.Width, 0, ucColorMapLegend1.Size.Width, ucColorMapLegend1.Size.Height)); 

      return img; 
+3

檢查我*覺得* IE是區分大小寫的文件名的情況。 – Alex

+1

也請爲你的圖片添加一些'alt'屬性。 – Alex

+0

選中+添加alt,同樣的問題。 – Vadiklk

回答

1

通常當Internet Explorer(或任何瀏覽器)不顯示圖像,這是因爲它是在不理解的格式,和你不告訴你是如何保存這些圖片到磁盤,可能,正如你已經猜到的那樣,他們使用worng頭文件或信息;要解決它,你需要將它們保存在適當的格式,如何做到這一點的詳細信息可以在這裏看到:Bmp to jpg/png in C#

+0

其實我已經自己找到這個確切的計算器問題,你張貼前20分鐘,但你猜對。 +1並且正確答案。 – Vadiklk

2

也許區分大小寫的問題。驗證文件名稱。

+0

已驗證,它們的大小寫敏感。 – Vadiklk

+0

看看新的編輯。 – Vadiklk

相關問題