Hi
I know that VSTwain1.DeleteImage(imageNum) will delete only one image. So, how to delete all?
Thanks
How to Delete All image
Moderator: Alex
-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: How to Delete All image
Hello,
You must reinitialize value of the MaxImages property if you want to clear the images buffer and release all used memory.
Please read description of the MaxImages property in documentation.
Best regards, Alexander
You must reinitialize value of the MaxImages property if you want to clear the images buffer and release all used memory.
Please read description of the MaxImages property in documentation.
Best regards, Alexander
-
- Posts: 12
- Joined: Wed Jan 07, 2009 4:23 am
Re: How to Delete All image
I read it. But I don't know how to reinitialize it.
Thanks.
Thanks.
-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: How to Delete All image
Hello,
You should set it anew. Here is an example:
Best regards, Alexander
You should set it anew. Here is an example:
Code: Select all
VSTwain1.MaxImages = 5
...
VSTwain1.MaxImages = 5 ' buffer will be cleared and all used resources will be freed
...
-
- Posts: 12
- Joined: Wed Jan 07, 2009 4:23 am
Re: How to Delete All image
Thanks very much.