メインコンテンツへスキップ

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

Possibilities of AppleScript in C1 Pro ( converting images)

コメント

2件のコメント

  • Mark711
    Do you mean to process a list of images from RAW to some other format using C1 Pro?

    I have a pretty elaborate script that extracts file names from a list in an email opens C1 Pro tags the images then processes them to a certain size and format based on other information in the email. The email is in a pre-defined format from a form on our web server. So in short , yes, it should be possible. I frequent this applescript bbs that is very helpful.


    If you can be more specific I could probably help further.

    This is from a sample script that comes with C1 Pro



    (*
    This script will process all images tagged "8".
    *)

    tell application "Capture One PRO"
    -- the session we're working on
    set mySession to session 1
    -- get the images to process
    set myImages to every image of capture favorite folder of mySession
    -- set process target, put the name of your process destination
    set myTarget to process destination "Web Proof"

    -- process image files
    repeat with myImage in myImages
    --Tag came be yes, no, maybe, one, two, etc through nine
    if tag of myImage is eight then
    start processing myImage target myTarget
    end if
    end repeat
    end tell


    In your process destination you can create a new folder for the images that will appear in the "Processed" folder.

    Good Luck
    0
  • MatzeLoCal
    Thank you very much, that helped me a lot 😊
    0

投稿コメントは受け付けていません。