基本信息
源码名称:语音验证登录+语音文字识别
源码大小:0.71M
文件格式:.zip
开发语言:C#
更新时间:2018-12-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 3 元×
微信扫码支付:3 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
语音验证登录 语音文字识别 ( username=HYK Pwd=@123)
源代码故意附有极其详细的注释,为的就是能帮到大家!
using SpeechLib;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TTS01
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
SpVoice voice = new SpVoice();
voice.Rate = 0; //[-10,10]
voice.Volume = 100; //[0,100]
//voice.Voice = voice.GetVoices().Item (0); //语音库
voice.Speak(textBox1.Text);
}
private void Form1_Load(object sender, EventArgs e)
{
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
string m = @"Picture\1.jpg";
string n = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, m);
pictureBox1.Image = Image.FromFile(n);
SpVoice voice = new SpVoice();
voice.Volume = 100;
voice.Rate = 1;
voice.Speak("欢迎进入文字语音转换系统");
//voice.Voice = voice.GetVoices().Item(0);
}
private void button2_Click(object sender, EventArgs e)
{
SpVoice voice = new SpVoice();
voice.Rate = 1;
voice.Volume = 100;
voice.Voice = voice.GetVoices().Item(0);
//Thread.Sleep(1000);
voice.Speak("主人请输入要转为语音的文字信息");
}
private void Form1_Shown(object sender, EventArgs e)
{
this.Refresh();//this.Update(); 重新绘制窗体一次
Thread.Sleep(500);
SpVoice voice = new SpVoice();
voice.Rate = 1;
voice.Volume = 100;
voice.Voice = voice.GetVoices().Item(0);
//Thread.Sleep(1000);
voice.Speak("主人请输入要转为语音的文字信息");
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
}
}