Re: Problem with Image Loading (General questions)
Mav,
ok, I got an idea. I couldn't personally get it to work, but I hope you'll get lucky :)
Anyway. Use MemBlob as destination. After you decrypt the image to MemBlob, do this:
1. Convert to Byte Array
2. Convert to System.IO.Stream
3. Pass that *YOUR* stream to Image.FromStream method. This fails for me - but I never used this without encryption anyway so I'm not sure how to make it work.
I don't know if it's faster way for conversions, but here's how I did it:
1. Convert to Byte Array [code] Dim d As System.Array
d = out_blob.ToArray()[/code]
2. Convert to System.IO.Stream [code] Dim s As System.IO.Stream
s = New System.IO.MemoryStream(d.Length)
Dim i As Int32
For i = 1 To d.Length
s.WriteByte(d(i))
Next[/code]
3. Pass this to Image.FromStream [code]Img = Image.FromStream(s)[/code]As I said, this doesn't work for me, but perhaps you'll know better.
Hope I helped!
Kreso
Complete thread:
- Problem with Image Loading - Maverick5, 2006-05-17, 03:26
- Re: Problem with Image Loading - wodAlan, 2006-05-17, 09:12
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 09:33
- Re: Problem with Image Loading - wodAlan, 2006-05-17, 09:43
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 09:49
- Re: Problem with Image Loading - wodSupport, 2006-05-17, 10:23
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 11:00
- Re: Problem with Image Loading - wodSupport, 2006-05-17, 14:33
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 22:07
- Re: Problem with Image Loading - wodSupport, 2006-05-17, 22:12
- Re: Problem with Image Loading - wodSupport, 2006-05-18, 00:48
- Re: Problem with Image Loading - Maverick5, 2006-05-18, 01:19
- Re: Problem with Image Loading - wodSupport, 2006-05-18, 01:24
- Re: Problem with Image Loading - Maverick5, 2006-05-18, 01:32
- Re: Problem with Image Loading - wodSupport, 2006-05-22, 00:51
- Re: Problem with Image Loading - wodDrazen, 2006-05-22, 10:17
- Re: Problem with Image Loading - Maverick5, 2006-05-22, 12:52
- Re: Problem with Image Loading - wodDrazen, 2006-05-22, 10:17
- Re: Problem with Image Loading - wodSupport, 2006-05-22, 00:51
- Re: Problem with Image Loading - Maverick5, 2006-05-18, 01:32
- Re: Problem with Image Loading - wodSupport, 2006-05-18, 01:24
- Re: Problem with Image Loading - Maverick5, 2006-05-18, 01:19
- Re: Problem with Image Loading - wodSupport, 2006-05-18, 00:48
- Re: Problem with Image Loading - wodSupport, 2006-05-17, 22:12
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 22:07
- Re: Problem with Image Loading - wodSupport, 2006-05-17, 14:33
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 11:00
- Re: Problem with Image Loading - wodSupport, 2006-05-17, 10:23
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 09:49
- Re: Problem with Image Loading - wodAlan, 2006-05-17, 09:43
- Re: Problem with Image Loading - Maverick5, 2006-05-17, 09:33
- Re: Problem with Image Loading - wodAlan, 2006-05-17, 09:12