Saving screenshots of open Windows with graphic files

This forum is for eXpress++ general support.
Message
Author
User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Saving screenshots of open Windows with graphic files

#1 Post by Eugene Lutsenko »

Is it possible to save screenshots of open Windows as graphic files or presentation pages. I would like to implement the possibility of automated creation of a presentation on the work in the system

Wolfgang Ciriack
Posts: 479
Joined: Wed Jan 27, 2010 10:25 pm
Location: Berlin Germany

Re: Saving screenshots of open Windows with graphic files

#2 Post by Wolfgang Ciriack »

Perhaps dc_scrn2clipboard() and dc_printclipboard() ?
_______________________
Best Regards
Wolfgang

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Saving screenshots of open Windows with graphic files

#3 Post by rdonnay »

I don't know of any way to do this.
The eXpress train is coming - and it has more cars.

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Saving screenshots of open Windows with graphic files

#4 Post by Eugene Lutsenko »

Wolfgang Ciriack wrote:Perhaps dc_scrn2clipboard() and dc_printclipboard() ?
This might work. I remember there were some more grabbers. Immediately the presentation will not work, but a set of screenshots is almost the same. Especially if they are given names so that they are sorted by name in the correct order

User avatar
sdenjupol148
Posts: 151
Joined: Thu Jan 28, 2010 10:27 am
Location: NYC

Re: Saving screenshots of open Windows with graphic files

#5 Post by sdenjupol148 »

Eugene,

This may not be the road you want to take, but I use a free product called Cam Studio Open Source.
It's extremely simple to use!
Hit 'Record' and will capture all your screen movement.
You can add your voice for narration or easily place screen captions instead.
It also allows you to add a separate web cam overlay if you wish.
You can create videos for streaming or inbedding in applications.
I have used it many times to do presentations in conferences.

http://camstudio.org/

Bobby

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Saving screenshots of open Windows with graphic files

#6 Post by Eugene Lutsenko »

SbDrakos wrote:Eugene,

This may not be the road you want to take, but I use a free product called Cam Studio Open Source.
It's extremely simple to use!
Hit 'Record' and will capture all your screen movement.
You can add your voice for narration or easily place screen captions instead.
It also allows you to add a separate web cam overlay if you wish.
You can create videos for streaming or inbedding in applications.
I have used it many times to do presentations in conferences.

http://camstudio.org/

Bobby
Thank you! This is a very useful tool

PS
I have implemented multilingual support in the Eidos system, which I am engaged in. Now all text interface elements can be in one of 44 languages, which you can choose in 1.4 mode. You might be interested. This is a map of Eidos system launches in the world from the end of 2016 to the present day (only unique IP-addresses without clusters).
Attachments
Без имени-1.jpg
Без имени-1.jpg (104.62 KiB) Viewed 15024 times

User avatar
Tom
Posts: 1170
Joined: Thu Jan 28, 2010 12:59 am
Location: Berlin, Germany

Re: Saving screenshots of open Windows with graphic files

#7 Post by Tom »

Code: Select all

FUNCTION SaveScreenAsFile(cFileName) // hand over filename you want to use
LOCAL oClipBoard, oPicture, nResolution := 30
DC_Scrn2Clipboard()
oClipBoard := XbpClipBoard():new():create()
oClipBoard:open()
oPicture := oClipBoard:GetBuffer(XBPCLPBRD_BITMAP)
oClipBoard:Close()
oPicture:SaveFile(cFileName,XBPBMP_FORMAT_JPG,nResolution)
RETURN File(cFileName)
Best regards,
Tom

"Did I offend you?"
"No."
"Okay, give me a second chance."


User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Saving screenshots of open Windows with graphic files

#9 Post by Eugene Lutsenko »

Tom!

Turned to the above function. An error occurs during the execution of:
Attachments
Безымянный.jpg
Безымянный.jpg (77.8 KiB) Viewed 14987 times

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Saving screenshots of open Windows with graphic files

#10 Post by rdonnay »

#define VK_SNAPSHOT 0x2C
The eXpress train is coming - and it has more cars.

Post Reply