Full screen capture

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
mailinator
Posts: 2
Joined: 2011-06-14T12:55:30-07:00
Authentication code: 8675308

Full screen capture

Post by mailinator »

Hello,

Is it possible to capture full screen of desktop including start menu, icons etc?

-window root command capture just active windows and not the start menu, icons on desktop...

Thanks
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Full screen capture

Post by anthony »

As you mentioned Start menu I gather you are on Microsoft windows!

I am however not certain how -window works under Microsoft windows, as I am not a windows user.
I know how it works under X windows. The only thing I can think of is that it is a system specific thing.

Question does the microsoft screen capture ('print' key???) capture the start menu and task bar?
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
mailinator
Posts: 2
Joined: 2011-06-14T12:55:30-07:00
Authentication code: 8675308

Re: Full screen capture

Post by mailinator »

Sorry, I should say that I'm using Ubuntu.
Print Screen key work (it capture desktop icons, start menu etc.).
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Full screen capture

Post by anthony »

Well then it should work fine.. Though they don't call it a 'start menu' which is why I thought you were on microsoft windows.

Try this

Code: Select all

convert x:root -resize 50% show:
this grabs the whole display, resizes by half, and displays (show:) the result.

For more info see...
http://www.imagemagick.org/Usage/files/#x

Which includes examples of grabbing, and modifying specific windows (or any window!)
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply