473,666 Members | 1,991 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 2145
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******@hotma il.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******@hotma il.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******@hotma il.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******@hotma il.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****@dotnets howandtell.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******@hotma il.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****@dotnets howandtell.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******@hotma il.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****@dotnets howandtell.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******@hotma il.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(ByVa l bm As Bitmap) As Object

Dim ms As New MemoryStream

Try

bm.Save(ms, Imaging.ImageFo rmat.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.Memor yStream

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*****@discus sions.microsoft .com> wrote in message
news:B7******** *************** ***********@mic rosoft.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****@dotnets howandtell.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******@hotma il.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(ByVa l bm As Bitmap) As Object

Dim ms As New MemoryStream

Try

bm.Save(ms, Imaging.ImageFo rmat.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.Memor yStream

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*****@discus sions.microsoft .com> wrote in message
news:B7******** *************** ***********@mic rosoft.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****@dotnets howandtell.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******@hotma il.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", ImageFormat.Bmp );
5
4011
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
2639
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 mj10777@mj10777.de
1
4345
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 Rotate270AndSaveTest()
0
4131
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
4166
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 http://img70.imageshack.us/my.php?image=resized29cy.jpg). I am just wandering are there any attributes / formats...
2
2645
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
6804
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
3450
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 imageContainer = null;
0
2037
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 now, the only way that I know how to save is to save over the original picture, but that doesn't even...
0
8871
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8781
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8640
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7386
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4198
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4369
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2771
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
2
2011
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1776
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.