使用自动机拍摄服务从所选图像创建PDF

时间:2016-07-02 00:33:23

标签: bash macos automation applescript

我发现了许多相关主题,但没有一个解决方案似乎适合我想做的事情或者他们不能工作。

我想在取景器窗口中的文件夹中选择多个图像。 我想右键单击选择并运行服务以使用这些图像所在的同一文件夹中的图像创建PDF。

我不知道如何获取放置图像的目录。

1 个答案:

答案 0 :(得分:0)

假设您选择的文件可能来自不同的文件夹,您必须循环到每个图像并获取父文件夹,如下所示:

tell application "Finder"
set myFIles to selection -- read your selection of images   
repeat with aFile in myFIles -- loop for each selecgted image
    set ParentFolder to container of aFile -- get folder which contains that image
end repeat
end tell