在 vb.net 中将文件另存为 TIFF
Save file as TIFF in vb.net
我在 solid edge 中打开了一个文档,我想将其另存为图像(具体为 TIFF)。目前,这是我用来保存文件的代码:
FileName = objDocument.Name
NewFileName = "C:\Folder" & "\" & "OrtBo" & FileName & ".tif"
objDocument.SaveAs(NewFileName)
其中 NewFileName 指示文件的保存位置和扩展名。当我 运行 vb.net 中的程序时,文件保存,但是当我用 irfan 打开保存的文件时,我得到一个错误,提示 "cannot read header, file format is not recognized or the file cannot be found"。我以为是原始文件的问题,但是当我直接在solid edge中将文档保存为TIFF文件时,一切都很好。所以一定是我的vb.net代码有问题。将文件另存为图像有什么建议吗?提前致谢!
我在 solid edge 中打开了一个文档,我想将其另存为图像(具体为 TIFF)。目前,这是我用来保存文件的代码:
FileName = objDocument.Name
NewFileName = "C:\Folder" & "\" & "OrtBo" & FileName & ".tif"
objDocument.SaveAs(NewFileName)
其中 NewFileName 指示文件的保存位置和扩展名。当我 运行 vb.net 中的程序时,文件保存,但是当我用 irfan 打开保存的文件时,我得到一个错误,提示 "cannot read header, file format is not recognized or the file cannot be found"。我以为是原始文件的问题,但是当我直接在solid edge中将文档保存为TIFF文件时,一切都很好。所以一定是我的vb.net代码有问题。将文件另存为图像有什么建议吗?提前致谢!