Workflow to convert JPGs to 16:9 format

Hi,
Does anybody can suggest a workflow to modify pictures from their original format (5184 x 3456 px) to a 16:9 format without duplicating the pic? I tried to create a virtual copy, but ID still takes the original even if the virtual copy has been set to 16:9. Is there another way instead > open image in PS > resize > save under new name? Thanx for your help!
Yves

yvesmar wrote:
 The perfectest way would be to create virtual copies of each picture, to crop them and import the whole stuff in InDesign.
Unfortunately this won't work. As you know TIF uses a lot of memory space and my intention is to use the cropped pictures not only in InDesign but also for slideshows.
My .02:
- As mentioned, use jpeg instead of tif to save space, and if they are going to be cropped, e.g. to 1920x1080 for display size... they will take up relatively little space.
- Make those virtual copies just like you said:
  1. grid mode
  2. select all you want selected
  3. ctrl(cmd?)-comma to create virtuals.
  4. select just the virtuals.
  5. give them a better copy name.
  6. crop as desired.
  7. export using tree-sync.
You'll now have a tree of cropped jpegs to use for ID or slideshows.
If you edit one, just filter by copy name and resync the tree.
PS - If you dont care that they're in a tree, use publish service instead of tree-sync. And, if you dont care whether photos buried in stacks get exported too, but you still want a tree, you could use tree-publisher.
Personally, I keep more than one tree of exported jpegs up to date for a variety of different use purposes, using export-manager for one click update after editing (true exports only - wont work with publish services).
Rob

Similar Messages

  • Help! - convert jpg to flash(.swf) format

    Hi,
    I want to convert a jpg image file to the flash (.swf) format. very urgent.
    If any of you guys know how to do it in java plzzz help me
    thanks and with regards
    Anuradha

    wish I could help but I am Mac and Essentials is not in my work flow!

  • Can You Convert Pages Templates to Graphic Format, i.e. jpg, tiff, bmp?

    I created a flyer from the templates and would like to convert it to a jpg or other graphic format so I can add it to my photo library, add to a slideshow and publish on MobileMe. Is this possible?
    MacBook Pro / Leopard / IWork 08

    Hi Ronda,
    Welcome to the discussions. You can do the conversion using a combination of Pages and a system application on your computer called Preview.app. Easy to do.
    You're going to Print to PDF and then Save As from Preview to the graphic format of your choice.
    Select File > Print in Pages.
    In the lower left corner click on PDF and select Save As PDF in the menu that appears. Saving to the Desktop is convenient at this point.
    Right click on the document and select Open With... Preview.
    From Preview, select File > Save As and choose your graphic format from the Format menu at the bottom of the Expanded Save As menu.
    This should do it for you. It's not as complicated as it sounds and you will begin to enjoy using the many features of Preview.
    Regards,
    Jerry

  • Automator Workflow to export Numbers documents in PDF format

    Does anyone know of any automator workflow to export Numbers documents in PDF format? I tried this program: Convert to PDF 1.2
    http://www.apple.com/downloads/macosx/automator/converttopdf_mauriziominelli.htm l
    But it gives an error.

    Reading carefully is often useful.
    The description of the tool which you tried clearly states :
    *About Convert to PDF*
    *_Convert all of your text files to PDF_. This action uses the underlying cups printing system ability to convert files, it’s a simple front end to the command line tool cupsfilter.*
    As far as I know, but maybe you don't, *_a Numbers document isn't a text file._*
    I already posted a script exporting Numbers documents as PDF.
    Here is an enhanced version which apply only to Numbers '09 (or maybe higher) :
    --[SCRIPT save2Numbers&PDF.app]
    Enregistrer le script en tant que Script : save2Numbers&PDF.scpt
    déplacer le fichier créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    aller au menu Scripts , choisir Numbers puis choisir save2Numbers&PDF
    Le script enregistre le document au format natif de Numbers
    et l'enregistre dans un fichier PDF.
    S'il existe déjà un PDF homonyme, il est renommé en lui ajoutant une chaîne
    construite sur sa date de modification.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    +++++++
    Save the script
    as a Script: save2Numbers&PDF.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    go to the Scripts Menu, choose Numbers, then choose save2Numbers&PDF
    The script saves the document in the native Numbers format and saves it in a .pdf file
    If such a .pdf already exists, it is renamed with a stamp matching its modification date.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox
    --=====
    Yvan KOENIG (VALLAURIS, France)
    modifié 2010/08/17
    property closeIt : true
    (* true = closes the saved document
    false = doesn't close it *)
    property theApp : "Numbers"
    property theExt : "numbers"
    --=====
    on run
    tell application theApp
    activate
    set le_document to front document
    if modified of le_document then save le_document
    delay 0.2
    set thePath to path of document 1
    end tell -- theapp
    set {xPath, xExt} to my saveAs(thePath)
    if closeIt then tell application theApp to close document 1 saving no
    end run
    --=====
    on saveAs(p)
    local extension_export, type_export, nomde_loriginal, dossierde_loriginal, nomde_lexport, cheminde_lexport
    set {extension_export, type_export} to {"pdf", "LSDocumentTypePDF"}
    set {nomde_loriginal, dossierde_loriginal} to my quelNomEtDossier(p)
    if nomde_loriginal ends with theExt then
    • replace the original extension by the xExt one *)
    set nomde_lexport to (text 1 thru -(1 + (length of theExt)) of nomde_loriginal) & extension_export
    else
    • add the xExt extension name *)
    set nomde_lexport to nomde_loriginal & "." & extension_export
    end if
    set cheminde_lexport to dossierde_loriginal & nomde_lexport
    • CAUTION, When saving, Numbers doesn't take care of an existing document.
    It replaces it by the new one. *)
    tell application "System Events"
    if exists (file cheminde_lexport) then
    Playing safety, we rename the existing file by inserting a modificationdatetime stamp *)
    set name of file cheminde_lexport to (text 1 thru -(2 + (length of extension_export)) of nomde_lexport) & my horoDateur(modification date of file cheminde_lexport) & "." & extension_export
    end if
    end tell -- System Events
    • save as type_export document *)
    tell application "Numbers" to save document nomde_loriginal as type_export in cheminde_lexport
    return {cheminde_lexport, extension_export}
    end saveAs
    -- =====
    on quelNomEtDossier(f)
    local nom, dossier
    tell application "System Events" to tell file (f as Unicode text)
    set nom to name (* Unicode text *)
    set dossier to path of container (* Unicode HFS path *)
    end tell -- to System Events
    return {nom, dossier}
    end quelNomEtDossier
    --=====
    • Build a stamp from the modification date_time
    on horoDateur(datedemodification)
    local les_secondes
    set les_secondes to time of datedemodification
    return ("_" & year of datedemodification & text -2 thru -1 of ("0" & (month of datedemodification as integer)) & text -2 thru -1 of ("0" & day of datedemodification) & "_" & text -2 thru -1 of ("0" & les_secondes div 3600) & text -2 thru -1 of ("0" & (les_secondes mod 3600) div 60) & text -2 thru -1 of ("0" & les_secondes mod 60))
    (* Here, the stamp is "YYYYMMDDhhmmss" *)
    end horoDateur
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) mardi 17 août 2010 18:16:27

  • Convert PDF Page to Image format

    Is there any way to convert PDF page to Image formats (like JPG, GIF...)?
    I am looking in iTextSharp. If there are other options also, please let me know.

    There is a sample included with the Acrobat SDK that shows how to perform conversions of PDFs to other formats. There are also other options available to plug-ins such as PDPageDrawContentsToMemory() and then using an image library of your choice to save the bitmap data into various image formats.
    > I am looking in iTextSharp
    This is the Acrobat SDK forum - for questions regarding coding using the Acrobat SDK. Have you considered asking this in an iTextSharp forum if you are limiting yourself to that product?

  • Convert JPG to BMP using XI

    Hi
    I would like to transfer the Image file from one Legacy System to SAP R/3 server which then ABAPers can utilize using TCode: <b>SE78</b>.
    But here are the constraints -->
    *) The Legacy System is providing the Image file in JPEG format <u>Only</u>.
    *) SAP R/3 TCode : SE78, can <u>only</u> take the files in BMP format.
    *) Even if you simply change the extension of JPEG file to BMP, then SAP R/3 is <u>not accepting</u> that file which suggest it needs typical BMP file only.
    I referred this thread also
    Error while uploading *.BMP file using SE78
    In this thread user actually resolves his problem after using a tool which explicitly converted a JPG to BMP but they are not using XI.
    Now is their any way with which JPG can be converted to BMP. I found couple of tools but they require the file first ( using browse option ) & then they will convert it, mean you can't call them using XI & provide that file as an argument.
    I just need to know what you all think, is it possible to convert the JPG to BMP using XI or not. Also are you aware of any Java/.NET which can actually take the Image file ( JPG format ) & convert it & provide it back.
    Regards
    - Lalit -

    Hi Lalit,
      I've made a quick search and in my opinion the better thing you can do, is to create a Java routine to convert JPG to BMP.
    you can use JAI (Java Advanced imaging) to read input stream (JPG format), and convert into a BMP format.
    <a href="http://java.sun.com/products/java-media/jai/forDevelopers/jai1_0_1guide.pdf">This PDF</a> contains the JAI documentation and some examples.
    I hope it will help.
    Best regards
    Manuel

  • Is there a trick to converting JPG from RGB to CMYK without the lossy re-compression?

    So I've got around 750 images in multiple categories and folders. Each image has 6 variants - 16 bit TIFF from over-eager beaver photographer, 16 bit TIFF, extracted backgrounds (done by student workers, who do not use English as we are not in the US), then, standardized 3000x2000 (or other suitable aspect ratio) PNG with corrected edges for web and light print, an 1800x1200 JPG for web and a few smaller PNG standards also for web.
    The 16 bit TIFFs with Extracted BG are the root files, and a series of actions builds the PNG's. The standardized PNG's are then pumped through actions and Image Processor to create output files.
    So I just discovered that a seemingly random number of these are in CMYK. That hasn't been a problem up until now because our website and our printed materials have no problem with CMYK and RGB files.
    But now we are starting to hand out these images to our customers - who are only interested in the 1800x1200 JPG and maybe 900x600 PNG files, which are most easily pulled directly from our website rather than sending them the entire 180gb graphics directory.
    And some of them are telling us that the pictures are being rejected. Most notably, Ebay does not allow CMYK files.
    So damage control- rebuild our entire library of images from the 16 bit TIFFs
    OR
    rebuild only a couple of different sizes and upload from there, replacing the pictures on the next major update (over the next year).
    I am *NOT* concerned about preserving color since 99% of our products are black and shades of grey, with only a hint of color.
    I am concerned about the degradation of changing mode on 60-70% compressed images, then resaving again with the lossy JPG compression.
    I'm about to start ripping into things with my actions and replacing around 1500 files online, so I'd like to be sure that I'm doing things in the most sensible way.
    If there's a tool that can do this conversion without another pass of compression, that would be ideal.

    My understanding of the JPG is only middling. I thought I understood that it uses anchor pixels and either a translation table of some sort or difference mapping, using 8 bits per piece of information.
    If that were the case, surely changing the translation from CMYK to RGB would be fairly simple.
    In this case, the usage is Ebay and they only accept JPG, PNG (and maybe BMP and GIF, I didn't look that closely), but require RGB. I was actually quite surprised to find that JPG allows CMYK since, as you say, anyone dealing with CMYK is going to be dealing with commercial printing and few people who deal with commercial printing would play around with JPG.
    I always stick to TIFF or PSD for workflow, but JPG is popular for a reason - when it comes to web, JPG is the only format that can deliver manageable file sizes with full-screen or "large" images for web. Our top level banner photo is 2590x692 and needs to be under 400kb for sane download speeds. PNG couldn't touch that. Even with the aforementioned 1800x1200, PNG is nearly 2mb, while I can maintain very decent quality with a 500kb file with JPG that works well for 'zoom in' type usage.
    So there's no way around JPG. It's just annoying that the first person to touch a random selection of the pics was primarily an Illustrator user and saved *some* of the pics in CMYK mode.
    It's like that old story about the farmer who didn't want anyone to steal his watermelons, so he cleverly posted a sign "None of these watermelons are poisoned", only to find a note the next day saying "Now, One of these watermelons is...".
    Far more work to fix 'some' of the images compared to just doing it right the first time.
    But then again, for workers like that, if you can't trust them with an easy job, you could hardly trust them with more complicated jobs...

  • Convert jpg to bmp

    Hi
    I am new to the java programming.
    and I have to convert jpg images to bmp images.
    can you please give me suggestions what can be done.
    thanks.

    i hav tried using ImageIO.. but it is not converting the image efficiently. Define 'efficiently'.
    i think there is some difference of 2 pixels..Of course there's a difference. JPG is a compressed format and BMP is not.

  • Recommended Workflow for Converting from .avi to .m4v

    I would like to take an edited .avi file and prepare it for playing on both iPods and in QuickTime/iTunes. I downloaded the trial version of PE7 to see if I could use it for this. From what I understand and have tried out, I can create an h.264 (MPEG-4, part 10) .mp4 file using PE7. What is the best way to convert this to the .m4v format? My OS is Windows Vista Ultimate. I tried using iTunes to convert it, but the resulting file did not play smoothly. I also tried downloading MPEG Streamclip and found I could not play the .mp4 file smoothly.
    Am I sacrificing quality by starting with a tool that cannot export to .m4v, namely PE7?

    Thank you so much. I appreciate your time very much. That link is quite interesting and will help me understand what I'm dealing with better.
    I'm doing this for a podcast, so I need to have one file that will work for everyone who has iTunes or an iPod to include in the rss feed as an enclosure. I don't want to maintain two feeds.
    So I think I'm going to try QuickTime Pro and hope that solves my woes.
    I'm wondering now if I should still buy PE7 for editing. I like the product and have spent some time with it now. Of course, I wish I could do everything just in PE7 but don't think that's possible at this point.
    So I still have a question about the workflow if anyone can help. Just to clarify, if I import .avi files into PE7 and do some editing, then can I just export to .avi and then open the new .avi file in QuickTime? Is that the workflow I would use? I'm assuming that QuickTime Pro can de-interlace the video, change the pixel aspect ratio, and allow me to make other adjustments to reduce the file size. I would export from QuickTime as .mp4 and hope that .mp4 files that QuickTime renders will work in the latest version of the QuickTime player. Otherwise, I'll have to export to .m4v, which I don't think can be used by other players???
    Anyway, I think I'm on the road to a solution. Hopefully, QuickTime Pro won't have similar issues.
    Thanks again for your time and advice.

  • Can photoshop convert .jpg to camera raw file?

    Can photoshop convert .jpg to camera raw file?

    And even if you could, it wouldn't be worth it.  Raw files are 12-bit (or more) with much higher dymanic range than jpegs.  The result is that (in the original raw file) you have flexibility to change white balance, change tone curve, recover detail from highlights and shadows in ways you can't with 8-bit (usually lossy-compressed) data in jpegs.  But having thrown that extra information away to create a jpeg, you can't get it back.  It would technically be possible to convert that jpeg data into raw format, but you would gain nothing by doing so and end up with a file much larger than the jpeg.  In fact if this theoretical conversion went the whole way to re-create a Bayer sensor array of data, you'd be throwing away resolution. 

  • How to convert jpg to wbmp?

    Please!!!
    I need someone to teach(or tell) me how to convert jpg to wbmp!
    Any help will be great!
    I tried to find on web, but nothing...
    Thanks!
    Thales

    I've never used wbmp format before, but here is a demo that I got to work:
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class WBMPTest {
        public static void main(String[] args) throws IOException {
            URL url = new URL("http://today.java.net/jag/Image24-large.jpeg");
            BufferedImage source = ImageIO.read(url);
            BufferedImage bandw = convert(source, BufferedImage.TYPE_BYTE_BINARY);
            File file = new File("temp.wbmp");
            writeWBMP(bandw, file);
            //writeWBMP(source, file);//Only integral single-band bilevel image is supported
            BufferedImage fromFile = ImageIO.read(file);
            if (fromFile == null){
                System.err.println("read fails");
                System.exit(-1);
            JPanel cp = new JPanel(new GridLayout(0,1));
            addToPanel(cp, source, "original");
            addToPanel(cp, bandw, "black and white");
            addToPanel(cp, fromFile, "temp.wbmp");
            JFrame f = new JFrame("WBMPTest");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JScrollPane(cp));
            f.setSize(850, 600);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
        public static BufferedImage convert(BufferedImage source, int type) {
            int w = source.getWidth(), h = source.getHeight();
            BufferedImage image = new BufferedImage(w, h, type);
            Graphics2D g = image.createGraphics();
            g.drawRenderedImage(source, null);
            g.dispose();
            return image;
        static void writeWBMP(BufferedImage image, File file) throws IOException {
            Iterator writers = ImageIO.getImageWritersBySuffix("wbmp");
            if (!writers.hasNext()) {
                System.err.println("no wbmp writers");
                System.exit(-1);
            ImageWriter writer = (ImageWriter) writers.next();
            writer.setOutput(ImageIO.createImageOutputStream(file));
            writer.write(image);
        static void addToPanel(JPanel cp, BufferedImage image, String title) {
            JLabel label = new JLabel(new ImageIcon(image));
            JPanel labelPanel = new JPanel(new GridLayout(1,1));
            labelPanel.setBorder(BorderFactory.createTitledBorder(title));
            labelPanel.add(label);
            cp.add(labelPanel);
    }The image sample format that succeeds is black-and-white (not greyscale -- each pixel is
    either black or white, not a shade of grey). When I write to switch the image that was written
    out to the colored version, I got the the commented error:
    Only integral single-band bilevel image is supported
    I don't know what color models WBMP supports, but that's not much to sing about!
    You should find out if this limitation is in the wbmp image writer or in the wbmp format itself.

  • Convert the spool to xls format and email through attachment to the user

    Hi all,
    When I execute a report in background, I get spool. I need to convert the spool to xls format and email through attachment to the user.The xls file should not be saved on local system.
    If I use the Spool Recepient tab in SM37 it mails the spool list as .txt file to the mail receipient. But I need to send it as an .xls file.
    Can any one help me on this

    Did you get the solution? i have the same problem.

  • How can i convert oracle report in excel format using 8i

    hi,
    I want to convert oracle report in excel format using 6i reports. please give the solution with emp table.
    millons of thanks in advance.

    You'll have to use the destype DELIMITEDDATA to render your Report in CSV format. Then set the mime type to Excel. I don't know the exact syntax, so please do a search in metalink for "reports excel" for examples and more info.
    Regards,
    Martin Malmstrom

  • Converting an MP3 to WAV -- How can I convert an MP3 to wav format, 16 bit

    How can I convert an MP3 to wav format, 16 bit, 44,1 khz? I like the program Switch which I know can convert MP3s, but how to I set it up for the specific settings that I need?

    Just import into a logic session. Then bounce at the specs you require. Logic or Waveburner, iTunes and even Quicktime I think can each do this easily.
    A question though. I am assuming you are converting an MP3 to 44.1/16 bit just so you can play the file in a consumer quality CD player?? IF so - that makes sense.
    But if you are doing this because you think it will improve the sound quality of your MP3, I will save you some time here. It won't improve the sound quality at all. It will just turn the MP3 into a larger audio file.
    44.1/16 bit resolution enables you to have a much better sounding file than MP3 formats, but not by going at it this way.
    No offense to you if you know all of this already. I am assuming that you may not know this - because if you did you would also likely know how to convert an audio file.
    Cheers
    Darrell

  • How do I create a photo in jpg or other photo format from a frame within iMovie11.  The suggestion I have found from earlier versions of iMovie does not create a jpg file that can be revealed in Finder. Help please.

    How do I create a photo in jpg or other photo format from a frame in iMovie. The previous suggestions on here do not create a jpg file when you chose reveal in finder when using iMovie11 and OS X

    First, get an app called MPEG Streamclip, which is free. (google MPEG Streamclip from Squared 5)
    Open MPEG Streamclip.
    In iMovie, select the clip you need. Then, right-click/Reveal in Finder.
    Drag this clip into MPEG Streamclip
    In MPEG Streamclip, move the playhead to the frame you want.
    In MPEG Streamclip, click FILE/EXPORT FRAME.
    Choose JPEG, TIFF, or PNG and give it a name.
    You can then drag this photo into iPhoto.
    Here is a video I made that steps through this...
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

Maybe you are looking for

  • How to get each node in tree?

    how to get each node in tree? Message was edited by: NikisinProblem

  • Laserjet pro mfp m177

    Je viens d'acheter une  HP Color LaserJet Pro MFP M177fw, l'ensemble de l'imprimante fonctionne très bien, je peux même imprimer directement de mon iPad ou iPhone sans passer par ePrint, mais je ne peux pas modifier le document ou la photo de cette m

  • IPad doesn't recognize PayPal

    I bought apps from the Apps Store on my iPad2 for 2 or 3 days and then it suddenly began refusing to download even free apps.  The error message states that my iPad2 doesn't recognize PayPal.  I tried setting up a credit card as my iTunes payment opt

  • I did it, I bought an I book! some questions.

    I made the switch in March with a mini and haven't looked back. I just ordered a 14" iBook with a 1.42 gigahertz proccessor, 60 gig, superdrive, so on and so forth. I will be using this machine as my sole computer and want to use my 17" flat panel do

  • Line Chart

    Hi There, I relatively new to Flex. Can anyone please help me out in this Flex problem. Here is the problem. I have 2 graphs which needs to be plotted on one Flex line chart layout. I have date as x-Axis for these graphs. both the graph starts with d