Export jpg to web with bridge cc

I was using this function with Bridge CS5 and worked perfectly for what I need. Then I signup and paid for entire year for Bridge CC and this function is no longer in Bridge CC even after following the update recommendations.
Where do I go from here without investing in more time and money to learn something else?

Monica,
Can you post cropped version of your file so we can check your settings?

Similar Messages

  • How do I export jpgs as tifs with the original resolution ?

    Hi,
    I am very new to Lightroom 5 (I only installed it today (on Windows 8.1) :-)) but I have read Victoria Bampton's Quick Start Guide and have read a number of forum posts over the last few weeks to get an idea about how the program generally works.
    I am embarking on a project to scan and archive my family's photos and videos, and I will be using Lightroom to manage the collection.  To start the project, I have just imported over 10,000 digital photos taken by a variety of cameras (36 of them, according to Lightroom !)  over the last 12 years or so into a new Lightroom catalogue.   These are all currently JPEG files, but I want to keep TIFF files in the collection because my research has led me to the conclusion that TIFF is a better long-term archival format.
    I started by doing an Export of a small number of photos to save the .jpg files as .tif files, but when reviewing the results, I noticed that the image's resolution was changed during the export.  For example, one original jpg is only 96ppi but the exported tif is 240ppi.  Another jpg is 180ppi and the tif is 240ppi.  At least, that's what the metadata seems to be telling me (via the Details tab of the Properties dialog in Windows), so I assume it's true...
    I understand that the 240ppi that I am seeing in the .tif file metadata was specified in the Image Sizing section of the Export dialog, so that's not the issue.  
    I would prefer it if the .tif file has the exact same resolution (ppi) as the original .jpg, but I am unable to work out how to do it.   It would be great if the resolution setting in the Export dialog was controlled by the Resize to Fit checkbox, like the other settings in the section, but it doesn't appear to be (it's enabled even if the Resize to Fit checkbox is unticked).
    I then thought about using the Library Filters to filter by the Horizontal Resolution metadata, so that I could select all the photos with the same resolution and export just those with the Resolution setting in the Export dialog set to the right number, and then repeat that process for each different group of original photos with a different resolution.  Unfortunately, I have not been able to work out how to filter by the horizontal resolution metadata field - it doesn't seem to be available in the dropdown list of fields shown when I click on the up-down arrow next to the "Date" or "Camera" (etc.) columns in the Library Filter pane.
    Finally, here's my question (or three):  
    Is there a way to export .jpgs to .tif files while keeping the original resolution ?  
    Alternatively, is there a way to select groups of photos by their horizontal or vertical resolution (so just those photos could be exported in a group with the right resolution specified) ?
    Or is there any other way to do what I want (convert jpg to tif with the same resolution and keeping all the metadata) ?
    Thanks for reading all the way through to the end.
    John.

    These are all currently JPEG files, but I want to keep TIFF files in the collection because my research has led me to the conclusion that TIFF is a better long-term archival format.
    I'm not sure why you say this. In terms of long-term archival format, I think the two are equal, I am not aware of other reasons to do this, and thus in my opinion, the task of globally turning all your JPGs into TIFFs seems unnecessary. You don't gain anything by doing this. But you sure will spend a lot of time and take up a lot of disk space doing this.
    I would prefer it if the .tif file has the exact same resolution (ppi) as the original .jpg, but I am unable to work out how to do it.
    Again, I think you have embarked upon an unnecessary task. The ppi in the file is essentially meaningless. A photo that has (for example) 3000x2000 pixels saved at 240 ppi is the exact same photo as the same photo 3000x2000 saved at 180ppi, not a single pixel has changed. You are placing a meaning and importance to this ppi number that just doesn't exist.
    To answer your questions at the bottom, I would advise you to not do the things you are talking about, it seems to me that you have greatly misunderstood things.

  • Lightroom 3 exporting issue: exported JPGs come out with much more noise than original edited files

    Hi all,
    My first post here so nice to meet everyone. I've been having some issues with exporting in Lightroom recently. It appeared to happen quite out of the blue. Sometimes when I export my edited .cr2 files as jpgs (in srgb), at a good quality (no less than 85), some of resulting jpgs seem to have exposure higher and/or a horribly large increase in the amount of visable noise. It seems many of the photos which this occurs in have pretty high settings for fill light, but even still, the noise is not visable in lightroom while editing the metadata linked .cr2.
    I thought it might be the problem that I'm viewing the final exported jpgs in preview, but I also tried adding them back into the catalog and they look just as off. I just upgraded to 3.3, but it seems to be having the same issue. If anyone can please help, it would be greatly appreciated!
    Thanks

    No sharpening at all during my export, Ian. Sometimes I sharpen for screen at a standard strength, but I turned it off when I started seeing the extra artifacts but the results of the exports remains basically the same with or without sharpening.
    However when I import it seems my photos already have some sharpening on them in the develop module. The settings there are sharpening = 25, radius = 1, Detail = 25, masking = 0. I honestly rarely mess with the sharpening, so I guess I skipped over those settings during the countless hours I have worked with LR! But I assume those are normal post import numbers, correct? I never apply development settings during import, that's why I say that. Thanks for keeping up the conversation and brainstorming Ian! Anyone else also free to chime in.

  • URGENT- Exporting jpg from LR with title and captions: how?

    Hi,
    I need to email some pix before midnight.
    In LR metadata section I have info (title and caption). I did export pix as JPGs but can't find the info when I open the pictures now in a folder on my desktop.
    How can I make sure the info is attached to the photo? Should I uncheck "Minimize metadata"?
    Thanks for your help.
    jm47

    Thanks Hal. So there is no way to minimize the metadatea but keep the
    Title/Caption info?
    jm
    Le 1/03/10 21:05, « Hal P Anderson » <[email protected]> a écrit :
    Unchecking minimize metadata will do what you want.
    Hal
    >

  • How to export the Apex web page to PDF with click of a button?

    How to export the Apex web page to PDF with click of a button?
    Am looking at exporting the Form view on APEX to be exported to PDF.

    In order to get a PDF, you need to generate a Report....in PDF format.
    If you are using the APEX Listener, you can initiate the download of the PDF by calling APEX_UTILS.download_print_document()  (I normally place this in a Process)
    BUT -- You have to create the Report (under Shared Components) and a Template (also under Shared Components).
    The white paper in my first post gives you the HOWTO "[Create] Custom PDF Reports with Oracle Application Express and the APEX Listener".
    Start by creating a Report (in Shared Components, bottom right) that uses a simple SQL statement like:
    Select * from emp where empno = :P15_EMPNO
    You may need to hard code the parameter before you hit "Download XML" button.
    The XML that you get from clicking "Download XML" satisfies the "Step 1 - Create an XML Data Source" found on Page 11 of the document.
    The rest of the instructions is in that whitepaper.
    MK

  • Exporting JPGs with their Original Filename

    So, I have these sets of cropping documents with images laid out in them taking up the entire frame, no text or anything else. At the end of the day, I need to export the crops with the original JPGs' naming convention. Right now, I am going through, exporting and then renaming. Sometimes I get sequential images with the same prefix in the same document which is super easy. However, other times there are images with different prefixes, a couple image numbers missing, or even the sequence being out of order. I was wondering if there was a way(maybe a script) out there that would allow me to export JPGs of each page while using the placed JPG's filename. So if page 1 had a JPG named image_1 and page 2 had a JPG named image_4, when I export them, I'd end up with two files, image_1 and image_4.
    It might sound silly, but it would be super helpful when exporting documents with 30+ images, sometimes laid out in the incorrect order or with different prefixes. Any one have any ideas? Or even if it would be possible?

    InDesign Page Exporter Utility Script | RR Donnelley
    Maybe this script?

  • Doubt concerning licence  - generating web galleries with Bridge CS4

    Hi, I would like to know if I could generate web galleries with Bridge CS4 and place them in web pages which I intend to sell? There is a possibility to generate web galleries in Bridge CS4. Can I place any of them to a web page which I want to sell?

    Why do you even doubt it?
    If you use a brush and a bucket of paint to create a for-sale sign and sell that sign to your neighbor to stick in his lawn, would you be asking the manufacturers of the paint and of the brush if you can sell it your sign commercially?
    Come on, get real.
    As long as you are not giving away copies of the software or pieces of its code, Bridge and Photoshop are just tools.

  • Open JPG files with Bridge RAW by double clicking?

    I am using CS4 Bridge 3.0.0.0.464
    When I double click on a JPG file it opens in Photoshop.
    I prefer to edit my JPG files with Bridge camera RAW.
    At present, I have to right-click and choose 'open in camera RAW'.
    Is there a workaround for this?

    You're all over the map with that description, perhaps assuming some things are coupled that are not, normally (Camera Raw, Smart Object, Crop).
    Start with the basics:  There is a Camera Raw preference that determines whether JPEGs and TIFFs will be opened by default through Camera Raw by default.  It's important to note that once you have opened a file with Camera Raw, metadata is stored so that it will open that same way every time, so these settings apply to JPEG or TIFF images that haven't been opened before.
    In Photoshop, click Edit - Preferences - Camera Raw...
    Note the settings below:
    -Noel

  • Export jpg with sequence with LightRoom 4.2

    Exporting jpgs is fine to watch them on TV or wherever. The problem is the incorrect order in the resulting filenames. They go like
    pic-1
    pic-10
    pic-11
    pic-2
    pic-3
    MUCH BETTER would be:
    pic-001
    pic-002
    pic-010
    pic-011
    just like Photoshop Elements does it.
    Any way to get that?
    thnks
    Ralph

    Absolutely. In your Export options, you have file renaming options. These include numbering to as many padded zeroes as you want:
    In order to include a particular naming item within the filename pattern, you would click Insert next to that after selecting which variant you want from the menu shown in the screenshot. This adds a corresponding new field into the template, which you can then manually edit further with removing prior items, typing in dividing spaces or dashes, fixed text etc.
    If you select "sequence" numbering, for example - this should reflect any custom order you have put your images into. The first one seen in LR then becomes (e.g.) "img-001.jpg", the next "img-002.jpg" and so on. If you wanted to retain your original filename in there for reference, but still lead with this custom ordered sequence, you could assemble something like "001-[IMG_2345].jpg", "002-[IMG_2127].jpg", etc.

  • Export to excel in web with oracle forms 10g

    we have an application running on web with oracle 10g forms in windows server 2003. We use webutil to generate excel. But it is terribly slow when its is run on web. When run locally its fine...
    PLS suggest.....
    Thanks,
    Rekha

    CLIENt_OLE transfers lots of small packets over the network,that's what it makes slow. What you could do.... write your own javabean which uses jacob and "aggregates" the low-level OLE-commands to somehow logical commands like "writeValuetoCell"

  • Illustrator CS6 - Export jpg without adding artboard to name

    Is there a way in Illustrator CS6 to export as jpg with Use Artboard check to not have illustrator add the name of the artboard to your file name?
    Example -
    File name "redboat.ai"
    Export jpg "redboat.jpg" with Use Artboard option selected
    File name becomes "redboat-01.jpg"
    This is not a huge problem when I only have 1 or two files but when I have to rename 100+ file names it can be a pain.
    I do understand that I can batch rename in Bridge but it would be nice if I could have these files saved without the artboard name on them.
    Any help appreciated.

    Export to .jog with use artbaords, needs to add to the name, so shen you export imaegs with multiple artbaords you do not have reapeated names.
    You can do a save for web, and turn on clip to artboard and you will get the filename you need. Record an action to save the file to your desktop, and you will save even more time running this as a batch command on a folder of images.

  • InDesgin CS6:  What is best practice for creating a jpg for web use?

    My graphic design experience is heavy toward print, but I’ve been charged to solve this web-graphics problem for my team. I’ve done searches online and can’t find resources specific to this issue. Thank you in advance for any assistance you can provide.
    Here’s the issue:
    My team uses both InDesign and Photoshop CS6, to make landing pages and other stuff for our website. After saving to jpg files, the InDesign files always have jaggy text compared to Photoshop’s jpg. What are we doing wrong?  Can’t InDesign be used for web?  I’ve also tried saving it out as PNG with no better results.
    Note: The background in the InDesign files are created in Photoshop (these look fine in both programs)—but the text created in InDesign looks jaggy while Photoshop’s text looks clean.
    Here’s how we save it in Photoshop
    File > Save for Web with these settings: JPG, High, Optimized, Quality 70, Blur 0, Matte None, Quality Bicubic.
    Here’s how I solved the problem (which seems too labor intensive to actually be correct) Is there a better way?
    I convert text to outlines.
    I change the “intent” to web intent
    Manually reset the page size.   Whenever I change the intent in anyway, InDesign automatically changes the page size to 8.5”x11” or 800x600 pix regardless of the original page-size. I expect it to change proportionately from inches to pixels, or vise-versa, but it just won’t do it. Is there a preference for this somewhere?
    Export as JPG with these setting:  Quality Maximum, Format method progressive, Resolution 72 ppi, Color Space RGB, Options: Embed Color Profile: sRGB IEC6196-2.1, anti-alias.
    Our web people tell us that if we use a higher resolution the image comes in proportionately too large, and they can’t use it at that size.
    This seems like a lot of work. There must be a better way?

    Ok. Thank you.     Hmm....I don't have PDF/X-4.  I have Adobe Preset PDF/X1a and PDF/X3.
    I assume PDF/X-4 is a from a newer version of InDesign.  Will PDF/X-3  work as well?
    So there is not a way to achieve a crisp jpg or png directly from InDesign without all the steps I'm using now?
    BTW, do you happen know why changing the "intent" changes the page size? or where I can change a preference on this.  unless I've overlooked it, I don't see anything relating to this under edit > preferences. 
    Thanks again for your reply, I value your input!

  • How to find the original RAW file # from a Lightroom exported JPG?

    Hello, this is in regards to a Lightroom 3.5 exported JPG. This was a year ago when I had been told it was best to export files with simple renumbering of them from 1 to x... instead of retaining the original RAW 4-digit file name.
    I've currently lost the original files, and need to do a search for them via these 4 digits to see if I have them tucked away in any of my drives. I downloaded a metadata explorer, and it's telling me all the lightroom editing information, and everything else, but somehow does not have the simplest of information — that 4 digit original file name.
    Am I grasping at straws or is there likely to be any way to find this information out? I don't work with metadata, so there wouldn't have been any customizations to how Lightroom configures this....hoping that's in my favor. Any help is much appreciated!!!!

    A note about security (context: downloaded apps & plugins...).
    Anatomy of a URL:
    protocol://stuff.stuff.stuff.domain.domain-suffix/stuff/stuff?stuff=stuff
    None of this stuff matters much except:
    domain.domain-suffix (and protocol, to some extent).
    So if you download something from:
    http://ignafradifcawhatyousay.toolonganyway.my.server.com/gogafnoics...
    It's coming from server.com using http (web) protocol.
    But, if you download it from:
    http://my.server.com.badguy.tv/...
    It's coming from badguy.tv, NOT server.com, so if you want it from server.com - danger will robins...
    And, if you download from
    http://216.195.245.134/my.server.com
    It's coming from an unregistered internet address (216.195.245.134) - again: danger...
    (4 groups of up-to-3 digits separated by dots is the format for a literal internet (IP) address, instead of domain-name...)
    Summary: if you learn the anatomy of a URL, and pay attention to the URL's you are clicking on, or entering directly, you can take more responsibility for security, and assure (to a greater extent) you don't download from an unfriendly source.
    Disclaimer: I accept no legal responsibility for anything that happens as a result of anything written above...
    Rob

  • Exporting jpg no longer passes on rating

    Hi!
    Previously, when I exported RAW photos to jpg via Bridge / Adobe Camera Raw, whatever star rating I had applied to the RAW file would automatically be passed on to the exported jpg file as well.
    Now, with Bridge CC, the exported jpg gets no rating at all.
    This really messes up my workflow (I need to identify the best pictures after exporting them too), so I am wondering if it's possible to make Bridge / Camera Raw give the exported jpg the same rating as the RAW file somehow, as before?
    Thanks for any help!

    Of course the solution appeard in a "similar thread" once I posted:
    In the Save options dialog, under Format --> Metadata, I am able to select "All" metadata to follow through to the jpg, and thus I also get the star rating.

  • Exporting jpgs from illustrator

    When exporting a RGB (web) jpg out of illustrator the colour breakdown of my red changes from 255/0/0 to either 254/0/0 or 255/1/1. anyone know why this is happening and know of a fix?
    i know it seems petty but i am creating brand assets and the client is insisting on it being correct.
    thanks
    Chris

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/illustrator

Maybe you are looking for

  • Creating PDF Files

    I scanned several documents using my HP 6500A OfficeJet printer.  When I opened the PDF documents and tried to use the FIND option, regardless of what I typed in the FIND BOX, it was unable to find anything not even the word "the" or "at". Help....

  • Adobe Air "no installed runtime detected"

    I get this same set of entries on the log file if I run the installer file as Administrator or as a common user. [2012-04-21:15:58:13] Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86 [2012-04-21:15:58:13] Commandline is: [2012-04-21:

  • Creating a icon for a program

    Basically as the name says, i use a program called READY TO PROGRAM with java 1.7 and i just wanna know how can i make the program with an icon so i just click the icon and it runs???

  • Servlet execution threw an exception/NoClassDefFoundError

    Hi there, could anyone help me - I'm already desperated ! I always get an error message running (or better trying to run) a servlet on my linux webserver. Servlet worked fine on my Windows ME Apache. Does anyone know, what the following message mean

  • 0x8007046A: Not enough server storage is available to process on Server 2003

    Hello, Every week or so we start having an issue with our main file server.  We will get the message "0x8007046A: Not enough server storage is available to process this command" and we won't be able to connect to the server via remote desktop.  It se