Results 1 to 20 of 28

Thread: Qt4 and TWAIN scanning

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Oct 2010
    Posts
    7
    Qt products
    Qt4

    Default Re: Qt4 and TWAIN scanning

    Perdona Nyaw, pero al bajarme los dos ficheros qtwain.zip y QtTwainScan.zip e intentarlos abrir se produce un error: "Final inesperado del archivo".
    Como estoy interesado en poder añadir capacidades para escanear a una aplicación que estoy haciendo, podrÃ*as facilitarnos esos archivos correctamente.

    ¿Has hecho algún progreso al respecto?

    Muchas gracias.

  2. #2
    Join Date
    Jan 2006
    Location
    Sta. Eugènia de Berga (Vic - Barcelona - Spain)
    Posts
    869
    Thanks
    70
    Thanked 59 Times in 57 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: Qt4 and TWAIN scanning

    Hi,

    Dear jokinb,
    Don't post spanish posts on this forum as people can't read it.
    I just downloaded the file and uncopressed using WinRAR and it had no error.
    Respect to the progress on this, I said that it works not very well but it is perfect fot my application.
    Maybe the newest 2 version of TWAIN will be better.
    Of course you can send me private messages written in spanish.
    Òscar Llarch i Galán

  3. #3
    Join Date
    Oct 2010
    Posts
    7
    Qt products
    Qt4

    Default Re: Qt4 and TWAIN scanning

    I will write in English.
    I have domnloaded the qtwain.zip file and I have got the same error. "Unexpected end of archive".

    It is posible to use the WIA tecnology in Qt?
    Thanks
    Jokinb

  4. #4
    Join Date
    Jan 2006
    Location
    Sta. Eugènia de Berga (Vic - Barcelona - Spain)
    Posts
    869
    Thanks
    70
    Thanked 59 Times in 57 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: Qt4 and TWAIN scanning

    Hi,

    Try this, I only donwloaded the file from this forum uncompressed and compressed again.
    Attached Files Attached Files
    Òscar Llarch i Galán

  5. #5
    Join Date
    Oct 2010
    Posts
    7
    Qt products
    Qt4

    Smile Re: Qt4 and TWAIN scanning

    Finally , with a lot of tricks I have got the qtwain file downloaded.
    How many files are in. I get six. It is ok.?

    Thanks
    Jokinb

  6. #6
    Join Date
    Jan 2006
    Location
    Sta. Eugènia de Berga (Vic - Barcelona - Spain)
    Posts
    869
    Thanks
    70
    Thanked 59 Times in 57 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: Qt4 and TWAIN scanning

    Hi,

    Yes, there are 6 files.

    I don't understand why you have to use a lot of tricks. Is there any other person that can try downloading the file and decompress it to check if there is any error on uncompress it?
    Òscar Llarch i Galán

  7. #7
    Join Date
    Jun 2007
    Location
    India
    Posts
    1,042
    Thanks
    8
    Thanked 133 Times in 128 Posts
    Qt products
    Qt3 Qt4 Qt/Embedded
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Qt4 and TWAIN scanning

    the notice on the forum says that they have some problems into attachments before 1st sep 2010. may be that is the issue. the new file is good.

  8. #8
    Join Date
    Oct 2010
    Posts
    7
    Qt products
    Qt4

    Smile Re: Qt4 and TWAIN scanning

    I don´t Know but the newest file had the same problem that the first one to open. I don´t Know why but... I tried with diferents programs to deskompress the file . The same message..."end of file corrupt"... "the file can´t bee opened"....

    Finnally i got the file opened in an unusual way. I have the six files and must find time to study them.

    Thanks

    Jokinb

  9. #9
    Kata Guest

    Default Re: Qt4 and TWAIN scanning

    Hello all,

    Have you got any simple example to use this class ?
    I have try to acquire and save 1 A4 image :
    Qt Code:
    1. #include <iostream>
    2. #include "qtwain.h"
    3.  
    4. using namespace std;
    5.  
    6. int main(int agc, char **argv)
    7. {
    8. QTwain t;
    9. t.initTwain();
    10. if(t.isValidDriver() && t.selectSource())
    11. {
    12. t.setResolutionY(1654);
    13. t.setResolutionX(2339);
    14. t.setDepth(1);
    15. t.acquire(1);
    16. }
    17. return 0;
    18. }
    To copy to clipboard, switch view to plain text mode 

    But it doesn't work; why ?

    For your help, by advance, thanks.

  10. #10
    Join Date
    Jan 2006
    Location
    Munich, Germany
    Posts
    4,714
    Thanks
    21
    Thanked 418 Times in 411 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows

    Default Re: Qt4 and TWAIN scanning

    The 'example' in the code!
    Just look in there.
    Qt Code:
    1. void QtTwainScan::scan()
    2. {
    3. if (!m_pTwain->initTwain())
    4. qWarning("initTwain() call not successful!");
    5. else
    6. if (!m_pTwain->selectSource())
    7. qWarning("selectSource() call not successful!");
    8. else
    9. if (!m_pTwain->acquire())
    10. qWarning("acquire() call not successful!");
    11. }
    To copy to clipboard, switch view to plain text mode 
    ==========================signature=============== ==================
    S.O.L.I.D principles (use them!):
    https://en.wikipedia.org/wiki/SOLID_...iented_design)

    Do you write clean code? - if you are TDD'ing then maybe, if not, your not writing clean code.

  11. The following user says thank you to high_flyer for this useful post:


  12. #11
    Kata Guest

    Default Re: Qt4 and TWAIN scanning

    Quote Originally Posted by high_flyer View Post
    The 'example' in the code!
    Just look in there.
    Qt Code:
    1. void QtTwainScan::scan()
    2. {
    3. if (!m_pTwain->initTwain())
    4. qWarning("initTwain() call not successful!");
    5. else
    6. if (!m_pTwain->selectSource())
    7. qWarning("selectSource() call not successful!");
    8. else
    9. if (!m_pTwain->acquire())
    10. qWarning("acquire() call not successful!");
    11. }
    To copy to clipboard, switch view to plain text mode 
    Happy new year.
    I have tried this (with QtCreator or the CLI) :
    Qt Code:
    1. #include <QApplication>
    2. #include "qtwain.h"
    3.  
    4. int main(int argc, char **argv)
    5. {
    6. QApplication app(argc, argv);
    7. QTwain m_pTwain;
    8. if (!m_pTwain.initTwain())
    9. qWarning("initTwain() call not successful!");
    10. else
    11. if (!m_pTwain.selectSource())
    12. qWarning("selectSource() call not successful!");
    13. else
    14. if (!m_pTwain.acquire())
    15. qWarning("acquire() call not successful!");
    16. return app.exec();
    17. }
    To copy to clipboard, switch view to plain text mode 

    But I still have a segmentation error,
    Have you ever have this bug ?

    By advance,
    Thanks

  13. #12
    Join Date
    Jan 2006
    Location
    Munich, Germany
    Posts
    4,714
    Thanks
    21
    Thanked 418 Times in 411 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows

    Default Re: Qt4 and TWAIN scanning

    Happy new year to you too!

    I just had a 2 seconds look - to see if I could help you getting started.
    I didn't look further.
    But you should.
    Maybe there are some initializations needed to be done, I don't know, stuff like that.
    Follow the application in the debugger, and see exactly where it crashes, it will tell you a lot about what the problem is.
    ==========================signature=============== ==================
    S.O.L.I.D principles (use them!):
    https://en.wikipedia.org/wiki/SOLID_...iented_design)

    Do you write clean code? - if you are TDD'ing then maybe, if not, your not writing clean code.

  14. #13
    Join Date
    Jan 2008
    Location
    Alameda, CA, USA
    Posts
    5,330
    Thanks
    317
    Thanked 871 Times in 858 Posts
    Qt products
    Qt5
    Platforms
    Windows

    Default Re: Qt4 and TWAIN scanning

    It is probably because the QTwain class requires an event loop to be running, and until you call app.exec(), there is no event loop.

    Your code is fundamentally different from the example in the previous post in the thread. You need to move your twain code into a method that gets called after the event loop has started.

  15. The following user says thank you to d_stranz for this useful post:


  16. #14
    Join Date
    Sep 2010
    Posts
    17
    Thanked 3 Times in 3 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Qt4 and TWAIN scanning

    Quote Originally Posted by jokinb View Post
    I will write in English.
    I have domnloaded the qtwain.zip file and I have got the same error. "Unexpected end of archive".

    It is posible to use the WIA tecnology in Qt?
    Thanks
    Jokinb
    and

    YES it is possible to use WIA technology with Qt. It's even necessary with Windows10.
    Just start with Windows SDK sample code :for example fiScanner

    SRSR

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.