发布的项目在 DLL 中创建位图时产生错误“调用线程必须是 STA,因为许多 UI 组件都需要这个”

Posted

技术标签:

【中文标题】发布的项目在 DLL 中创建位图时产生错误“调用线程必须是 STA,因为许多 UI 组件都需要这个”【英文标题】:released project produces error "The calling thread must be STA, because many UI components require this" when creating bitmap in a DLL 【发布时间】:2017-10-10 20:38:18 【问题描述】:

我有一个项目,在调试时工作正常,并且所有内容都正确检查到 TFS。当发布的项目调用 dll 时,我收到上述错误消息。主项目也在vb中

这是堆栈跟踪 stack trace

在 for each 循环开始时导致代码行的错误-Bitmap bmp = new Bitmap(Bitmap.FromFile(targetPath + "Copy-2.png"));

大部分 DLL 的代码 -

    public Dictionary<string, MemoryStream> CreateW2FromBitmap(List<Employee> info, Employer employerInfo, bool fourPerPage)
    
        var targetPath = System.IO.Path.GetFullPath(System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "..\\..\\" + "W2Images\\"));

        StringFormat rightAlign = new StringFormat(StringFormatFlags.NoClip);
        StringFormat centerAlign = new StringFormat(StringFormatFlags.NoClip);
        PdfPTable imageTable = new PdfPTable(2)  WidthPercentage = 82 ;

        imageTable.DefaultCell.Border = iTextSharp.text.Rectangle.NO_BORDER;
        imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
        rightAlign.Alignment = StringAlignment.Far;
        centerAlign.Alignment = StringAlignment.Center;

        var brushColor = Brushes.Black;
        var W2ImageDictionary = new Dictionary<string, MemoryStream>();
        var font = new System.Drawing.Font("Courier", 12);
        var document = new Document(PageSize.LETTER, 0, 0, 10, 0);

        foreach (var property in info)
        
            Bitmap bmp = new Bitmap(Bitmap.FromFile(targetPath + "Copy-2.png"));
            MemoryStream tempImageStream = new MemoryStream();

            var writer = PdfWriter.GetInstance(document, tempImageStream);
            var employeeCityStateZipCode = CityStateZipDelimiter(property.CityStateZip);
            var employerCityStateZipCode = CityStateZipDelimiter(employerInfo.CityStateZip);

            document.Open();
            writer.CloseStream = false;

            for (int i = 1; i < 5; i++)
            
                switch (i)
                
                    case 1:
                        bmp = new Bitmap(Bitmap.FromFile(targetPath + "Copy-2.png"));
                        break;
                    case 2:
                        bmp = new Bitmap(Bitmap.FromFile(targetPath + "Copy-2.png"));
                        break;
                    case 3:
                        bmp = new Bitmap(Bitmap.FromFile(targetPath + "Copy-B.png"));
                        break;
                    case 4:
                        bmp = new Bitmap(Bitmap.FromFile(targetPath + "Copy-B.png"));
                        break;
                

【问题讨论】:

调用线程是STA吗?调用项目是什么类型的项目(WPF?Winforms?ASP.NET?其他?)?您可以在帖子中包含异常的堆栈跟踪吗? 我为调用添加了堆栈跟踪,但我只在运行应用程序时遇到此问题,而不是在 Visual Studio 中运行时。我很确定 DLL 最初是一个 WPF,但现在是一个具有零 wpf 功能的类库。主项目是一个表单,图像存储在主项目的一个文件夹中 这是 WPF 异常。异常发生在名为 EmailReport() 的方法中,它是从 BackgroundWorker 调用的。 sn -p 里面的代码和它没有关系。 BackgroundWorker thread must be STA的可能重复 【参考方案1】:

修复正在更改图像的存储位置。它们位于主应用程序的文件夹中。希望这对将来的任何人都有帮助

Bitmap bmp = new Bitmap(Bitmap.FromFile("C:\\Copy-2.png));

【讨论】:

以上是关于发布的项目在 DLL 中创建位图时产生错误“调用线程必须是 STA,因为许多 UI 组件都需要这个”的主要内容,如果未能解决你的问题,请参考以下文章

非 MFC ATL 项目 (dll) 产生 MFC 相关错误

在android中创建缩放位图时保持图像质量

在eclipse中创建maven webapp项目时弹出错误-解决办法

MSBuild 不在 Bin 目录中创建 DLL

删除在 DLL 中创建的对象

如何在 mvc 中创建具有多版本支持的解决方案