473,396 Members | 1,785 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How to save image

I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??
Nov 21 '05 #1
9 2122
DabDap

Did you see this sample of me that is in this message before
http://groups.google.com/groups?selm...TNGP11.phx.gbl

It uses a xml dataset however the rest is the same.

I hope this helps?

Cor

"DapDap" <pi******@hotmail.com>
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??

Nov 21 '05 #2
DabDap

Did you see this sample of me that is in this message before
http://groups.google.com/groups?selm...TNGP11.phx.gbl

It uses a xml dataset however the rest is the same.

I hope this helps?

Cor

"DapDap" <pi******@hotmail.com>
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??

Nov 21 '05 #3
To read images from and write images to Sql Server see this MSDN article:

http://support.microsoft.com/default...b;en-us;326502

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"DapDap" <pi******@hotmail.com> wrote in message
news:1c****************************@phx.gbl...
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??

Nov 21 '05 #4
To read images from and write images to Sql Server see this MSDN article:

http://support.microsoft.com/default...b;en-us;326502

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"DapDap" <pi******@hotmail.com> wrote in message
news:1c****************************@phx.gbl...
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??

Nov 21 '05 #5
Mike,

There is a newer one on MSDN
http://support.microsoft.com/default...b;EN-US;308042

However when I see all those setting to nothing as well in that, I get the
idea that it is written and than it was ready.

Cor
"Mike McIntyre" <mi****@dotnetshowandtell.com>
..
To read images from and write images to Sql Server see this MSDN article:

http://support.microsoft.com/default...b;en-us;326502

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"DapDap" <pi******@hotmail.com> wrote in message
news:1c****************************@phx.gbl...
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??


Nov 21 '05 #6
Mike,

There is a newer one on MSDN
http://support.microsoft.com/default...b;EN-US;308042

However when I see all those setting to nothing as well in that, I get the
idea that it is written and than it was ready.

Cor
"Mike McIntyre" <mi****@dotnetshowandtell.com>
..
To read images from and write images to Sql Server see this MSDN article:

http://support.microsoft.com/default...b;en-us;326502

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"DapDap" <pi******@hotmail.com> wrote in message
news:1c****************************@phx.gbl...
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??


Nov 21 '05 #7
I have gone threw this tutorial. But when I retrieve the image from the DB.
The image is only 1B, and I cannot open it. The filename is correct.

Whats wrong here?
"Cor Ligthert" wrote:
Mike,

There is a newer one on MSDN
http://support.microsoft.com/default...b;EN-US;308042

However when I see all those setting to nothing as well in that, I get the
idea that it is written and than it was ready.

Cor
"Mike McIntyre" <mi****@dotnetshowandtell.com>
..
To read images from and write images to Sql Server see this MSDN article:

http://support.microsoft.com/default...b;en-us;326502

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"DapDap" <pi******@hotmail.com> wrote in message
news:1c****************************@phx.gbl...
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??



Nov 21 '05 #8
Hi,

You have to store the image in binary format. Storeimage converts
image to binary format. ConvertToBitmap converts it back. Note the offset
for the northwind database is 78 my storeimage function has a offset of 0.

Private Function StoreImage(ByVal bm As Bitmap) As Object

Dim ms As New MemoryStream

Try

bm.Save(ms, Imaging.ImageFormat.Jpeg)

Return ms.GetBuffer

Catch

Return Convert.DBNull

End Try

End Function

Private Function ConvertToBitmap(ByVal data() As Byte, ByVal offset As
Integer) As Bitmap

Dim ms As New System.IO.MemoryStream

Dim bm As Bitmap

ms = New MemoryStream

ms.Write(data, offset, data.Length - offset)

bm = New Bitmap(ms)

Return bm

End Function

Ken

----------------------

"Kenneth" <Ke*****@discussions.microsoft.com> wrote in message
news:B7**********************************@microsof t.com...
I have gone threw this tutorial. But when I retrieve the image from the DB.
The image is only 1B, and I cannot open it. The filename is correct.

Whats wrong here?
"Cor Ligthert" wrote:
Mike,

There is a newer one on MSDN
http://support.microsoft.com/default...b;EN-US;308042

However when I see all those setting to nothing as well in that, I get
the
idea that it is written and than it was ready.

Cor
"Mike McIntyre" <mi****@dotnetshowandtell.com>
..
To read images from and write images to Sql Server see this MSDN
article:

http://support.microsoft.com/default...b;en-us;326502

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"DapDap" <pi******@hotmail.com> wrote in message
news:1c****************************@phx.gbl...
I have manage to open a image into a picture box. But I
have problem in Saving it into database SQL Server. How
to save the image ??



Nov 21 '05 #9
I'm using SQL Server 8 - and does exactly as the article -
http://support.microsoft.com/default...b;EN-US;308042
"Ken Tucker [MVP]" wrote:
Hi,

You have to store the image in binary format. Storeimage converts
image to binary format. ConvertToBitmap converts it back. Note the offset
for the northwind database is 78 my storeimage function has a offset of 0.

Private Function StoreImage(ByVal bm As Bitmap) As Object

Dim ms As New MemoryStream

Try

bm.Save(ms, Imaging.ImageFormat.Jpeg)

Return ms.GetBuffer

Catch

Return Convert.DBNull

End Try

End Function

Private Function ConvertToBitmap(ByVal data() As Byte, ByVal offset As
Integer) As Bitmap

Dim ms As New System.IO.MemoryStream

Dim bm As Bitmap

ms = New MemoryStream

ms.Write(data, offset, data.Length - offset)

bm = New Bitmap(ms)

Return bm

End Function

Ken

----------------------

"Kenneth" <Ke*****@discussions.microsoft.com> wrote in message
news:B7**********************************@microsof t.com...
I have gone threw this tutorial. But when I retrieve the image from the DB.
The image is only 1B, and I cannot open it. The filename is correct.

Whats wrong here?
"Cor Ligthert" wrote:
Mike,

There is a newer one on MSDN
http://support.microsoft.com/default...b;EN-US;308042

However when I see all those setting to nothing as well in that, I get
the
idea that it is written and than it was ready.

Cor
"Mike McIntyre" <mi****@dotnetshowandtell.com>
..
To read images from and write images to Sql Server see this MSDN
article:

http://support.microsoft.com/default...b;en-us;326502

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"DapDap" <pi******@hotmail.com> wrote in message
news:1c****************************@phx.gbl...
>I have manage to open a image into a picture box. But I
> have problem in Saving it into database SQL Server. How
> to save the image ??



Nov 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: F. Hall | last post by:
If I read a bitmap image from one file and save it to another the save operation is slow unless I draw on the image. In other words, Image inputImage = Image.FromFile( @"c:\temp\source.bmp" );...
5
by: George | last post by:
This program need to draw the some triangles into a 512 × 512 buffer (in memory). Or save it to a file. #include "project3.h" Image::Image(int xres, int yres): xres(xres), yres(yres) {...
9
by: Mark Johnson | last post by:
How can you save all or a portion of the Grafics object to a Image/Bitmap ? I am try to save the Images from Cards.dll to a BitMap file. I can read in the Images to the Grafics, but when I try this...
1
by: Sam Jost | last post by:
Bitmap.Save() does crash very often on Saving jpg's. It seems to dislike pictures on a random basis, but when it dislikes a picture there is no way around it. Take for example the picture...
0
by: prakash | last post by:
Dear Friends I am new guy to Visual C++.NET I've program to save website as a image vc++.net . It have a function "SaveSnapshot" to save the webpage as an image On that function ifor saving...
1
by: Hardy Wang | last post by:
Hi, I found a piece of code to add drop shadow to a photo like below, after I save the image, it is actually a BMP file even though I specify a JPG file extension (see...
2
by: Ada | last post by:
First of all, I thought this might be a directory security issue but it's not. I was able to upload the file to the directory via HTTP. Here's the situation. I have a JPG file on my server....
1
by: liuliuliu | last post by:
hi -- sorry if this is trivial -- but how do you make a screenshot of a pygame display? i have a surface which is basically the entire visible screen -- how do you write this surface as an image...
1
by: Stedak | last post by:
I have the following class I use to save Tiff's. The problem I have with it is that the final size of the images are very large. If we scan directly to a file the final tiff may be 600-900 kb.s but...
0
by: crazyyellowguy | last post by:
hi, This is my first post in this forum and I just wanted to thank you for even taking a look at my post. The class that I am writing the C code for is my first computer class and my knowledge is...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.