How can I Bulk add file name to picture

I want to add the file name to the picture, so that when people look at the picture the file name is embedded into the picture.
I have done some research on this top and have found some mention of tools that people have build to do this and indeed many different things I suppose.
Im using PSE 10. Windows 7 Prof.  From what I understand, I cant build tools because my version eg Elements is not full blown. But if people have build something to do this I can then add it to my software and it will function for me.
While in full, quick or even guided there appears to be an option under File/Automation Tools. This appears to be what I need.
Can anyone tell me where this add on is and how to use it, I cant seem to find it and I really dont know if it will work with PSE 10. Many of the refrences I have seen seem to be for earlier version.
Perhaps there is an easier way ??
Thanks

Good question.
Basically what I want is the name of the photo name actually in the photo.  I have 400 pictues, I want to put them into a digital picture frame, and I want each picture to be display with the name of the pictures eg. Florida 2012.jpg and Grand Canyon.jpg. Of course I dont need the .jpg extention. But If it is there I can live with it. Im not sure if the Caption option in photoshop elements  can be exported so that the caption is hard wired into the picture. maybe it is. HOWEVER, what I dont want to do is go through 400 pictures and type in the caption for each pictures, if this option is available. It would be nice if the utility copyed the fild name into the caption, if you  could save it with the caption name, but I think Im asking too much.
Anyway basically I want the file name build into the  photo how ever this could be done in a bulk mode.
Is that  a lttle clearer. Here is an examle worth a 1000 words.
BTW I did an experiment and if you put the name in the caption line of the photo. It does not get exported with the file name in the picture. ( which I would asume since not many want the name in the photo, ) Although maybe there is some option that can be turned on to do this ??
Regards

Similar Messages

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • How can I edit the file name of the home page?

    How can I edit the file name of the home page?
    Gr Ammani

    I have a similar issue with regards to the filename...
    When I navigate to my website, it doesnt work unless I actually type the filename at the end of it. Example: type in "www.whitelion.com" (this is my real domain name) and it doesnt work. When I type in "www.whitelion.com/index.html" then it works.
    This is obviously inconvenient because my clients will never know to add the filename to the end of the site.
    Is there any setting or way to get the page to appear by just typing the original domain name without adding the extension?
    Thanks,
    Emelia

  • When bates numbering a .pdf in XI, how can I change the file name to include the bates number AND its name?  I know under file output, there is an option for either/or.  I want both.  Thank you.

    when bates numbering a .pdf in XI, how can I change the file name to include the bates number and the file name?  I know under "file output: it's either/or.  I need both.  Thanks!

    Long ago I wrote a little demo using the touch command. Check out the following thread:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=25128#M25128
    LabVIEW Champion . Do more with less code and in less time .

  • How can i change upload file name?

    hi
    I performed a upload Jsp page by OJSP file access in jdeveloper,and it can upload file!
    but i want to change uplaod file name!
    How can i do?
    Any help will be appreciated!
    Thanks
    Jiawei Zhao

    My questions are
    1) when use oreilly package to do file upload , it looks like i line of code is enough to store the upload file in the
    file direction.
    MultipartRequest multi =
            new MultipartRequest(request, dirName, 10*1024*1024); // 10MB
    why some example still use FileOutputStream?
    outs = new FileOutputStream(UPLOADDIR+fileName); 
        filePart.writeTo(outs); 
       outs.flush(); 
      outs.close();
    2) can I rename the file name when I use oreilly package?

  • How can I extract a file name / path from a local path variable in TestStand?

    I have local TestStand string variable, call it 'locals.path', that contains a path to a file including the file name (c:\inputs\input.txt). I need to be able to split up the path (c:\input) and the file name (input.txt) and save them into 2 local variables. What is the best way to do this?
    After reading through some of the other forums, it looks like there are some built-in functions that can accomplish this, but I am unable to find how to use them anywhere on the NI web site. One forum said to use the File I/O>Strip Path.file function. How is this called? Is this function in a DLL?
    I know that there are a number of DLLs that are installed with TestStand into the c:\windows\system32 directory. One forum made note of CVI_OpenFile / CVI_ReadFIle functions in the cvirt.dll that I used to solve a problem that I had in the past. The problem is that I had no idea that that these functions even existed and would have never known unless a similar question had been posted previously. Is there some place that these DLL function interfaces are defined or documented? Is there a function that can extract the file name out of a string for me?
    Thanks,
    Mike

    Hi,
    There sound like functions in say LabVIEW or CVI.
    I have attached a small example which may help. (I have not allowed for any error trapping, if say you dont find the file and cancel)
    Regards
    Ray Farmer
    Message Edited by Ray Farmer on 10-16-2006 10:04 PM
    Regards
    Ray Farmer
    Attachments:
    Sequence File1.seq ‏33 KB

  • How can I change the file name of an mp3 file to it's ID3 name?

    I prefer to alter the ID3 names of my music files to include: ARTIST - Track number - Tune Name. I do this in iTunes, by individually selecting each file, and Apple+I, then change the INFO/NAME tag.
    But the same file has a file name and an ID3 name then.
    Is there any script or APP that will allow me to BATCH convert all music file names to the ID3 name?

    > Do you have iTunes prefs > Advanced - Copy files to iTunes
    > media folder when adding to library checked?
    > (With above checked, when you add to iTunes, it makes a copy
    > of teh file in the iTunes folder and iTunes does not do anything
    >further with the original)
    Yes, how do you think they get there if I double click them in finder and list themselves and start playing in iTunes?
    > You are looking at the file in iTunes not the original file
    > (which is not in iTunes) correct?
    I have talked about both if you will read the thread.
    > In iTunes, right click Show in Finder
    Read the thread carefully, you are missing something.
    > Uncheck Keep iTunes media folder organized,
    > then click OK. Then go back and recheck it.
    Has no effect whatsoever.

  • (How) can I change multiple file names in a folder?

    My new scanner creates file names with with long, repeated numerical sequences.  Can I edit (shorten) the names in batches?

    Hey man, no problem.
    There are several sites you can look at that will give you a good idea on how to use Automator, such as:
    Mac 101: Automator
    Automatedworkflows.com tips and videos
    (This is the site where I learned everything really, and this site also provides 3rd party actions that have greately helped me with better workflows)
    Automator.us videos
    Good luck man.

  • How can I check original file name

    Hi all
    How can I check the original file name of a slide while in Keynote.
    Mike Hooley

    Hi Sara,
    Thankyou for your reply. What I meant was , how do you tell the original format , for example microsoft word, excel , powerpoint , jpeg, tiff , that the file was before it was converted to a PDF.
    So for example, i get a pdf file from someone and i want to know was it an exel file or a word file of  a Jpeg or scanned doc before they converted it to a pdf.
    It appears to me this information is not availabel in the file properties unless i am missing something.
    Regards
    Steven

  • How can we change the file name character limit on PSE 7?

    When I save for web I need more than 26 characters in the file name. Can you please tell me how to turn this Mac compatibility option off? Thanks.

    Save the file with a short name and rename afterward.
    Juergen

  • How can other people add files to your site?

    Hi!
    Is there a way to add something like a dropbox, where people can add their own pictures and videos?
    Is there a widget for it or is it included in Iweb?
    Thanks!!

    Welcome to the Apple Discussions. If you use a MobileGallery from iPhoto to house your photos and videos you can set it up in the settings so visitors can upload items to the gallery via email.
    Click to view full size
    You can them embed the gallery in an iWeb page like this: MobileMe Galleries and Quicktime Movies.
    I've not tried emailing a photo to a gallery so can't comment on how well it works.
    For photo pages or album pages in iWeb visitors can add comments and attachments, photos, which other visitors can view. How they are added I don't know. Here's what the iWeb Help says about that:
    +*About visitor comments and attachments*+
    +If you publish your site to MobileMe, you can let visitors add comments and attach files (which other visitors can download) to blog, podcast, and photos pages. These comments and attachments are visible to anyone who visits your website. To prevent automated programs from posting spam to your site, anyone who posts a comment is first required to type a displayed group of characters.+
    +Comments appear as soon as they’re posted, and you can delete a comment and its attachment at any time using iWeb or by visiting your site with any browser. You can also turn off comments to prevent new postings without affecting the comments already posted.+
    +Comments and attachments are stored on your iDisk. Each comment can be a maximum of 32 kilobytes (KB), and each attachment can be up to 5 megabytes (MB).+
    +IMPORTANT:Before posting anything to your website, make sure you own the copyright and other rights to what you or others are posting, or that you obtained all necessary permissions.+
    OT
    Message was edited by: Old Toad

  • How can transfer the read file name via own developed adapter module

    Hello experts,
    I want to know how I can handle the following issue:
    I developed a J2EE adapter module for the file adapter "sender" with the aim to read the file name of incoming files. Thereto I implement the following code like this:
    public ModuleData process(ModuleContext mc, ModuleData md) throws
    ModuleException
    Hashtable mp = (Hashtable)
    md.getSupplementalData("module.parameters");
    String fileName = null;
    if (mp != null)
    fileName = (String) mp.get("FileName");
    Now I get the filename which includes a order nr.  I need this order number to call a RFC Adapter via mapping. So my question is how can transfer this order nr to the RFC adapter?
    Kind regards,
    Fatih

    Hi,
    >> to read the file name of incoming files
    Use file adapter with Adapter specific identifiers selected.
    >>Thereto I implement the following code like this:
    use udf in message mapping and avoid module
    >>Now I get the filename which includes a order nr. I need this order number to call a RFC Adapter via mapping. So my question is how can transfer this order nr to the RFC adapter?
    use RFC Look up function in message mapping...
    Is module so necessary in this case???
    Regards
    Suraj

  • How can I set the file name and folder for output to PDF from another application?

    I am developing an application in Microsoft Access where the printed reports are to be saved in PDF format for archive purposes. I can send the output to Adobe X, but the default file name is the Access report name and the folder selected is the one last used.
    What I need to do is to create the file with a specific name (which changes for each run) and to a specific folder (which also changes for each run).
    The language I'm using is Visual Basic for Applications which is located in an Access form that controls the report production.
    Any suggestions, please?

    Got it - many thanks.

  • How can i filter the file names in SaveDialog box?

    Hi all,
    I have created a save dialog box. now i want to filter out the file listing inside the save dialog window. ie, i want to know how can i make entries in the "save as type" field so that it should be allowable for a user to select only html and pdf files.
    It will be very helpful if there is a code sample of the same.
    Thanx in advance,
    Abhi...

    If you used the JFileChooser to create your dialog box, then the API documentation has an example of exactly that. (Okay, it uses different file extensions.)
    If you wrote your own file save dialog box from scratch, then mimic what JFileChooser does.

  • How can you keep the file name when using "Download Linked File As..."?

    I'm a longtime PC user finally making the transition to Mac.  Some of the tasks that seemed so simple in Windows have really stumped me!  One of the tasks I do frequently is download files into specific folders.  After much looking, I finally found the "Download Linked File As..." option if I right-click on the download link.  The problem is, when I choose this option, I lose the file name.  I get a window in which I can choose the desired folder, but the filename is always "0".  If I want to keep the filename (and I usually do), I have to type it in manually.  Is there anyway around this?

    You can post a screen shot by clicking on the liitle Camera icon above your reply.  :)
    Just checked on 10.7.4+, still the same, something is borked about your install, to see if we need to re-install...
    To find out if it's system wide or user specific, try this...
    Open System Preferences>Accounts, unlock the lock, click on the little plus icon, make a new admin account, log out & into the new account.
    Does it work in the new account?

Maybe you are looking for

  • What are the major differences between 4.6 C, 4.7 and ECC6 Versions

    Hi, Please can any boyd explain me the major differences between 4.6C, 4.7 and ECC6 Versions... Regards sankar

  • Help with error E1611 in itunes

    Please can someone help me as Apple refuse to- and i'm at my wits' end I have had the error 1611 that many people both here and elsewhere seem to get namely the Ipod Touch 2nd Generation not switching on of it's own free will and when it's connected

  • Combine more than 24 pages from choose pages

    I have an issue with Acrobat X Pro and using the combine feature. When I open my current 1200 page pdf in the combine feature then "choose pages", I input my pages that I want. Example; 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 149, 150, 151, 152, 153,

  • How can I merge my adobe account with my wife's account.

    How can I merge my adobe account with my wife's account. I had been using lightroom since 2011 up to version 4. I wanted to upgrade to version 5 and decided to just go with the Photographers package and I signed up for that. Now I have a conflict sin

  • Asset accounting Test Script

    Hi iam doing first implementation Project. any one can provide asset account Test Scrips . what is test scrip. plse provide sample test script . my client wants Fuctional test script. plse provide Thanks