C#实现语音合成功能

1、添加winfrom应用程序

C#实现语音合成功能_第1张图片

2、添加语音合成引用 System.Speech

C#实现语音合成功能_第2张图片

3、在winfrom窗体中添加控件,此处用了Button和textbox控件。

C#实现语音合成功能_第3张图片

4、在代码中添加引用using System.Speech.Synthesis;

C#实现语音合成功能_第4张图片

4、执行代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Speech.Synthesis;

namespace WindowsFormsApplication1
{
    public partial class FrmVoiceSynthesis : Form
    {
        public FrmVoiceSynthesis()
        {
            InitializeComponent();
        }
        //实例化语音合成
        SpeechSynthesizer speech = new SpeechSynthesizer();
        //添加接收文本字段
        string text;
        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text != "")
            {
                text = textBox1.Text;
            }
            else
            {
                text = "请输入文字";
            }
            speech.Speak(text);
        }
    }
}

 

你可能感兴趣的:(.NET,c#)