AUTOMATOR actions... converting Jpeg to PSD...

Hi guys
I am trying to find an action to convert about 10.000 photos and pictures from Jpeg to PSD... impossible to do it one by one, opening and saving using Photoshop CS... it'd take me forever!
I was even able to download a pretty nice action from Apple called "Change File Format 1.3"... it's very good but it doesn't support PSD... only .TIFF files...
I found another Automator Action for Photoshop CS "Photoshop Actions for Automator 1.0 " but it downloads as a .SIT file and I can't open it...
Does anyone know where I can get an Automator Action to convert Jpeg to PSD files???
Cheers

Problem solved!
Thank you guys!
I downloaded Stuffit Express... so I was able to open "Photoshop Actions for Automator 1.0 "
http://www.completedigitalphotography.com/index.php?p=339
Great pack and I was able to open the .sit file and just dragged the actions to my Photoshop CS folder... and it immediatly showed up on AUTOMATOR...
So, I just made a PSD copy of each Jpeg...
Thank you

Similar Messages

  • How to stop Preview from changing resolution when converting JPEGs into PDF

    I am combining several JPEGs of identical resolution into a PDF using Preview, using either the sidebar or Automator action (http://discussions.apple.com/thread.jspa?messageID=11893607). For some reason, Preview changes the resolution of the PDF so viewing it at actual size (100% zoom) is bigger and pixellated. Example: a 960x600 JPEG becomes approx 1355x845. I figured it had something to do with dpi and indeed if I do the calculation and open up each JPEG in Photoshop and resize (without resampling, i.e. without changing pixels) to 101.5, the resulting PDF is pretty close to what it should be. (Calculation = 1355/960 * 72dpi.) But the slight resize and recompression lowers quality, plus it's a huge pain to go through all of that for every image.
    This issue is the same for simple saving a single image, the combining and use of Automator script has no impact.
    My question, in summary: how do I get Preview to save a JPEG as a PDF without changing its resolution?

    I have the same problem. I have a bunch of scanned documents (jpeg), and have been trying to make them a multi page document, instead of 20+ images.
    Using the Automator "New PDF from Images" preview action v1.0, supplied by Apple with Snow Leopard, and I am able to convert the images to a PDF.
    Using these images, the first page being 1032 x 1600 pixels, and telling the automator action to +size each page to fit image+, I convert them into a PDF.
    Converted PDF is viewable here.
    The original JPG is clearly higher resolution than the PDF, and the PDF loses the crispness of the original scan. Even using "+size each page to fit image+" does not make the page the original image size.
    What's happening here, and does anyone know a better way to convert Jpegs to PDF on the Mac - and keep the image resolution? I don't care about files sizes here, but keeping resolution and maintaining quality.

  • Saving converts JPEG to PSE

    When I try to save JPEG images in PSE9 they are converted (after the final JPEG dialogue box) to PSE format.  Attempts to open the PSE image results in a "wrong format" message.  "Open as" allows me to reconvert the image to JPEG; is this normal and can it be fixed?  Also, layers are automatically flattened upon saving.  Can they be preserved for later work?

    Ahh...HA!  Thank you for this wonderful insight. I think I've got it now!
    Date: Mon, 17 Oct 2011 21:59:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Saving converts JPEG to PSE
        Re: Saving converts JPEG to PSE
        created by photodrawken in Photoshop Elements - View the full discussion
    Barbara B. wrote: PSD is the format to use if you will need to edit the image again in PSE.Or tiff, but a jpeg can't have layers, ever.Just for my benefit -- I've always assumed that a PSD file will include at least some PSE-usable info that a TIFF file doesn't.  Am I wrong? Ken
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3976629#3976629
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3976629#3976629. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How can I edit an Automator action for Word?

    I'm running Word 2008 on a Macbook Pro, Mac OS 10.5.
    Word comes with a selection of Automator actions, including one to find and replace text in Word. I often want to convert standard numerals to old-style numerals, which are part of the extended glyphs set in fonts I use. Automator will allow me to set up ten find/replace actions (for the numbers 0-9) that successfully replace all the numerals with old-style numerals. But it only does it for the main body of the document, not for the footnotes. I need to be able to do it for all the footnotes.
    I thought I might find a workaround by adding an AppleScript to my workflow, which would shift the focus in Word to the footnotes and rerun the find/replace actions. I mapped the menu item View/Footnotes to the keystroke command-) and inserted this AppleScript into the Automator workflow:
    tell application "Microsoft Word"
    tell application "Microsoft Word" to activate
    tell application "System Events"
    tell process "Microsoft Word"
    keystroke ")" using command down
    end tell
    end tell
    end tell
    But the find/replace actions simply repeat what they'd done before, converting the numerals in the main body but not in the footnotes. I then thought that perhaps I should have an AppleScript to do the find/replace itself, once the footnotes have been selected, so I created the following (command-H accesses the find/replace dialog box in Word 2008):
    tell application "Microsoft Word"
    tell application "Microsoft Word" to activate
    tell application "System Events"
    tell process "Microsoft Word"
    keystroke "H" using command down
    keystroke "1"
    keystroke tab
    keystroke ""
    end tell
    end tell
    end tell
    The character after the fourth keystroke command is the glyph for old-style numeral 1. For some reason Word reinterprets this as the letter a. So using AppleScript I can only replace the numerals 1-9 with the letters a-i.
    I'm pretty hopeless at even this very basic level of programming, but I presume that there's something in the Automator action 'Find and replace in Word' that specifically tells it not to look anywhere but the footnotes. I also presume it's possible to insert a command to tell it to operate on the footnotes (and headers and footers: everywhere!) too.
    Does anyone know a way to edit an Automator action? I'm willing to experiment and fiddle with one until I find a way that works, if nobody knows the exact changes that I'd need to make, but I just don't know how to edit an Automator action in the first place. A bit of googling suggests that I could do it in XCode, and that that is bundled with my Mac, but I don't have it.
    This all used to work when Office used to allow VBA (and I was using a horrible Windoze machine). Maybe someone would prefer just to find a way of creating a solution our of the old code, so here's one part of what I used (to change the number 1):
    For Each aStory In ActiveDocument.StoryRanges
    With aStory.Find
    .ClearFormatting
    With .Replacement
    .ClearFormatting
    End With
    .Execute FindText:="1", ReplaceWith:=ChrW(63281), _
    Format:=True, MatchCase:=True, Replace:=wdReplaceAll
    End With
    Next aStory
    Thanks in advance for any help.

    Thanks to all three contributors for their generous help so far. Mac people are lovely.
    BDAqua's suggestion wouldn't work, I think, because copying footnote text into another application and then back into Word would lose all the associations between footnote references in the body and the footnotes themselves. I wish I could do what Klaus1 says, but Word 2008 won't allow the creation of Macros any more. They've shut off support for their creation. Nice MS. red_menace's suggestion seems very plausible and I'll look into a way of mapping the old style numerals to specific keystrokes. That might do it.
    Reflecting on what you all said, I looked again through Word's help menus and eventually got pointed towards this page of 'help': <http://tinyurl.com/6398l6>. This is completely impenetrable for me, though it does compare a VBA script for Word 2004 to an AppleScript. This encourages me to hope that it should be possible to translate my original VBA script (part of which I included in my first message) into AppleScript, though I don't know how to do it because I don't really understand the language in the first place (the VBA script was put together by someone else).

  • It once worked but now a simple automator action won't :-(

    I am trying to highlight songs in tunes and then copy the file into a folder. I've just got an empty folder on my desktop titled "Music". The automator action consists of: Get Selected Items (with itunes icon), and Copy Finder Items (to the Music folder). After I hit the Run button it proceeds to copy what appears to be my whole itunes library folder to the Music folder. I used to do this all the time and it worked perfectly taking little time. Now, not so lucky.
    Here is a link a picture of how automator looks while I run it. http://web.me.com/caseyheyer/Site/Blank.html

    Sometimes putting another action in between (even if it doesn't do anything) can get things going. It looks like iTunes Songs are easier to convert than iTunes Items, so give this a try:
    1) Get Selected iTunes Items
    2) Set Options of iTunes Songs (leave everything unselected)
    3) Copy Finder Items {To: Music}

  • Converting JPEG files to DNG in Lightroom

    Is there any advantage to converting JPEG files to DNG when I import them into Lightroom? I am trying to maintain the quality of the file.
    Would it be better to save a JPEG file as a PSD file after I import it to use it in Photoshop and Lightroom?

    (Please pardon the change of subject:)
    Fred T. said, "If you are editing a JPEG in Photoshop going from Lightroom, let Lightroom create a TIFF. "
    I am wondering how to do this. I'm just an amateur and my non-SLR camera doesn't even save RAW images. ("Yup, need to take care of that one of these days.")
    My Preferences for "External Editors" (in my case Photoshop Elements 4.0) is set as: File Format: TIFF; Color Space: sRGB; Bit Depth: 16 Bits/component; Compression: ZIP.
    When I right-click on a file, and choose "Edit in Photoshop Elements 4.0.app", and pick Edit a Copy from the dialog box, the new file that is created and passed over to PE is a .JPG file not a .TIF file.
    I get the feeling that the functionality to create a TIFF, or a PSD, only works if my original image is RAW or DNG. But perhaps I am overlooking something???
    Life would be a lot easier if I could send the file to PE as a TIFF. At present, as a workaround, I tell LR to edit the original (so it doesn't create a copy), immediately Save-As in PE as a TIFF so I don't overwrite the original, and then when I'm done editing in PE, save the results (still TIFF). Once back in LR, I have to import the new file.
    Any Thoughts?

  • Automator Action "Import Audio Files" error message

    I use this automator action daily when it is activated via an alarm time in iCal. It is the 3rd workflow run in a series of 7 worlflows to create audio files while I'm at work (I record XM programming for use later on my iPod). Since I upgraded to OSX Lion yesterday, I'm getting a new error message I've never seen and I can't find any info on it. Can anyone help? The error message in a popup dialogue box is:
    The action “Import Audio Files” encountered an error.
    Check the actionʼs properties and try running the workflow again.
    Under the Log for the workflow I get this message:
    The operation couldn't be completed. (OSStatus error -1712.) (-1712)
    The imported audio file does actually get inputted into iTunes and converted properly via iTunes, but the error creates two problems. One is the source file isn't deleted after the action runs (which is a checkbox option in that particular action). This isn't a big deal, because I can create another workflow seperately to delete the file, so I'm not as concerned with that. The major problem is that the error dialoge box displays and the sebsequent workflows that are scheduled to run right after this one can't run becasue Automator is occupied with the error message.
    I'm looking for any advice I can find, I've been using this series of workflows for a long time without issue, but seems like everytime there is a new OS I have to go through the geriatrics of figuring out what slight changes apple made to the Automator actions.
    Thanks for reading,
    Chris

    Hi,
    I just solved the problem pretty easily: earlier, on Snow Leopard, automator had to be set to work in 32bit instead of 64bit otherwise there has been a lot of error messages. 
    I tried to do the same with iTunes on Lion and, oh miracle, it works:
    close iTunes then go to Applications -> right click on iTunes -> read informations -> check the box to run the app in 32bits and restart iTunes and .... that's it.
    I work in a local radio in Belgium and I rely on automator on an everyday basis to download then add prerecorded broadcasts to iTunes to be aired with Lion server and I was stuck since a few weeks because of that problem. Now I can finally work again :-)
    English is not my native language so please forgive me for my mistakes ... :-)
    Apple RULES (but you already know that )

  • Converting JPEG to BMP 1 bit depth

    Hi
    I need to convert JPEG to BMP 1 bit depth (monochromatic)
    I've used this code, but the result is always a 24 bit depth BMP...
    How can I do?
    JPEGDecodeParam param = JPEGCodec.getDefaultJPEGEncodeParam(1, JPEGDecodeParam.COLOR_ID_GRAY);
    JPEGImageDecoder jd = JPEGCodec.createJPEGDecoder(myByteArrayInputStream, param );
    BufferedImage bufferedImage = jd.decodeAsBufferedImage();
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    ImageIO.write(bufferedImage, "bmp", baos);
    Thanks

    An application that you already have that can do the job is Preview. Open the file in Preview and do a Save As, seleting PICT as the end format.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Photoshop action: Als JPEG auf dem Desktop speichern

    Hallo,
    ich möchte eine Action erstellen, die in Photoshop mit mit einem Klick alles zusammen als JPEG Datei auf den Desktop extrahiert. Das ist ja auch soweit nicht schwierig. Das Problem ist der Dateiname. Dieser wird in die Action mit inkludiert, sodass dieser sich nicht ändern kann. Sprich, wenn ich das erste mal ein PSD-Dokument mit dieser Action in JPEG auf dem Desktop speichere, geht alles gut. Die Datei heißt dann "Photoshop.jpeg". Wenn ich aber das ein zweites mal mache, wird die bereits vorhandene Datei wieder ersetzt, weil die Action ja immer etwas unter "Photoshop" abspeichert. Ich würde gerne, dass die Action einen dynamischen Dateinamen hat, wenn also "Photoshop.jpeg" schon existiert, soll "Photoshop-1.jpeg" oder so verwendet werden. Wie stelle ich das an?

    Ich bin mir nicht sicher, wie du das meinst.
    Also ich habe eine Action aufgenommen. Ich bin auf Datei>Speichern unter...> dann die ganzen Einstellungen und dann habe ich gespeichert und die Action fertig augezeichnet. Wie meinst du das etwas manuell einfügen? Und wie kann ich da dann den Namen ändern.
    Am 19.12.2014 um 16:49 schrieb Mylenium <[email protected]>:
    photoshop action: Als JPEG auf dem Desktop speichern
    created by Mylenium in Deutsche Foren - View the full discussion
    Natürlich kannst du manuell einen Menübefehl in die Aktion einfügen...
    Mylenium
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7030177#7030177 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7030177#7030177
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Deutsche Foren by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Is it possible for automator to convert all word documents in my dropbox folder to apple's "pages" on iCloud and keep the same folder organization?

    Is it possible for automator to convert all word documents in my dropbox folder to apple's "pages" on iCloud and keep the same folder organization?  I am a teacher and want to switch from using microsoft office on my macbook pro to using pages/number/keynote.  I am hoping to get an iPad next year and go "paperless" with lesson plans and gradebooks and I heard that pages/numbers/keynote are great on the ipad.  I'd like to write an automator script (workflow?) to convert all my documents in dropbox to pages and have them stored on iCloud, then be able to access the files on my macbook pro and ipad.  Thanks!

    Create an AppleID under different email addresses for each family member at http://appleid.apple.com
    If they don't already have their own email address just setup a free one with Gmail, Yahoo, Hotmail or whoever you prefer.
    Then on each device sign into iMessage with the users own AppleID in:
    Settings > Messages > Send &amp; Receive > Tap AppleID at top > Sign Out, then sign back in again with the correct AppleID.

  • Shutdown a remote iMac using Apple Remote Desktop and Automator action

    Hi,
    I have my iMac and my wife's iMac connected to the same UPS. There is only one USB connector for the UPS that notifies my iMac when its time to shutdown due to a power cut out.
    Is there a way for my iMac to then send a command to my wife's iMac (which may be asleep; the iMac not my wife!) and instruct it to shutdown (forcefully)?
    The Belkin UPS software enables me to launch an automator action before it shuts down my computer.
    Your help would be appreciated,
    Tony

    Unless you already have Apple Remote Desktop, it will almost certainly be cheaper to just buy a second UPS for your wife's iMac than it will be to purchase ARD.
    If you do have ARD 3 already, then it looks like it would be possible to create an Automator workflow that would select your wife's iMac and then send the Unix command "shutdown" (look at the man page for shutdown for the usage). I haven't tried doing this, though, so I can't say for sure, but it looks like it would work.

  • How to convert jpeg/imges to .avi file by applying Microsoft RLE Compression?

    I am doing windows based application for converting jpeg/bmp images into avi file by applying various compressions using C#.Net language. For that I have referred avifil32.dll.
    Here is the code:
    Avi.AVICOMPRESSOPTIONS opts = new Avi.AVICOMPRESSOPTIONS();
    opts.fccType = (uint)Avi.streamtypeVIDEO;
    opts.fccHandler = (UInt32)Avi.mmioFOURCC('M', 'R', 'L', 'E');//Microsoft RLE
    opts.dwKeyFrameEvery = 2;
    opts.dwQuality = 75; // 0 .. 100
    opts.dwFlags = 0; // AVICOMRPESSF_KEYFRAMES = 4
    opts.dwBytesPerSecond = 0;
    opts.lpFormat = new IntPtr(0);
    opts.cbFormat = 0;
    opts.lpParms = new IntPtr(0);
    opts.cbParms = 0;
    opts.dwInterleaveEvery = 0;
    //get the compressed stream
    this.compressOptions = opts;
    int result = Avi.AVIMakeCompressedStream(out compressedStream, aviStream, ref compressOptions, 0);
    if (result != 0)
    throw new Exception("Exception in AVIMakeCompressedStream: " + result.ToString());
    SetFormat(compressedStream, 0);//To set format before the first frame can be written,and not to changed later.
    In this code I have used Microsoft RLE Compression i.e. MRLE. But Its not working, Getting exception becuase value of result coming zero.Other compressions such as IYUV,MSVC,CVID are working properly. So why MRLE is not working. Any solution for this? I
    have stucked with this problem from some days. Need a help.
    Thanks in advance.

    Hi Yenka,
    MRLE is not support on this forum. This forum is to discuss CLR programming issue. I recommend you reopen thread on desktop development forum. Refer to
    http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?category=windowsdesktopdev.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to convert jpeg files into word

    How to convert jpeg files into Word

    Hi Eugene,
    I don't think you can convert an image to a Word document, but you could place the JPEG into a Word document using the Insert > Object command in Word.
    For other questions relating to Word, you will probably have more luck getting an answer if you post on the Microsoft forums (we can help if you're using Acrobat, or another Adobe product, but you'll find the Word experts on the Microsoft forums.)
    Best,
    Sara

  • Using Automator action/workflow to create a poster in iPhoto

    I'm using Jim Heid's Mac iLife 'lifeposter' idea [which comes from Mike Matas] and I keep getting a message taht says "the workflow was saved with an older version of 'get Selected items' some behavior may have changed. and also another ref. 'import files into iPhoto" -- I didn't find a more recent Automator action 'Create Thumbnail Poster" online nor updated information at Matas's blog or Heid's book...any suggestions for how to fix this? I last used it a few years ago and would like to use it again.

    Unless you got a message about it, the original Create Thumbnail Poster may work with the version of iPhoto that you have. As for the other actions, they sound like standard actions that have just been updated - you can open the older application and recompile it using the newer actions.

  • How can I add a picture to the Automator Action "Watermark PDF Documents.action"

    Looks like a bug: under 10.7.2 i cannot add a picture to the Automator Action "Watermark PDF Documents.action".
    Works perfectly under 10.6.8.

    Its a verified bug (Automator - Watermark PDF Documents).
    Please report to http://www.apple.com/feedback/macosx.html
    As a workaround, if you saved the Action in SL, option-click the action, navigate to the file "document.wflow", open in TextEdit, search for the key "fileNames" and replace your old image with the new

Maybe you are looking for

  • SharePoint read/write list item to another DB/file

    Hi All, I am working on MOSS 2007. I have the following requirement. There are around 50 document librararies on a site collection. I need to store all the items from these libraries in a locally (it could be DB/CSV or excel or access) and read/write

  • Call of duty 1.5 patch on intel working for anyone?

    If anyone has seen my past posts you would know i have been having some problems with my 24" intel iMac and call f duty and call of duty United Offensive. Well to save you all the past posts..i have finally gotten the disks installed on my computer a

  • Edit in Photoshop CC in Lightroom 4 opens Photoshop CC on my backup drive (OS X 10.8)

    Hello, I am having an issue with Lightroom 4 that only began after I installed Photoshop CC.  Every night I clone my iMac to a bootable backup drive.  With Photoshop CS6 I had no problems with this.  Now, whenever I choose "Edit in Photoshop CC" from

  • ISE 1.1.1 login not working after install on VMWare on ESX 5.0

                       I did an ISE 1.1.1 installation on a VMWare with ESX 5.0. After installation I am not able to login with my credentials(username admin, password XXXX) I can ping my ISE server after initial installation but  I can not ping my ISE s

  • Help with Solaris.....any help would be nice

    I have to write a paper comparing and contrasting Solaris with DOS/MSDOS.....you wouldnt think this would be hard but it is......is ththere a place where I can find a head to head comparsion? If not perhaps some of you familiar with Solaris could giv