473,513 Members | 2,397 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2132
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
626
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" ); using ( Graphics g = Graphics.FromImage( inputImage ) ) { g.DrawLine( new Pen(Brushes.White), 0, 0, 1, 1 ); } inputImage.Save( @"c:\temp\sink.bmp",...
5
3998
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) { image =new Color*; for (int i=0;i<yres;i++)
9
2627
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 with a Bitmap the results are Black. Can you somehow Clip the Grafic and Paste it into the Bitmap ? Mark Johnson, Berlin Germany...
1
4330
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 http://home.foni.net/~sjost/fremd/IMGP5753-2.JPG I load the picture, and save it rotated by 270 degree. Works like charm: public void...
0
4112
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 as a image it uses image.Save method() This image.Save function have two overloaded form's first one is file name
1
4159
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 http://img140.imageshack.us/my.php?image=resized11wz.jpg). If I force to save in JPG format (see the commented line), then the whole shadow is a messup (see...
2
2640
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. ..../images/myPIC.jpg I wanted to draw a box or line using GDI+ on top of myPIC.jpg and then save the new image to the server.
1
6779
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 file during specific events in the script execution? image format doesnt matter. thanks! christine
1
3428
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 with this code it is often 4000-5000 kb.s. What am I missing? public class EmrTiff : IDisposable { private string fileName; private ArrayList...
0
2029
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 limited to what was taught in lectures. Right now I am making a GUI code and am having trouble saving the image after it has been altered. As of...
0
7177
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7559
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7542
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5701
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5100
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
4756
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3237
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1611
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
470
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.