New Post: Feeder doesn't work
Hello, hgramaje. Try this a sample to scan. After scanning it create file on a desktop. If you give exception, send to me this file.
View ArticleNew Post: Вопрос про освобождении памяти
Dispose - не помогПробую такСоздаю Twain32Вызываю все SeectSource и OpenSourceВыставляю Capabilities 4.в цикле перебираю все картинки tw.GetImage(i) и для каждой вызываю Dispose т.е. так: for(int...
View ArticleNew Post: Вопрос про освобождении памяти
Добрый день, Aleksey1555. Я воспроизвел Ваш алгоритм в следующем примере. В примере было отсканировано 500 страниц, утечки памяти не выявлено.
View ArticleNew Post: Aux_MSIL problem
Hi, I have a problem with Saraff.Twain.OutprocSample4. This part of code throws an exception. TwainExternalProcess.Execute( Path.Combine(Path.GetDirectoryName(this.GetType().Assembly.Location),...
View ArticleNew Post: Aux_MSIL problem
Hello, icefragment. Try copy Saraff.Twain.Aux_MSIL.exe and Saraff.Twain.Aux_x86.exe to a output directory of a Saraff.Twain.OutprocSample4 project (Saraff.Twain.OutprocSample4/bin/debug).
View ArticleUpdated Wiki: Documentation
If you notice an error, please let me know about it.TWAIN Specification Saraff.Twain.NET implements TWAIN 2.3 Specification. Explanation of specification is not the purpose of this project. Here will...
View ArticleUpdated Wiki: Strongly typed accessing to a capabilities
Strongly typed accessing to a capabilities The Saraff.Twain.NET support strongly typed accessing to a capabilities that specified in a TWAIN 2.3 Specification.Follow two interfaces provide accessing to...
View ArticleUpdated Wiki: General (not strongly typed) accessing to a capabilities
General (not strongly typed) accessing to a capabilities This way is versatile and can be used for any capabilities. Following methods of a Twain32 class, provide necessary functionality TwQC...
View ArticleUpdated Wiki: Capability Containers
Capability Containers Capabilities exist in many varieties but all have a Default Value, Current Value, and may have other values available that can be supported if selected. To help categorize the...
View ArticleUpdated Wiki: Custom capability
Custom capabilityif((this._twain32.IsCapSupported((TwCap)0x9876 /*custom capability code*/)&TwQC.GetCurrent)!=0) { var _value=this._twain32.GetCurrentCap((TwCap)0x9876 /*custom capability code*/); }
View ArticleUpdated Wiki: String values
String values There are four types of TWAIN strings defined for developer use: TW_STR32TW_STR64TW_STR128TW_STR256//Authorif((this._twain32.IsCapSupported(TwCap.Author)&TwQC.Set)!=0) {...
View ArticleUpdated Wiki: Documentation
If you notice an error, please let me know about it.TWAIN Specification Saraff.Twain.NET implements TWAIN 2.3 Specification. Explanation of specification is not the purpose of this project. Here will...
View ArticleUpdated Wiki: Image Information and Extended Image Information
Image Information and Extended Image Information To retrieve image information and extended image information need to handle the XferDone event. This event is raised for each of the received image.The...
View ArticleUpdated Wiki: Image Information and Extended Image Information
Image Information and Extended Image Information To retrieve image information and extended image information need to handle the XferDone event. This event is raised for each of the received image.The...
View ArticleUpdated Wiki: Use TWAIN 2.x
Use TWAIN 2.x The default TWAIN 1.x (except x64 platform, because it supported only TWAIN 2.x). If you need to use TWAIN 2.x, then you must set the appropriate value to the IsTwain2Enable property...
View ArticleUpdated Wiki: Use TWAIN 2.x
Use TWAIN 2.x The default TWAIN 1.x (except x64 platform, because it supported only TWAIN 2.x). If you need to use TWAIN 2.x, then you must set the appropriate value to the IsTwain2Enable property...
View ArticleUpdated Wiki: Native Mode Transfer
Native Mode Transfer Native mode is the default mode. There is one potential limitation that can occur in a Native modetransfer. That is, there may not be an adequately large block of RAM available to...
View ArticleUpdated Wiki: Disk File Mode Transfer
Disk File Mode Transfer Enable disk file mode transfer as follows:this._twain32.Capabilities.XferMech.Set(TwSX.File);Image transmission is implemented as follows: for each image is raised...
View ArticleUpdated Wiki: Buffered Memory Mode Transfer
Buffered Memory Mode Transfer Enable buffered memory mode transfer as follows:this._twain32.Capabilities.XferMech.Set(TwSX.Memory);Image transmission is implemented as follows: for each image is raised...
View Article