मेरी समझ से तो मैक ओ एस नहीं है किसी भी एक देशी कमांड लाइन यूनिक्स निष्पादन योग्य कर सकते हैं सभी पृष्ठों को घुमाएं में पीडीएफ (पाठ आधारित लोगों को पाठ आधारित रखते हुए)। sip
एक पृष्ठ को घुमा सकते हैं पीडीएफ हालांकि परिणाम पीडीएफ है एक संकुचित छवि , नहीं टेक्स्ट यदि यह पाठ आधार के साथ शुरू किया गया था। इसके अलावा, निश्चित नहीं है कि क्या कोई रास्ता है मैदान AppleScript , अन्य तो के माध्यम से यूआई स्क्रिप्टिंग चूक पूर्वावलोकन आवेदन, बिना जाने AppleScriptObjC ( कोको-AppleScript ) और या अजगर , आदि।
का उपयोग करते हुए तृतीय-पक्ष कमांड लाइन उपयोगिताओं शायद सबसे आसान है, लेकिन आपने कहा कि यह केवल क्या का उपयोग करके किया जाना है का एक डिफ़ॉल्ट हिस्सा मैक ओ एस । तो, मैं एक की पेशकश करता हूँ AppleScript समाधान जो उपयोग करता है यूआई स्क्रिप्टिंग चूक पूर्वावलोकन आवेदन, उस घटना में इस्तेमाल किया जा सकता है जिसके साथ कोई दूसरा तरीका नहीं है AppleScriptObjC या बिना तृतीय-पक्ष उपयोगिताओं , आदि।
इस समाधान, के रूप में की पेशकश (और कोडित), मानता है कि पूर्वावलोकन है चूक के लिए आवेदन पीडीएफ दस्तावेजों और यह करने के लिए उपयोग करता है घुमाना में सभी पृष्ठों पीडीएफ दस्तावेज़। यह भी एक के रूप में सेटअप है स्वचालक कार्यप्रवाह । (हालांकि AppleScript को शामिल करने के अन्य तरीके हैं कोड नीचे दिखाया गया है।)
पहला खोजक , लक्ष्य की एक प्रति बनाएँ पीडीएफ दस्तावेज़ और उन लोगों के साथ काम करते हैं।
में स्वचालक , कोई नया बनाएं कार्यप्रवाह दस्तावेज़, निम्नलिखित जोड़ रहा है कार्रवाई :
- निर्दिष्ट खोजक आइटम प्राप्त करें
- जोड़ना कॉपी किया गया लक्ष्य पीडीएफ इस पर दस्तावेज़ कार्य ।
- AppleScript स्क्रिप्ट चलाएँ
- बदलने के डिफ़ॉल्ट कोड उसके साथ कोड नीचे:
AppleScript कोड :
on run {input}
set thisLong to 0.25 -- # The value of 'thisLong' is decimal seconds delay between keystrokes, adjust as necessary.
set theRotation to "r" -- # Valid values are 'l' or 'r' for Rotate Left or Rotate Right.
set theViewMenuCheckedList to {}
set theMenuItemChecked to missing value
repeat with thisItem in input
tell application "Finder" to open file thisItem -- # By default, in this use case, the PDF file will open in Preview.
delay 1 -- # Adjust as necessary. This is the only 'delay' not defined by the value of 'thisLong'.
tell application "System Events"
perform action "AXRaise" of window 1 of application process "Preview" -- # Just to make sure 'window 1' is front-most.
delay thisLong
-- # Ascertain which of the first six 'View' menu items is checked.
set theViewMenuCheckedList to (value of attribute "AXMenuItemMarkChar" of menu items 1 thru 6 of menu 1 of menu bar item 5 of menu bar 1 of application process "Preview")
repeat with i from 1 to 6
if item i in theViewMenuCheckedList is not missing value then
set theMenuItemChecked to i as integer
exit repeat
end if
end repeat
-- # Process keystrokes based on which 'View' menu item is checked.
-- # This is being done so the subsequent keystroke ⌘A 'Select All'
-- # occurs on the 'Thumbnails', not the body of the document.
if theMenuItemChecked is not 2 then
repeat with thisKey in {"2", "1", "2"}
keystroke thisKey using {option down, command down}
delay thisLong
end repeat
else
repeat with thisKey in {"1", "2"}
keystroke thisKey using {option down, command down}
delay thisLong
end repeat
end if
repeat with thisKey in {"a", theRotation as text, "s"} -- # {Select All, Rotate Direction, Save}
keystroke thisKey using {command down}
delay thisLong
end repeat
keystroke theMenuItemChecked as text using {option down, command down} -- # Resets the 'View' menu to the original view.
delay thisLong
keystroke "w" using {command down} -- # Close Window.
end tell
end repeat
end run
टिप्पणियाँ:
- इस प्रकार लिपि का उपयोग करता है यूआई स्क्रिप्टिंग , जब से चला स्वचालक (या स्क्रिप्ट एडिटर ), रनिंग ऐप को जोड़ना होगा सिस्टम प्रेफरेंसेज & Gt; सुरक्षा & Amp; एकांत & Gt; सरल उपयोग के लिए रन ढंग से। के रूप में सहेजा गया आवेदन सहेजे गए एप्लिकेशन को जोड़ना होगा।
- के साथ भी यूआई स्क्रिप्टिंग के मूल्य
delay
आदेशों आपके सिस्टम (और अतिरिक्त) पर उपयोग के लिए बदलना पड़ सकता है delay
आदेशों उपयुक्त के रूप में जोड़ा, हालांकि अतिरिक्त मामले में delay
आदेशों की जरूरत नहीं होनी चाहिए)। हालांकि यह कहे बिना जाना चाहिए कि पहले कुछ दस्तावेज़ के सेट पर यह परीक्षण करें कि यह सुनिश्चित करने के लिए कि मूल्य निर्धारित करना है thisLong
आपके सिस्टम पर काम करता है। मेरे सिस्टम पर यह कोडित के रूप में काम करता है।
- उपयोग करते समय यूआई स्क्रिप्टिंग इस तरीके से, एक बार कार्य शुरू हो जाने के बाद, किसी को सिस्टम को अकेला छोड़ देना चाहिए और फाइलों को संसाधित करने देना चाहिए। बहु-कार्य के लिए प्रयास केवल हाथ से काम से ध्यान हटाने और असफल होने का कारण होगा।
यदि आपको अधिक घुमाने की आवश्यकता है तो एक बार, अतिरिक्त जोड़ें theRotation as text,
सेवा मेरे:
repeat with thisKey in {"a", theRotation as text, "s"} -- # {Select All, Rotate Direction, Save}
उदाहरण:
repeat with thisKey in {"a", theRotation as text, theRotation as text, "s"}