The MASM Forum

General => The Campus => Topic started by: Fraile on December 05, 2019, 04:15:04 AM

Title: How can I read a clipboard image?
Post by: Fraile on December 05, 2019, 04:15:04 AM
I'm not sure how to do it.
Title: Re: How can I read a clipboard image?
Post by: hutch-- on December 05, 2019, 04:17:47 AM
It would help if you told us what you are planning to use in terms of an assembler or compiler.
Title: Re: How can I read a clipboard image?
Post by: jj2007 on December 05, 2019, 04:39:29 AM
If it's just for displaying the image:

include \masm32\MasmBasic\Res\MbGui.asm
GuiControl MyImage, "canvas"
Event CanvasPaint
  GuiImage clipboard
GuiEnd


Saving the image is much more complicated (project attached):

include \masm32\MasmBasic\Res\MbGui.asm         ; needs MasmBasic (http://masm32.com/board/index.php?topic=94.0)
GuiControl MyImage, "canvas"
GuiImageCallback MySave                ; tell GuiImage to call MySave

Event CanvasPaint
  GuiImage clipboard
EndOfEvents

MySave: SaveImageToFile "test.jpg"      ; can be gif, bmp, png, jpg, tiff ...
  ret
GuiEnd
Title: Re: How can I read a clipboard image?
Post by: Vortex on December 05, 2019, 07:48:39 AM
Hi AsmAlmeria12,

Here is an example for you. The code does not check the content of the clipboard so please don't forget to hit PRINT SCREEN or ALT+PRINT SCREEN before testing the application.
Title: Re: How can I read a clipboard image?
Post by: Fraile on December 05, 2019, 08:17:50 AM
thank you very much to all. The example, of vortex, is what I was looking for.  :eusa_clap: