This is a discussion on .NET tricks & Tips within the VB.NET Programming forums, part of the Software Development category; Hi Here I am going to post the .NET tricks. Very useful one. You can also post your .NET tips ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi Here I am going to post the .NET tricks. Very useful one. You can also post your .NET tips here. How to convert a Bitmap to a Byte Array Here is some simple code that takes a bitmap and converts it to a byte array. Dim myVar As MemoryStream = New MemoryStream Dim bitmapBytes As Byte() 'Create bitmap Dim bitmap As Bitmap = New Bitmap(50, 50) bitmap.Save(myVar, System.Drawing.Imaging.ImageFormat.Jpeg) bitmapBytes = myVar.ToArray myVar.Close() bitmap.Dispose() thanks ![]()
__________________ Karpagarajan. R Necessity is the mother of invention |
| Sponsored Links |
| |||
| Visual C++ .NET File Processing File Processing in VC++.Net can be by using a class called FileStream. To process a file, declare the FileStream object and use it. Here is the sample code String *ListOfStates = S"StatesList";thanks ![]()
__________________ Karpagarajan. R Necessity is the mother of invention |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/vb-net-programming/1096-net-tricks-tips.html | |||
| Posted By | For | Type | Date |
| Visual C++ Tips & Tricks - DiscussWeb IT Community - Technical Support and Technology Discussions | This thread | Refback | 09-10-2007 04:24 AM |
| Digg / Programming / Upcoming | This thread | Refback | 07-20-2007 07:21 AM |
| Digg / Programming / Upcoming | This thread | Refback | 07-20-2007 05:18 AM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| C# .Net Tips & Tricks | oxygen | C# Programming | 83 | 09-24-2008 03:20 AM |
| SAP Tips & Tricks | leoraja8 | Operating Systems | 0 | 03-29-2008 01:11 AM |
| BlueTooth tips and tricks | devarajan.v | Mobile Software Development | 52 | 03-13-2008 10:46 PM |
| PHP Tips and Tricks | Sabari | PHP Programming | 20 | 12-18-2007 06:26 AM |
| SEO Tips & Tricks | spid4r | Search Engine Optimization | 0 | 03-09-2007 12:03 AM |