Tags bei Tiff-Dateien in PSE 5

Hallo!
Ich benutze noch Photoshop Elements 5 und würde dies auch gerne weiter tun. Ich habe nun leider das Problem, dass sich der Organizer weigert, meine TIFF-Dateien aus einer Nikon D 300 mit Tags zu versehen, nachdem ich den Befehl "Tag und Eigenschafteninfos mit Foto speichern" angeklickt habe. JPEG-Dateien vom gleichen Foto werden anstandslos mit Tags versehen, TIFF-Dateien jedoch nicht. Ich möchte meine bearbeiteten Fotos aber auch in Zukunft gerne als TIFF-Dateien speichern. Kann mir jemand einen Tipp geben, wie dieses Problem zu lösen ist? Oder sollte ich die Tags mit einer anderen Software einfügen?

Hallo,
ich arbeite auch noch teilweise mit PSE 5, hatte aber noch nie Probleme mit dem "taggen" von TIFF-Dateien. Wenn ich dich richtig verstanden habe, besteht das Problem nur darin, die angelegten Tags mit dem genannten Befehl in die Bilddateien zu schreiben. Dass gar keine Tags erzeugt werden können, kann ich mir kaum vorstellen.
Was mich an deiner Problembeschreibung ebenfalls wundert: " ... meine TIFF-Dateien aus einer Nikon D 300  ... " Nach meiner Kenntnis* erzeugen Nikon-DSLR nur NEF (=RAW)- oder JPG-Dateien. Auf welchem Wege werden deine TIFF-Dateien tatsächlich erzeugt? Über Adobe Camera RAW (ACR) und PSE Editor oder mit Fremdprogrammen? Sind deine Problem-TIFFs vielleicht als 16bit-Dateien gespeichert oder gar mit JPG-Kompression
Bei weiteren Hinweisen deinerseits kann ich mal versuchen, dein Problem nachzustellen
* bin mit D80 auch Nikonianer
Gruß
Bernhard

Similar Messages

  • Currently have 30K pics on PC Win. 7 laptop using  PSE 8, corrected issues and did full backup on portable hard drive plus saved (Extensive) Keyword tags to file.  Installed PSE 13 on PC Win 8.1 laptop.  Will attach same portable Hard drive to new laptop.

    Currently have 30K pics on PC Win. 7 laptop using  PSE 8, corrected issues and did full backup on portable hard drive plus saved (Extensive) Keyword tags to file.  Installed PSE 13 on PC Win 8.1 laptop.  Will attach same portable Hard drive to new laptop. How do I import prev Keyword Tags from file and Restore catalog from port. HD to new PC and in what order?  I have not opened PSE 13 on new PC yet. Would like to do it right the first time!

    No importing needed.
    See these instructions: Use Backup, Restore to move catalog | Organizer | Elements 6 or later

  • Will LR3 automatically transfer keyword tags of photos created in PSE when importing the photos

    Hi eveeryone,
    I am new to LR3. I would like to import all my photos into LR3 and all these photos have keyword tags that were done in PSE. Will LR3 automatically import the keyword tags too? If not, how would I do it?
    Much appreciate your feedback.

    The answer is "NO", because importing is the WRONG thing to do here.
    The proper procedure is to have LR3 upgrade your PSE catalog. In Lightroom, File->Upgrade PSE Catalog. All your tags will show up in Lightroom as keywords. Couldn't be simpler!
    http://help.adobe.com/en_US/Lightroom/3.0/Using/WS217DEA0F-2A78-4445-89CB-4CED1AFA450E.htm l

  • 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.

  • Guten tag mein iphone 4s stürzt ab wenn ich es lade und wenn ich es ausstecke bleibt es z.B. den ganzen Tag bei 79%. Was muss ich machen ?

    Guten Tag ich habe ein iPhone 4S und das stürzt ständig ab wenn ich es auflade und wenn ich es ausstecke bleibt es bei der battarie z.B. den Ganzen Tag bei 79%. Wass muss ich machen ????

    Ich habe das gleiche problem....ich hoffe auf eine schnelle loesung...

  • Probleme mit Mutlipage TIFF Dateien

    Ich habe gestern das ganze Internet nach einer vernünftigen TIFF Dokumentation abgesucht und habe nichts passendes gefunden ausser schon fertig kompilierte DLLs, womit ich wenig anfangen kann. Ich würde mich sehr freuen, wenn Ihr mir eine passende Dokumentation geben könntet.
    Folgende Funktionen brauche ich:
    Ich brauche die Funktionen, womit ich mehrere TIFF Dateien in einer Multipage TIFF umwandeln kann. Die Programmiersprache ist nicht relevant, würde aber trotzdem VB6 (oder PureBasic) bevorzugen. Vielen Dank schon mal im vorraus.

    Wenn mehrere Felder im selben Dokument den selbern Namen haben, dann müssen sie auch den selben Inhalt haben. Wenn Du mehrere Dokumente zusammenführst in eines, dann musst Du entweder dafür sorgen, dass jedes Formularfeld einen anderen Namen hat oder damit leben, dass die beschriebenen Probleme auftreten oder ein Portfilio erstellen.
    Die Frage ist auch, was willst Du erreichen, dass Du Formulare zusammenführst? Diese Funktion macht meiner Ansicht nach keinen Sinn, wenn man identische Formulare hat, die sich nur durch die ausgefüllten Felder unterscheiden. Denn die Inhalte der Formulare wird ja nicht im PDF, sondern in einer FDF oder XFDF gespeichert.

  • Creating tags to organize photos in PSE 12

    I just got a new computer and installed PSE 12. I want to organize my photos with my own tags, and can't find a way to do that with the new program.
    Also, I don't want to send my photos to the cloud.
    HELP!!!

    Dear nealeh:
    Thanks for the advice, and hope that I can find the tools I used to use to nicely. I'll report back once I have tried your suggestions.
    Sarah
    Sarah K. Weinberg
    Date: Tue, 4 Mar 2014 14:07:25 -0800
    From: [email protected]
    To: [email protected]
    Subject: Creating tags to organize photos in PSE 12
        Re: Creating tags to organize photos in PSE 12
        created by nealeh in Photoshop Elements - View the full discussion
    You need to spend some time with Help> Getting Started. You can create many categories and sub-categories in your tags, the Organizer fixes you refer to are still there - click Instant Fix at bottom right, and if you convert your existing catalog then all those existing tags will come across with them (although People, Places & Events are handled differently from 8 & 9. And you don't have to store anything in the cloud if you don't want to.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6179299#6179299
         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/6179299#6179299
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6179299#6179299. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Meta Tags von PDF Dateien im Windows Explorer

    Und zwar habe ich meinen PDF Dateien mit dem Programm "PDF Explorer" benutzerdefinierte Meta Tags zugeordnet. Im Windows Explorer werden diese aber nicht angezeigt. Im Adobe Acrobat Pro bei den Eigenschaften jedoch schon. Hat jemand ne Lösung wie man die Meta Daten im Explorer anzeigen lassen kann, um z.b. danach sortieren zu können?

    Windoof zeigt schon seit Vista PDF-Thumbnails nativ an. Das hat mit Adobe recht wenig zu tun. Allerdings hängt es von ein paar Details der PDFs selber ab, wie dem Umstand, dass sie eine eingebettete Seitenvorschau haben müssen. Könnte auch einfach sein, dass sich irgendein Programm die Verknüpfung mit PDFs geschnappt hat und es deshalb nicht mehr funktioniert...
    Mylenium

  • Tag issue when upgrading from PSE 7 to 11

    I've upgraded from PSE 7 to 11 and the tags for people, while there, do not appear in the "people" section fo PSE11. Any suggestions on how to get them all to show?

    In PSE11, people tags have been moved to People view, this view contains all people tags along with categories. In case you want to view them along with tags panel, it can be enabled through View->Show People in Tag panel.

  • How to Import People Tags from WLFG 2011 to PSE 9

    How can I inport people tags that I have created in Windows Live Photo Gallery 2011 into PSE 9? I use Windows 7, and I see that with Windows Explorer properties the WLFG people tags are listed under Description>People and the PSE people tags are listed under Description>Tags. In PSE properties, the WLFG people tags are not listed and the PSE people tags are listed under IPTC>Keywords. Help!

    I know that very well, like you said it did not need much googling. But my question was, if someone has e.g. ready-made plugin for that. Of course I could e.g. let WLPG find the faces and then tag those manually with rather small effort. But it would be nice, if that was done automatically. Like your answer sais, the tagged information is stored to the file, but in non-standard way. It is not rocket science to extract that information and do standard tagging with some plugin. But my coding skills are not enough - not even close. So the original question is still valid.
    Once more: I can do it manually, but can I make it more automatically. Well, I need to check clvrmnky's answer more carefully.

  • How to open multipage tiff images in PSE 7

    When I open a pdf file with multiple pages, each page is viewed as a thumbnail.  But I can't seem to open a file containing multiple tiff images.  How do I do this with PSE 7?  Thanks.

    Here are a couple of links about multi page tiffs in photoshop or elements.
    http://kb2.adobe.com/cps/325/325224.html
    http://forums.adobe.com/message/3172569
    MTSTUNER

  • How do you keep Tags organized when upgrading to PSE 9?

    I installed PSE 9 after using PSE 7 for the last two years. Once it installed and I opened Organizer, Organizer found my existing PSE 7 Catalog and asked if I wanted to convert it. I did, but lost the organization of my Keyword Tags. All my photos retained their Tags (I write my Tags into each photo) but I lost my organizational tree. The Tags were all found, listed alphabetically and disorganized, in the "Imported Keyword Tags" Category. In other words, Tags in categories and subcategories were mixed together. I have over 50K photos and over 150 Tags. Needless to say, it was a pain re-organizing them. Unfortunately, I was unable to view Full Screen slide shows (hitting the Play button crashed Organizer) and was advised by Support to un-install and re-install PSE 9. I REALLY do not want to have to re-organize my Keyword Tags again. Is there any way to retain my catalog's organizational tree?

    Thanks for the reply. I have used every PSE except PSE 8, in the past. When I purchased my current PC, I installed PSE 7 and rebuilt my catalog by using the "Get photos from files" function. Consequently, I had to rebuild my Keyword Tags organizational tree. When I installed PSE 9 on this same PC, it "found" my PSE 7 catalog and asked if I wanted to convert it. I clicked to agree. It converted my Catalog, which did contain Albums in PSE 7, but I lost my Tag's organizational tree and no Albums were present in PSE 9. They are still present in PSE 7. As I mentioned, tech support had me un-install and re-install PSE 9, which I did after your first reply,  and indeed the Tags appeared and were organized when I re-installed PSE 9, but again, I have no albums in PSE 9.

  • Can I create multi page TIFF files in PSE?

    I wish to use a Canon TWAIN driver running a single page scanner to create multiple page TIFF files. Can anyone tell me whether this is possible in PSE please?

    No. That is not possible with PSE.

  • NEF-Dateien in PSE 8 verarbeiten

    Sehr geehrte Damen und Herren,
    ich besitze Adobe Photoshop Elements 8 und möchte darin RAW-Bilder aus meiner Camera Nikon D 5100 (NEF-Dateien) verarbeiten. Was kann ich tun? Was brauche ich an Software, Update usw? Vielen Dank für die Hilfe.
    Mit freundlichen Grüßen
    Herbert Rürup

    D 5100-Dateien werden in ACR-Version 6.4 und höher unterstützt. Während max-Version Selbstbedienungsbuffet PSE 8 unterstützt, ist 6,2 so Update nicht helfen würde, aber dennoch versuchen Help-> Updates und aktualisieren Sie Ihre Adobe Camera Raw-Version und prüfen einmal.
    Else müssten Sie auf die neueste Version, die PSE 11 ist zu aktualisieren. Yo ucan downloaden Studie und überprüfen

  • Missing tags on DVD back up PSE 5

    Hi I have built a new PC and I'm moving all my pics from the old PC to the new PC using backup DVD's which I created in PSE 5. When I load the photo's only about 10% of the pictures have their tags attached. With 5000 photos per DVD (5 in all) I don't fancy retagging 15,000+ pics. Can anyone help with finding the missing tags?
    Cheers Gary

    Gary,
    I think the answer may come from how you created these "backup DVDs".
    Having tags on only a percentage of the photos often indicates that you backed up and moved the photo files to the new PC: however you did nothing which transferred the PS Elements Organizer Catalog from the old PC to the new PC.
    Adobe has a TechNote document describing a method for moving both the photo files and the Catalog to a new PC when using PSE version 5 at
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=333522
    However, you have already moved the photo files. So it may be worthwhile to try to copy your catalog from the old PC to the new PC.
    What is the Windows version on the old PC and on the new PC?
    What is the Windows Userid on the old PC and the new PC?
    Are your photo files under the My documents\My Pictures folder structure or are they somewhere else? If elsewhere, describe their location on the old system and on the new system?

Maybe you are looking for

  • Wipe on Lumia 800 generate recurrent reset

    Hi, I wrongly did wipe my Lumia 800 (059M359). From there, everytime I configure my device, and begin to transfer more data to it (like 2, or 3 GB data), it freezes... and when I restart it (just pressing power button), it comes back totally empty (l

  • Os 8.6

    Hi all I have just updated my mac to 10.4.4 which does not come with classic . I was wondering if it is possible to install my original 8.6 for classic then use updaters to get it to 9 . Has anyone tried this ?

  • Report Painter for all module

    Hi, Is report painter can be use by MM,PP,SD module ? in ECC6, we can use report painter for module FI, how about module MM,SD and PP ?  if it can use for those module too, how is the step?

  • Full Bars = Have Data services?

    I've been noticing for the past 2-3 days (I live in the southeast) that despite having full bars, I only get data working 60% of the time (That is out of 10 times I fire up safari I get no connectivity). At my office, I have full bars and have no pro

  • Can I use https in c:import tag

    hi All, can anybody help me? I have a problem using c:import tag. When I write smth like this: <textarea style="FONT-SIZE: 8pt><c:import url="http://java.sun.com/developer/technicalArticles/javaserverpages/faster/" /></textarea> it's going fine. But