Snapshot+Clipboard

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Yves Lange

    Snapshot+Clipboard

    Hello,
    i'm searching a method to take a snapshot and save it in a jpg, bmp or
    gif file. I tried with win32api and win32con but it save the snapshot to
    the clipboard, so i tried to redirect this in a file but i have some
    problems while getting the IMAGE stocked in the clipboard and save it to
    a file. Can somebody help me ?

    Questions:
    -How can i read the snapshot in the clipboard ?
    -How can i take a snapshot in a different way (less difficult) ?

    Thks.
  • Claudio Grondi

    #2
    Re: Snapshot+Clipbo ard

    Yves Lange wrote:
    Hello,
    i'm searching a method to take a snapshot and save it in a jpg, bmp or
    gif file. I tried with win32api and win32con but it save the snapshot to
    the clipboard, so i tried to redirect this in a file but i have some
    problems while getting the IMAGE stocked in the clipboard and save it to
    a file. Can somebody help me ?
    >
    Questions:
    -How can i read the snapshot in the clipboard ?
    -How can i take a snapshot in a different way (less difficult) ?
    >
    Thks.
    Use PIL which on Windows supports taking snapshots of the screen.
    <code>
    import ImageGrab
    GrabbedImage = ImageGrab.grab( ) # store screenshot as "RGB" Image
    GrabbedImage.sa ve("TheScreensh ot.jpg") # PIL evaluates extension
    </code>
    For more details see:

    (works on Windows only)

    Claudio Grondi

    Comment

    • Yves Lange

      #3
      Re: Snapshot+Clipbo ard

      Claudio Grondi a écrit :
      Yves Lange wrote:
      >Hello,
      >i'm searching a method to take a snapshot and save it in a jpg, bmp or
      >gif file. I tried with win32api and win32con but it save the snapshot
      >to the clipboard, so i tried to redirect this in a file but i have
      >some problems while getting the IMAGE stocked in the clipboard and
      >save it to a file. Can somebody help me ?
      >>
      >Questions:
      >-How can i read the snapshot in the clipboard ?
      >-How can i take a snapshot in a different way (less difficult) ?
      >>
      >Thks.
      >
      Use PIL which on Windows supports taking snapshots of the screen.
      <code>
      import ImageGrab
      GrabbedImage = ImageGrab.grab( ) # store screenshot as "RGB" Image
      GrabbedImage.sa ve("TheScreensh ot.jpg") # PIL evaluates extension
      </code>
      For more details see:

      (works on Windows only)
      >
      Claudio Grondi
      Thks this module works well !

      Comment

      • chemila66@hotmail.com

        #4
        Re: Snapshot+Clipbo ard




        Claudio Grondi wrote:
        >
        Yves Lange wrote:
        >Hello,
        >i'm searching a method to take a snapshot and save it in a jpg, bmp or
        >gif file. I tried with win32api and win32con but it save the snapshot to
        >the clipboard, so i tried to redirect this in a file but i have some
        >problems while getting the IMAGE stocked in the clipboard and save it to
        >a file. Can somebody help me ?
        >>
        >Questions:
        >-How can i read the snapshot in the clipboard ?
        >-How can i take a snapshot in a different way (less difficult) ?
        >>
        >Thks.
        >
        Use PIL which on Windows supports taking snapshots of the screen.
        <code>
        import ImageGrab
        GrabbedImage = ImageGrab.grab( ) # store screenshot as "RGB" Image
        GrabbedImage.sa ve("TheScreensh ot.jpg") # PIL evaluates extension
        </code>
        For more details see:

        (works on Windows only)
        >
        Claudio Grondi
        --

        >
        >
        In my project I need a module to do the ImageGrab's job but in linux,
        so is there a linux version module by now or do you know the other module
        fit for linux?

        if anybody knows that, please reply me, thanks.

        --
        View this message in context: http://www.nabble.com/Snapshot%2BCli...p20127327.html
        Sent from the Python - python-list mailing list archive at Nabble.com.

        Comment

        Working...