Ask a Question related to ASP.NET General, Design and Development.
-
Slade #1
Problem encoding/decoding image
Hi,
I'm trying to use POST an image to a web page with WebRequest/WebResponse.
Only problem is that I must be making an error somewhere in the
encoding/decoding process. I've pasted below a bit of sample code that
basically shows how I am encoding and then decoding the binary image. Many
thanks if you can point out what I am doing wrong... thanks, Slade Smith
Image bmp =context.GetImage();
Stream stream=new MemoryStream();
//save image as a jpg file. "test.jpg" will open fine when I try it....
bmp.Save("c:\\temp\\test.jpg",System.Drawing.Imagi ng.ImageFormat.Jpeg);
bmp.Save(stream,System.Drawing.Imaging.ImageFormat .Jpeg);
//encode the image to prepare it for a transfer via a POST
int imgLen = (int)stream.Length;
byte[] imgBinaryData = new byte[imgLen];
int n = stream.Read(imgBinaryData,0,imgLen);
string s = Convert.ToBase64String(imgBinaryData);
//I will be uploading the file here, and the code after this
//will be running on the server...
//trying just to reverse the encoding process and save the file,
//but something has gone horribly wrong, and none of my imaging
//programs will open "test2.jpg" when I try it. Must be corrupted.
imgBinaryData=Convert.FromBase64String(s);
Stream f=File.Create("c:\\temp\\test2.jpg");
imgLen = imgBinaryData.Length;
f.Write(imgBinaryData,0,imgLen);
f.Close();
Slade Guest
-
Encoding Problem
Im pulling an attribute from an XML doc, which is a regexp. The regexp is then used on CFHTTP.filecontent, in order to parse out specfic links from... -
MIME::Entity , decoding Base64 image/jpg
Hi everyone I am trying to decode and extract (image/jpg) attachments from emails/usenet postings. Using MIME::Parser and MIME::Entity->parts(),... -
[PHP-DEV] Feature Request - encoding/decoding mail and nntp attachements
Exo ludo wrote: PHP already has base64 en/decoding. See the manual under base64_encode. I haven't seen any native yEnc extensions, though. ... -
[PHP-DEV] Feature Request - encoding/decoding mail and nntp attachements
Hi, Im lookin for encoding/decoding base64 (and Yenc) attachements in my mail and NNTP programs. After having tested several PHP classes (ex:... -
CDONTS - PDF Attachment / decoding problem
I am using CDONTS to send email from an ASP script. Attached to each of these emails is a 34K PDF file. 90% of the time the file arrives intact.... -
Natty Gur #2
Re: Problem encoding/decoding image
Hi,
Refer to :
[url]http://www.c-sharpcorner.com/Internet/WebRequestNResponseMDB.asp[/url]
Using WebClient make it more easier.
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
Ankit Singh #3
Problem encoding/decoding image
Hi,
I was reading your article and I would like to appreciate you for making it very simple and understandable. This article gives me a basic idea of Encoding and Decoding in ASP.Net and it will help me a lot. I had found another nice post with wonderful explanation on Encoding and Decoding in ASP.Net.
Thank you very much!Ankit Singh Guest



Reply With Quote

