0

将图像设置为单元格时出现问题

Dim CellAux As PdfPCell
CellAux = New PdfPCell(Image.GetInstance("../../Common/Images/image_logo.gif"))

并引发下一个错误:cant find path c:\windows\Common\Images\image_logo.gif

为什么要在那里寻找图像?

我该怎么做才能在正确的目录中搜索图像?

4

1 回答 1

1

当你运行一个应用程序时,你总是从一个工作目录运行它。这不一定是您期望的目录。在任何情况下,您都在代码中使用相对路径,并且绝对路径将使用该相对路径与您的工作目录相结合来构建。这种情况下的结果是 c:\windows\Common\Images\image_logo.gif

于 2013-04-16T07:01:02.127 回答