我写了一个机器人,询问你的名字并将其写在照片上并发送给你并且它有效。但问题是当机器人上有多个用户时 它不起作用和崩溃,我想知道如何分离用户条目和输出。(就像每个连接的用户得到一个单独的会话,因为现在一切都发生在一个会话中,它崩溃) 这是我的代码:
void bot_OnMessage(object sender, Telegram.Bot.Args.MessageEventArgs e)
{
KeyboardButton[] btns = new KeyboardButton[1];
btns[0] = new KeyboardButton("ساخت عکس");
if(e.Message.Text=="ساخت عکس")
{
bot.SendTextMessageAsync(e.Message.From.Id, "نام خود را وارد کنید", Telegram.Bot.Types.Enums.ParseMode.Default, false, false, 0);
// e.Message.Text = null;
shart = 1;
}
else
{
if (shart == 0)
{
Telegram.Bot.Types.ReplyMarkups.ReplyKeyboardMarkup markup = new Telegram.Bot.Types.ReplyMarkups.ReplyKeyboardMarkup(btns);
bot.SendTextMessageAsync(e.Message.From.Id, "برای شروع و ساخت عکس روی دکمه ساخت عکس کلید کنید", Telegram.Bot.Types.Enums.ParseMode.Default, false, false, 0, markup);
}
if (shart==1)
{
bot.StartReceiving();
bot.OnMessage += bot_OnMessage1;
}
}
}
void bot_OnMessage1(object sender, Telegram.Bot.Args.MessageEventArgs a)
{
string watermarkText = a.Message.Text;
//Get the file name.
string fileName = "C:\\temp\\01.jpg";
//Read the File into a Bitmap.
using (Bitmap bmp = new Bitmap(fileName))
{
using (Graphics grp = Graphics.FromImage(bmp))
{
//Set the Color of the Watermark text.
Brush brush = new SolidBrush(Color.White);
//Set the Font and its size.
Font font = new System.Drawing.Font("Arial", 50, FontStyle.Bold, GraphicsUnit.Pixel);
//Determine the size of the Watermark text.
SizeF textSize = new SizeF();
textSize = grp.MeasureString(watermarkText, font);
//Position the text and draw it on the image.
Point position = new Point((bmp.Width - ((int)textSize.Width + 10)), (bmp.Height - ((int)textSize.Height + 10)));
grp.DrawString(watermarkText, font, brush, position);
bmp.Save("c:\\temp\\postpic.jpg", ImageFormat.Png);
using (FileStream fs = new FileStream("c:\\temp\\postpic.jpg", FileMode.Open))
{
fs.CanTimeout.ToString();
FileToSend fileToSend = new FileToSend("postpic.jpg", fs);
// var = FileToSend fts = new FileToSend("postpic", fs);
var rep = bot.SendPhotoAsync(a.Message.From.Id, fileToSend, "این عکس را پست کنید").Result;
}
}
}
}
}
答案 0 :(得分:5)
您正在为每个用户编写(并随后阅读)相同的文件:
mp.Save("c:\\temp\\postpic.jpg"
您需要为每个用户提供唯一文件名。或者更好的是,根本不要使用文件。您可能只需使用本地内存流,而不会使文件混乱。
答案 1 :(得分:1)
解决方案不依赖于语言。
您应该为每个用户保留上下文。
有两种方法可以做到这一点:
chatID
键创建数据库记录,并使用一些字段来保持状态。阅读每个请求的记录。由您决定如何存储上下文。例如,https://github.com/strongo/bots-framework使用以下网址格式:
command_name1/command_name2?param1=value2¶m2=value2
这允许您实现类似向导的接口并将用户输入保存在参数中。
中创建债务记录时使用的这种方法