Unity Windows选择图片并加载

1.找到System.Windows.Forms.dll,并放在project中的Plugins文件夹下。 “D:\Unity3D\Editor\Data\Mono\lib\mono\2.0\System.Windows.Forms.dll”

2.打开Player Settings 把.NET 2.0 Subset 改为.NET 2.0;

3.选择的图片路径中不能存在中文

using UnityEngine;
using System.Collections;
using System;
using System.Windows.Forms;
using System.IO;
public class ReadPic : MonoBehaviour {
	
	public Texture2D img = null;
	void OnGUI()
	{
		if (GUI.Button(new Rect(0, 0, 100, 20), "选择文件"))
		{
			OpenFileDialog od = new OpenFileDialog();
			od.Title = "请选择头像图片";
			od.Multiselect = false;
			od.Filter = "图片文件(*.jpg,*.png,*.bmp)|*.jpg;*.png;*.bmp";

			if (od.ShowDialog() == DialogResult.OK)
			{
				Debug.Log(od.FileName);
				StartCoroutine(GetTexture("file://"+od.FileName));
			}

		}
		if (img != null)
		{
			GUI.DrawTexture(new Rect(0, 20, img.width, img.height), img);
		}
	}
	
	IEnumerator GetTexture(string url)
	{
		WWW www = new WWW(url);
		yield return www;
		if (www.isDone && www.error == null)
		{
			img = www.texture;
			Debug.Log(img.width + "  " + img.height);
			byte[] data = img.EncodeToPNG();
		//	File.WriteAllBytes(UnityEngine.Application.streamingAssetsPath + "/Temp/temp.png", data);
		}
	}
}
</pre><p></p><pre code_snippet_id="515231" snippet_file_name="blog_20141111_2_8320733" name="code" class="csharp">

 



评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值