我试过这个answer
我认为这是正确的,因为如果我在这里输入一个非现有的文件,例如Properties.Resources.ddd
,它会给我Project.Properties.Resource does not contain a definition for ddd
的错误,当我输入正确的文件名logo
时1}}。它给了我这样的错误。我也publish
这样,所以我真的需要包含这个图像。
最佳重载方法匹配' System.IO.FileStream.FileStream(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)'有一些无效的论点 参数1:无法转换为System.Drawing.Bitmap'到'字符串'
它似乎是什么错误,它不会接受我的资源?它是png
个文件
编辑:
我正在使用iTextSharp。这是我计划的第一行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;
我的初始代码是
Stream inputImg = new FileStream(@"C:\Users\Company\Downloads\logo.png", FileMode.Open, FileAccess.Read, FileShare.Read);
但我也将其安装到其他电脑上。