Share via

how do I take a screenshot and save it as a jpeg so I can edit it

Anonymous
2012-05-18T17:08:47+00:00

I need to take a screenshot an save it as a jpeg so that I can edit it with Photoshop Ellements

Microsoft 365 and Office | PowerPoint | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
  1. Anonymous
    2012-05-27T16:13:01+00:00

    How is this anyway related to PowerPoint?

    To take the screen, press the PrtScn key on the keyboard. Go to PowerPoint, press Ctrl-V, right click on the image and click Save as Picture and save in your desired format.

    10+ people found this answer helpful.
    0 comments No comments

14 additional answers

Sort by: Most helpful
  1. Anonymous
    2012-05-18T21:05:42+00:00

    AS how you do it it works with MS PAINT, For Windows 98 to Windows 7,

    PRINT THE DAMM SCREEN by pressing [PRTSCR],

    Then in Windows, find MS PAINT OR Paintbruh in : "C:\Windows\system32" and make a  shortcut to the desktop when you see a paint brush and a pallette ICON.

    Then OPEN it and EDIT-> PASTE. You then have it. IF you need to crop it. use IRFAN VIEW 3,97 or better Then you can Lasso it  and crop it from its EDIT Menu. It does a lot better job and can transform most files to JPG, BMP or ICO. Visa versa, It is a dead nose winner for me! It works with Windows 98 to 7 with no problems at all. AND get all of its latest plugins.

    http://www.irfanview.com/

       ON its Menu Bar you PASTE what you captured from what your screen shows even if you cannot directly save it as from even the Flash Player! IF you want the last open Window  in which is highlighted, press [ALT + PRTSCR] and let Irfan View do a better job in editing it where MS PAINT cannot! It all depends upon your Photo editor program. Irfan View will also download from any Camera when set up as Windows Camera and Scan utility. It also can access any scanner once it is selected. I used to have Corel's Photo Shop 5 before I had Irfan view and they are almost identical until the CD shattered. That came with a HP Scanjet 5370 C professioonal scanner I still have and use to develop color 35 mm negatives in which requires its Transparency adaptor (A square light over the glass to shign through the negative and transform thorang negatives to it proper positive picture).

    From Edmond

    <Email Removed by Mod>

    1 person found this answer helpful.
    0 comments No comments
  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Anonymous
    2012-05-18T20:17:55+00:00

    But if you want to do it in VBA (with some help from here: http://word.mvps.org/faqs/macrosvba/PrtSc.htm)

    Option Explicit

    Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal _

        bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)

    Private Const KEYEVENTF_KEYUP = &H2

    Private Const VK_SNAPSHOT = &H2C

    Private Const VK_MENU = &H12

    Sub PrintScreen()

    ' To capture the whole screen:'    keybd_event VK_SNAPSHOT, 1, 0, 0

    End Sub

    Sub AltPrintScreen()

    ' To capture the active window'   

        keybd_event VK_MENU, 0, 0, 0

        keybd_event VK_SNAPSHOT, 0, 0, 0

        keybd_event VK_SNAPSHOT, 0, KEYEVENTF_KEYUP, 0

        keybd_event VK_MENU, 0, KEYEVENTF_KEYUP, 0

    End Sub

    Sub PrintScrnToJpeg()

        Dim sld As Slide

        Dim shp As Shape

        Call AltPrintScreen 'To print the active window

    '    Call PrintScreen   'To print the whole screen

        ActiveWindow.Selection.Unselect

        ActiveWindow.View.Paste

        Set sld = ActiveWindow.View.Slide

        Set shp = sld.Shapes(sld.Shapes.Count)

        shp.Export "C:\Temp\Picture1.jpg", ppShapeFormatJPG

    '    shp.Delete 'If you want to delete the screen shot from the ppt slideEnd Sub

    Hope that helps.

    Cheers

    Rich

    0 comments No comments
  4. Anonymous
    2012-05-18T18:08:30+00:00

    You could press the PNTSCRN key to copy and then paste into photoshop maybe?

    0 comments No comments