Free Scanning tool for Alfresco

Are you looking for a free scanning tool for Aflresco, you should try the new Capturesco version 2.0, open source built based on open source projects, no need to any licenses. Built with .Net framework 3.5 using C#. Can capture documents from any scanner with a TWAIN driver using ADF or flatbed by using the Native TWAIN User Interface or direct scanning. All documents can be saved as jpg, gif or Tiff also support single or multipage documents. The tool is still in development stages and testing. Feel free to add your comments and if you have any troubles just contact me and I will try to reply to you soon. Capturesco is a good start point for the developers who’s looking to develop their own customized scanning utility.

You can download Alfresco Scanning tool (Capturesco) from here.

Thank you for your interest and your support.

Capturesco 2.0 Beta 1 Released

Capturesco

Capturesco 2.0 Beta 1, just released. It has lots of changes and tweaks on the scanning module.

  • The project now is built using Visual Studio 2008
  • All codes are now written in C#
  • Adding TWAIN supports for Scanners
  • Scanning can be made through Capturesco or native scanner TWAIN driver
  • New enhanaced interface showing the steps.
  • Better supports for ADF
  • Users can now choose to save the multi pages scanning on a single file or multiple files
  • Lots of code cleaning
  • New logo for the Capturesco 🙂

Don’t forget to register WIA if you are planning to capture images through camera

To download it go to Capturesco Page on Alfresco Forge, if  you need any help leave a comment…

Any supports will be appreciated

Using ADF with WIA (VB.Net)

While I am working on Capturesco as a scanning/Capturing tool for Alfresco by using WIA, I faced a problem using ADF (Automatic Document Feeder) to scan images. I did some googling on the Internet until I found this article ADF using WIA, the article was for C#, I converted to VB.Net and did some modifications on the code to make it work.

The code will detect if there is a pages on the feeder if not, it will stop scanning, the code need some modifications to add multipages supports, for now all images will be saved as tiff on the C drive.

You can get the Scanning Code from Here

Custom Content Model Builder for Alfresco

This utility will help you to build custom content model, it only build the custom content model xml file, and the admin must modify manually the rest two files you can specify if the field is required, default or multi-values list. If you need any help please leave for me a comment, Source Code and Documentation

Update:

New updated source code is released please check the tool page

Playing FLV files in VB .Net

To play FLV files for SWF files in a windows application  you have to:

  1. Downloaded Flash player
  2. Added Com object (Macromedia Flash Factory Object) into the VB .Net Toolbox
  3. Drag and drop Com object onto a form
  4. download JW FLV Media Player from here
  5. load the “player.swf” file and send to it the parameters like the video name, etc… here you can find the parameter list

I put the below code on the load form event as an example

Dim swftoload As String
swftoload = “c:\player.swf?file=video.flv&autostart=true&logo=logo.PNG&smoothing=true”
AxShockwaveFlash1.LoadMovie(0, swftoload)

Enjoy playing flv files within your application or create you own FLV Player