gpt4 book ai didi

c# - Unity 和 System.Drawing on OS X

转载 作者:行者123 更新时间:2023-11-30 18:46:33 29 4
gpt4 key购买 nike

我正在尝试在 OS X Mountain Lion 上使用 Unity (4.3.2) 中 Mono 的 System.Drawing。我有以下简单的 C# 脚本来验证它是否有效:

using UnityEngine;
using System.Drawing;

public class DrawingTest : MonoBehaviour {

void Start () {

Bitmap bitmap = new Bitmap(128, 128, System.Drawing.Imaging.PixelFormat.Format24bppRgb);

System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bitmap);

g.DrawRectangle(new Pen(System.Drawing.Color.Red, 4), 0, 0, 128, 128);

bitmap.Save("/Users/username/drawing.png", System.Drawing.Imaging.ImageFormat.Png);
}

}

我已将 System.Drawing.dll 复制到项目中的 Assets/Plugins 文件夹中。我还将/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/libgdiplus.dylib 复制到 Assets/Plugins。这使得 Monodevelop 中的所有构建(CMD-B)都很好。但是,当我尝试在 Unity 编辑器中运行该项目时,我收到此错误消息:

DllNotFoundException: libgdiplus.dylib
System.Drawing.GDIPlus..cctor ()
Rethrow as TypeInitializationException: An exception was thrown by the type initializer for System.Drawing.GDIPlus
System.Drawing.Bitmap..ctor (Int32 width, Int32 height, PixelFormat format)
(wrapper remoting-invoke-with-check) System.Drawing.Bitmap:.ctor (int,int,System.Drawing.Imaging.PixelFormat)
DrawingTest.Start () (at Assets/DrawingTest.cs:9)

我还添加了以下行:

<dllmap dll="gdiplus.dll" target="libgdiplus.dylib" os="osx"/>

到/Applications/Unity/Unity.app/Contents/Frameworks/Mono/etc/mono/config 试图强制 Unity 找出要加载的 DLL。我还为项目设置了播放器设置以使用“.NET 2.0”Api 兼容级别(而不是子集)。如果我构建项目并运行独立的可执行文件,问题仍然存在。

如果我尝试使用 Mono.Cairo(当然是使用不同的 dll),也会出现同样的问题。所以我的问题是,如何在 Mac 上的 Unity 中使用 System.Drawing 或任何默认未启用的程序集?我还想最终将应用程序部署给最终用户,因此如果独立构建需要不同的技巧,他们将不胜感激。

最佳答案

在 macOS 上安装 GDI+ 的 Homebrew 包:

brew install mono-libgdiplus

更新:我已经搜索过同样的问题,并找到了另一个答案,我试过了并且对我有用:

您可以更新配置文件/Applications/Unity/Hub/Editor/X.X.X/Unity.app/Contents/MonoBleedingEdge/etc/mono/config使用以下行:< dllmap dll="gdiplus"target="/Library/Frameworks/Mono.framework/Versions/XXX/lib/libgdiplus.dylib"/>< dllmap dll="gdiplus.dll"target="/Library/Frameworks/Mono.framework/Versions/XXX/lib/libgdiplus.dylib"/>(XXX 是你的 Unity 版本)

关于c# - Unity 和 System.Drawing on OS X,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20820139/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com