Asp, net C# скачать изображение из растрового изображения
I have a picture on the server is a generous certificate of appreciation when the student searches with a number the student's data is written on the image and without saving it on the server the student protects it on his machine I got the code to write on the image, but it saves it on the server. Please help me. Instead of saving on the server, the downloader works for the student. This is the writing code
<pre>Bitmap bitMapImage = new Bitmap(Server.MapPath("img1.jpg")); Graphics graphicImage = Graphics.FromImage(bitMapImage); graphicImage.DrawString("testing 1 2 3", new Font("Arial", 20, FontStyle.Bold), SystemBrushes.WindowText, new Point(0, 0)); // I want to replace this by downloading it to the student machine //instead of saving it to the server bitMapImage.Save(Server.MapPath("~/Images")+"newImage.jpg" , ImageFormat.Jpeg); graphicImage.Dispose();
растровое изображение.Располагать();
Что я уже пробовал:
я
tried
скачать изображение на клиентский ПК
Richard MacCutchan
Вы не можете загружать файлы на компьютер пользователя, это было бы серьезным нарушением безопасности. Только они могут сделать это, запросив загрузку. То, что вы должны сделать, это создать файл, который они затем могут загрузить через свой браузер.