|
-
Mar 3rd, 2002, 08:02 PM
#1
Thread Starter
New Member
Saving Bitmaps
I am writing a practice play diagrm utility, and am having problems understanding how to save the bitmap loaded into a Picture Box.
-
Mar 6th, 2002, 08:27 AM
#2
Frenzied Member
maybe not what you mean:
SavePicture Picture1.Picture, "C:\whatever.bmp"
??
Wen Gang, Programmer
VB6, QB, HTML, ASP, VBScript, Visual C++, Java
-
Mar 6th, 2002, 10:11 AM
#3
One note on SavePicture...if you have a GIF file or a JPeg loaded into your Picture box, it will not be saved as a JPeg or GIF...it will be saved as a bitmap.
-
Mar 6th, 2002, 10:33 AM
#4
Thread Starter
New Member
SavePicture
Actually didn't know about SavePicture or LoadPicture. That does allow to save the bmp loaded into the PictureBox.
But when I save the image, any new items I placed on the image are not saved. I assume I am not really placing items on the bitmap itself.
I am looking for a cheap "home grown" solution to Annotate images (bitmaps). The document imaging tools that I have looked at LeadTools, etc. are too expensive.
Thanks for your help.
TF
-
Mar 6th, 2002, 10:36 AM
#5
Frenzied Member
If you BitBlt some new piece of image to the picture,
then change what I wrote to
SavePicture Picture1.Image, "C:\mypic.bmp"
Wen Gang, Programmer
VB6, QB, HTML, ASP, VBScript, Visual C++, Java
-
Mar 6th, 2002, 12:14 PM
#6
Thread Starter
New Member
.Image
That would be it! Thanks.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|