|
-
Oct 20th, 2002, 11:35 AM
#1
Thread Starter
Member
how to save processed image??
hi,
i have done some work on images and generated many effects.
But the problem is after modifying the image in picture box i am unable to save it.
Plz, tell me how i can get rid of this?
thanx
-
Oct 20th, 2002, 12:24 PM
#2
Good Ol' Platypus
VB Code:
SavePicture Picture1.Image
You must save your Picturebox's image property, and not its picture property. If that doesn't work, use the refresh property of the picturebox before you save it.
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
Oct 20th, 2002, 01:25 PM
#3
Thread Starter
Member
Thanx
But this also doesn't work.
And when i refresh picture box it restores to the original image.
Plz try to solve it.
bye
-
Oct 20th, 2002, 02:06 PM
#4
Addicted Member
You'll have to set the Autoredraw property to true and then use the savepicture function.
Code:
Picture1.AutoRedraw = True
SavePicture Picture1.Image
Offcourse you have to replace the Picture1 by the name of the picturebox you are using.
-Shell-
-
Oct 20th, 2002, 03:33 PM
#5
Thread Starter
Member
hey,
its working!
thanx
i have done it.
thank u very much.
bye.
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
|