Possibilities of AppleScript in C1 Pro ( converting images)
Hello,
is it possible to do the following task via AppleScript in C1Pro.
1. Read in bunch of images
2. Convert images from one format to another format
3. save converted image to certain folder
#1 and #3 should work, but the appleScript-Dictionary of C1Pro confuses me a little bit.
is it possible to do the following task via AppleScript in C1Pro.
1. Read in bunch of images
2. Convert images from one format to another format
3. save converted image to certain folder
#1 and #3 should work, but the appleScript-Dictionary of C1Pro confuses me a little bit.
0
-
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 Luck0 -
Thank you very much, that helped me a lot 😊 0
Post ist für Kommentare geschlossen.
Kommentare
2 Kommentare