Solución de problemas del script de captura de pantalla

0

ANTECEDENTES

Se desarrolló una secuencia de comandos de Automator para guardar una captura de pantalla en un archivo (por alguien más inteligente que yo ). Por alguna razón, no confiablemente (rara vez) guarda la captura de pantalla en el archivo. El código se presenta a continuación.

El cursor de captura de pantalla se realiza constantemente cuando se le llama: la captura de pantalla se captura en la memoria. En contraste, la captura de pantalla no se guarda de manera consistente en el archivo como se codifica a continuación

PREGUNTAS

  • ¿Cómo se puede diagnosticar la causa raíz del problema de guardar?
  • ¿Hay algún error obvio en el código que cause el problema de guardar?
  • ¿Existe un problema de permisos? ¿Cómo confirmar / probar?

CÓDIGO

on run {input, parameters}

    --  # Screen Shot to Clipboard and File

    --  # Clear the clipboard so the 'repeat until isReady ...' loop works properly.

    set the clipboard to ""

    --  # Copy picture of selected area to the clipboard, press: ⌃⇧⌘4
    --  # Note that on my system I need to keystroke '$' instead of '4'.
    --  # I assume this is because the 'shift' key is being pressed.        

    tell application "System Events"
        keystroke "$" using {control down, shift down, command down}
    end tell

    --  # Wait while user makes the selection and releases the mouse or times out.
    --  # Note that the time out also acts as an escape key press of sorts. In other
    --  # words, if the user actually presses the escape key it has no effect on this
    --  # script like it would if pressing the normal shortcut outside of the script.
    --  #       
    --  # As coded, the time out is 5 seconds. Adjust 'or i is greater than 10' and or  
    --  # 'delay 0.5' as appropriate for your needs to set a different length time out.
    --  # This means, as is, you have 5 seconds to select the area of the screen you
    --  # want to capture and let go of the mouse button, otherwise it times out.

    set i to 0
    set isReady to false
    repeat until isReady or i is greater than 10
        delay 0.5
        set i to i + 1
        set cbInfo to (clipboard info) as string
        if cbInfo contains "class PNGf" then
            set isReady to true
        end if
    end repeat
    if not isReady then
        --  # User either pressed the Esc key or timed out waiting.
        return --  # Exit the script without further processing.
    end if

    --  # Build out the screen shot path filename so its convention is of 
    --  # the default behavior when saving a screen shot to the Desktop.

    set theDateTimeNow to (do shell script "date \"+%Y-%m-%d at %l.%M.%S %p\"")
    set theFilename to "Screen Shot " & theDateTimeNow & ".png"
    --  # set thePathFilename to POSIX path of (path to desktop folder as string) & theFilename
    set thePathFilename to "/Users/user/Documents/Captures/" & theFilename

    --  # Retrieve the PNG data from the clipboard and write it to a disk file.

    set pngData to the clipboard as «class PNGf»
    delay 0.5
    try
        set fileNumber to open for access thePathFilename with write permission
        write pngData to fileNumber
        close access fileNumber
    on error eStr number eNum
        try
            close access fileNumber
        end try
        activate
        display dialog eStr & " number " & eNum buttons {"OK"} default button 1 with title "File I/O Error..." with icon caution
    end try

    --  # Hide the file extension as is the default.
    --  # Convert the POSIX path filename to an alias.

    set thePathFilename to POSIX file thePathFilename
    set thePathFilename to thePathFilename as alias
    tell application "Finder"
        try
            set extension hidden of thePathFilename to true
        end try
    end tell


    return input
end run
    
pregunta gatorback 27.06.2018 - 03:37

1 respuesta

1

Para beneficio de otros lectores, vale la pena señalar que Finder tiene métodos abreviados de teclado integrados que le permitirán:

  • 3 : toma una captura de pantalla de una selección y guárdalo en el portapapeles ;
  • 4 : tome una captura de pantalla de una selección y guárdela en un archivo .

Puede modificar estos accesos directos en Preferencias del sistema > Teclado > Accesos directos > Capturas de pantalla .

He incluido una sugerencia en los comentarios sobre cómo comenzar a diagnosticar el script original. Pero, como hubiera escrito el guión de forma ligeramente diferente si hubiera querido (por alguna razón) evitar el uso de los métodos abreviados de teclado Finder , continué y lo escribí:

    set screenshots to do shell script "defaults read com.apple.screencapture location"
    set timestamp to do shell script "date +'%Y-%m-%d at %H.%M.%S'"
    set type to "jpg" -- or "png"
    set filename to ["Screen Shot ", timestamp, ".", type] as text

    do shell script "SCREENCAPTURE -ioac -t " & type
    set [imgdata] to (the clipboard) as list

    tell application "Finder"
        set screenshot to (make new file ¬
            at POSIX file screenshots as alias ¬
            with properties {name:filename}) as alias

        write the imgdata as class of imgdata to the screenshot

        reveal the screenshot
    end tell

Información del sistema: Versión de AppleScript : "2.7", versión del sistema : "10.13. 4 "

Por un lado, el script es más corto, y los scripts más cortos proporcionan menos lugares donde las cosas pueden ir mal. Actualmente, este script funciona bien en mi sistema. Por lo tanto, puedes probarlo en el tuyo para ver si funciona; si no, Editor de secuencias de comandos informará dónde se producen los errores y qué son, por ejemplo. si se trata de un error de permisos de archivo, etc.

    
respondido por el CJK 29.06.2018 - 10:13

Lea otras preguntas en las etiquetas