Can you add Geo Tags to images you shoot in Adobe Bridge?

I was wondering if this could be done?
-David

You might try google this as you will see several hits  such as this http://forums.adobe.com/message/4323488.
No direct way to do this, depending on what you expect to accomplish.

Similar Messages

  • Can you still access Adobe PDF SAVED FILES WHEN YOU GET A NEW COMPUTER

    Can you still access Adobe PDF SAVED FILES WHEN YOU GET A NEW COMPUTER ? Do you loose the files you have saved on you old computer when you get another computer?

    I may not be clear on what you are asking here but I'll try an answer anyway since that's the type of guy I am.
    If you have PDF files on your old computer, you will need to transfer them to your new computer. You can use a flash drive or CD if needed.
    But again, I think I'm not getting what you are really wanting to know. If I'm not, can you give us some more details?

  • Can you sell an adobe muse website if the client does not have a license?

    Can you sell an adobe muse website if the client does not have a license?

    Hello,
    You can sell the website to the client, but if you give out the .muse file to the client, then they would need a muse license to be able to open that file in Muse and make edits to the website (in case they do need to make edits). If you simply give out the exported files, then they can upload the site to their host, but they would not be able to make too many edits to the website. The In Browser Editor is a feature that is available if the site is hosted with Adobe Business Catalyst, where they would be able to make certain basic edit/changes to the site.
    Cheers
    Parikshit

  • How can I add attachment files – or photos – to my created Adobe reader XI files?

    How can I add attachment files – or photos – to my created Adobe reader XI files?

    Hi adel ghonim,
    You can add images following the instructions in this Help article: Adobe Acrobat X Standard * Paste images as comments.
    You can also add attachments by clicking the paperclip icon in the left column of the Acrobat window...
    Please let me know if you need further assistance.
    Best,
    Sara

  • Add geo tags to TIFF image

    Hello ..
    I struck with adding geotags such as GTModelType_TAG,GTRasterType_TAG,Projection_TAG etc.to TIFF image.Can i add tags to IIOMetadata or TIFFDirectory or anyother.Please suggest me ,if possible give code snippet also.
    Is adding geotags is same as adding our own tag to TIFF image.
    Thanks in advance.

    Try this. This code assumes you hava JAI-ImageIO, and consequently have the ImageReader/Writer plugin for tiff files.
    public static IIOMetadata addGeoMeta(
            IIOMetadata existingMeta,
            int[] geoKeyDirectory,
            double[] geoDoubleParams,
            String geoAsciiParams) {
        if(geoKeyDirectory.length%4 != 0) {
            throw new IllegalArgumentException("Keys come in blocks of 4.  The "
                    + "geoKeyDirectory needs to have a multiple length of 4.");
        //some declarations from the various specificiations
        final String METADATA_FORMAT =
                "com_sun_media_imageio_plugins_tiff_image_1.0";
        final String GEO_TAGSET =
                "com.sun.media.imageio.plugins.tiff.GeoTIFFTagSet";
        final String GEO_KEY_TAG_NUMBER = "34735";
        final String GEO_KEY_TAG_NAME = "GeoKeyDirectory";
        final String GEO_DOUBLES_TAG_NUMBER = "34736";
        final String GEO_DOUBLES_TAG_NAME = "GeoDoubleParams";
        final String GEO_ASCII_TAG_NUMBER = "34737";
        final String GEO_ASCII_TAG_NAME = "GeoAsciiParams";
        IIOMetadataNode root = 
                (IIOMetadataNode) existingMeta.getAsTree(METADATA_FORMAT);
        IIOMetadataNode ifd =
            (IIOMetadataNode) root.getElementsByTagName("TIFFIFD").item(0);
        //remove old geo data if present
        NodeList children = ifd.getElementsByTagName("TIFFField");
        for(int i = 0; i < children.getLength(); i++) {
            IIOMetadataNode child = (IIOMetadataNode) children.item(i);
            String tagNumber = child.getAttribute("number");
            if(GEO_KEY_TAG_NUMBER.equals(tagNumber) ||
               GEO_DOUBLES_TAG_NUMBER.equals(tagNumber) ||
               GEO_ASCII_TAG_NUMBER.equals(tagNumber)) {
                ifd.removeChild(child);
        /**Metadata tree structure:
         * com_sun_media_imageio_plugins_tiff_image_1.0";
         *   TIFFIFD (attributes: tagSets)
         *     TIFFField (attribues: name & number)
         *     TIFFField (attribues: name & number)
         *     TIFFField (attribues: name & number) <-- GeoKeyDirectory
         *       TIFFShorts
         *         TIFFShort (attribute: value) --
         *         TIFFShort (attribute: value)   | Keys have 4 entries each
         *         TIFFShort (attribute: value)   |
         *         TIFFSshor (attribute: value) --
         *     TIFFField (attributes: name & number) <-- GeoDoubleParams
         *       TIFFDoubles
         *         TIFFDouble (attribute: value)
         *         TIFFDouble (attribute: value)
         *         TIFFDouble (attribute: value)
         *     TIFFField (attributes: name & number) <--GeoAsciiParams
         *       TIFFAsciis
         *         TIFFAscii (atrribute: value) <-- single string containing
         *                                          all ASCII valued GeoKeys
        //construct GeoKeyDirectory
        IIOMetadataNode keyDirectoryTag = new IIOMetadataNode("TIFFField");
        keyDirectoryTag.setAttribute("number",GEO_KEY_TAG_NUMBER);
        keyDirectoryTag.setAttribute("name",GEO_KEY_TAG_NAME);
        IIOMetadataNode keys = new IIOMetadataNode("TIFFShorts");
        for(int i = 0; i < geoKeyDirectory.length; i++) {
            if(geoKeyDirectory[i] < 0 || geoKeyDirectory[i] > 65535)
                throw new IllegalArgumentException("Invalide key value: " +
                        geoKeyDirectory[i] + " Must be unsigned short.");
            IIOMetadataNode tiffShort = new IIOMetadataNode("TIFFShort");
            tiffShort.setAttribute("value",""+geoKeyDirectory);
    keys.appendChild(tiffShort);
    keyDirectoryTag.appendChild(keys);
    ifd.appendChild(keyDirectoryTag);
    //construct GeoDoubleParams of needed
    if(geoDoubleParams != null) {
    IIOMetadataNode doubleParamsTag = new IIOMetadataNode("TIFFField");
    doubleParamsTag.setAttribute("number",GEO_DOUBLES_TAG_NUMBER);
    doubleParamsTag.setAttribute("name",GEO_DOUBLES_TAG_NAME);
    IIOMetadataNode doubles = new IIOMetadataNode("TIFFDoubles");
    for(int i = 0; i < geoDoubleParams.length; i++) {
    IIOMetadataNode tiffDouble = new IIOMetadataNode("TIFFDouble");
    tiffDouble.setAttribute("value",""+geoDoubleParams[i]);
    doubles.appendChild(tiffDouble);
    doubleParamsTag.appendChild(doubles);
    ifd.appendChild(doubleParamsTag);
    //construct GeoAsciiParams if needed
    if(geoAsciiParams != null) {
    IIOMetadataNode asciiParamsTag = new IIOMetadataNode("TIFFField");
    asciiParamsTag.setAttribute("number",GEO_ASCII_TAG_NUMBER);
    asciiParamsTag.setAttribute("name",GEO_ASCII_TAG_NAME);
    IIOMetadataNode asciis = new IIOMetadataNode("TIFFAsciis");
    IIOMetadataNode tiffAscii = new IIOMetadataNode("TIFFAscii");
    tiffAscii.setAttribute("value",geoAsciiParams);
    asciis.appendChild(tiffAscii);
    asciiParamsTag.appendChild(asciis);
    ifd.appendChild(asciiParamsTag);
    //append geo tag set to IFD if needed
    String tagSets = ifd.getAttribute("tagSets");
    if(!tagSets.contains(GEO_TAGSET)) {
    tagSets += "," + GEO_TAGSET;
    ifd.setAttribute("tagSets",tagSets);
    try {
    existingMeta.setFromTree(METADATA_FORMAT,root);
    }catch(Exception e) {
    //failed to add new geo data
    e.printStackTrace();
    return existingMeta;
    It may be a little easier using JAI, but I don't know how you would do it off the top of my head. JAI is build more for image processing than metadata manipulation.

  • How can I add deleted tags again to my list of tags?

    Hi I've deleted my "red tag" from the list. How can I add it there again? thx a lot

    OK here is the answer: https://discussions.apple.com/message/23465520#23465520 Thx

  • Can you provides a Adobe LiveCycle Designer 8.0 download URL to me ?

    i search it in google and adobe.com
    but no result to me.
    I installed the LiveCycle Designer ES v8.2, but my Webdynpro tool could not find it
    so , i want get the version 8.0 to try.
    can you provides some download URL of the Adobe LiveCycle Designer 8.0  to me ?

    Hello
    [url]https://www.sdn.sap.com/downloads/netweaver/java/700/disclaimer.html[url]
    Regards,
    GLM

  • Can I add logo on the image?

    I am new to apeture and don't really know all the functions. Can I add a logo in a 50 % opacity to the bottom right corner of my image?

    Ok, so when I do that, I can adjust the opacity but can I adjust the size of the watermark? It is really large... I want to make it mach smaller.

  • Can you rename files in Bridge and relink in InDesign automatically?

    I have a 250+ page InDesign file with 800+ links to images.
    The problem I'm having is the images have French file names.  I want to remove the French text and rename the images to English.
    If I rename the images in Adobe Bridge will the Indesign links remain?
    I'm using CS5.5

    Unfortunately no.
    But fortunately there's a script!
    http://carijansen.com/2011/11/10/indesign-epub-support-tool-renaming-image-links/

  • Can't Directly Rate my Images using Stars in Adobe Bridge CS3

    Hi
    I can rate my images in Adobe Bridge CS3 by using the drop down 'Label' menu. However, I cannot rate my image by stars directly under my image thumbnails as my book suggests I can. The book states: "You can also assign stars directly under the thumbnail by clicking on the dots".
    Is there anyway I can do this? Do I have to change some preferences?
    Many thanks in advance for anticipated help.

    try resetting your preferences by holding Ctrl right after you launch Bridge(you have to be fast, you'll get a dialog box if you succeeded)
    Though you'd need to do this only if you are doing it correctly in the first place. With a picture selected you'll notice 5 small dots beneath its thumbnail which you can click on to rate things. If you don't see the dots then increase the thumbnail size by adjusting the slider at the bottom of the screen

  • How do you use an Adobe Bridge Web gallery in a Flash Website

    How do you embed the output from Adobe Bridge Web Gallery into a Flash Website?

    Hi there -
    I'd try posting your question over in the Flash general forum. You could also try the Flash site design forum. The folks over there will probably be able to help you solve your issue

  • Camera raw images change colour in adobe bridge

    I have photoshop CS4 and import my camera raw images into Adobe Bridge.  When I view the thumbnails in bridge my raw images look vibrant and exactly like they appear on the camera but when I go to open them in camera raw edit they change colour and look washed out before I've made any changes.  Can anyone help me figure out how to correct this?

    ssprengel wrote:
    My camera is set to shoot sRGB JPGs and is set to all zeros for the brightness/contrast/saturation parameters.
    What is your camera set to as far as these basic toning settings, as well as any automatic things like DLighting or highlight compression and perhaps any custom curves or whatever that is called for Nikons?
    First paragraph - so is mine.
    Second paragraph - all other settings are neutral/zeroed/turned off, as per my post to which you responded. That is, no additional tone curves - Active D-Lighting turned OFF (why anyone would let the camera decide what to do do with highlights and shadows is beyond my level of trust) , Jpg compression is Optimal (least possible) et cetera.
    Think I now have an explanation for the different displays in ACR (and Bridge) that I have been experiencing. Took a new duplicate Jpg/Raw shot with the in-camera Picture Control set to Neutral. Now, when both the Jpg and .NEF Raw are viewed in ACR, with the ACR Camera profile set to Camera Neutral, they appear, ASAICT, identical. Saved Camera Neutral as the default ACR Camera profile. Now back in Bridge, the images also appear pretty much identical.
    I think what was happening previously was that I had failed to save Camera Standard in ACR as the default Camera profile, and it was defaulting to Adobe Standard, and hence it was rendering Raw thumbnails for Bridge to that Camera profile - hence the difference in appearance between the Jpg and Raw in Bridge. Unless I have got it completely wrong,  I think my problem is now solved.

  • How to import Images from Aperture to Adobe Bridge

    It seems as if my aperture vault cannot be accessed from Adobe Bridge. As I ofter use the camera RAW it would be nice to assess the files in Aperture with the step of Export Master to Desktop.
    Thanks.
    Jack

    after adobe bridge is installed. Go to aperture preferences. Choose export in the preferences apne then external editor. and choose adobe Bridge in you applications.
    Works great and only took a day to figure out.

  • How can I add a tag?

    I want to index JSP-pages but I want that the tags that are standard on the JSP-pages and everything between these tags would not be indexed? Is it possible to add tags to the HTML_SECTION_GROUP?

    Yes. Select the files you want to tag and Command (right) click to bring up this contextual menu where you can select the tag you want to apply:
    OT

  • Can't add drivers to boot images

    I am just getting into OSD with SCCM 2012 R2 and have run into issues with the OS Image deployment.  I think it is because the boot image doesn't have the correct NIC drivers injected, but I can't seem to do it.  When I right-click the driver(s)
    in SCCM, click Edit->Boot Images the section where I can select the boot images that I want to inject the drivers into is dark grey and there are no images listed.  Is there something I have to do to the drivers/packages/categories before I am able
    to add the drivers?  Again, this is my first attempt at doing this so be kind. :)

    No, my user account is a domain admin member.
    I know this is a totally side topic, but that's a terrible practice security wise. That's my point whether or not it's the domain admin.
    As for the drivers in the boot image, you need to be using boot images that line up with your version of ConfigMgr to manage them in the console.
    2012 RTM -> WinPE 3.1
    2012 SP1 -> WinPE 4.0
    2012 R2 -> WinPE 5.0
    2012 SP1 with CU3 or CU4 supports WinPE 31 and WinPE 5.0 boot images but you can't manage certain aspect of them in the console like drivers.
    2012 R2 supports WinPE 3.1 boot images (but not WinPE 4.0) with the same caveats.
    You can use the method outlined by Jordan to manually inject drivers if necessary. If there a reason you aren't using the standard boot images created during ConfigMgr installation though?
    Also, you mentioned using the boot images you used in WDS. If these are based on the boot images directly from the Windows media, those won't work at all. As mentioned, you should be using the ones created at install time.
    Jason | http://blog.configmgrftw.com

Maybe you are looking for