How to Populate 'Camera Model' on iPhone print screens?

My name is Mike.
I love that iPhones (and iPods and iPads) can print screen using the sleep/wake button and the Home button.
I'm surprised I only just now noticed, but I can confirm... once the print screens are imported into iPhoto, their "Camera Type" is blank...
So my "iPhone" smart album, defined by "Camera Type = 'iPhone 4'" will show all the photos taken through the camera, but not the print screens.
This is not the end of the world, and is a benefit for sorting through the kids' pictures... it's nice to see that their print screens are not on the 'iPod Touch' smart album.
But I do want my print screens in my smart album.
So... how to update the "Camera Type" field so I can populate it to 'iPhone 4' (or 'iPod Touch')?
Thanks,
Mike

I suggest using an EXIF metadata editor.  This way you can edit the camera type + other pieces of info in the photo.
Here are a few I could find:
http://www.sno.phy.queensu.ca/~phil/exiftool/  The original and free, but does not have a graphical interface. (runs in terminal)
https://itunes.apple.com/ca/app/exif-editor/id477514607?mt=12  One that looks easy and seems to have a nice user interface, but costs 9 dollars
http://www.photome.de/  Looks as easy as the one above, and is free, but is windows so would require some tampering or Parellels to run on a mac.
Hope this was what you were looking for!
- Boboonski

Similar Messages

  • How to Populate 'Camera Model' on iPhone print screens? (iphoto)

    My name is Mike.
    I love that iPhones (and iPods and iPads) can print screen using the sleep/wake button and the Home button.
    I'm surprised I only just now noticed, but I can confirm... once the print screens are imported into iPhoto, their "Camera Type" is blank...
    So my "iPhone" smart album, defined by "Camera Type = 'iPhone 4'" will show all the photos taken through the camera, but not the print screens.
    This is not the end of the world, and is a benefit for sorting through the kids' pictures... it's nice to see that their print screens are not on the 'iPod Touch' smart album.
    But I do want my print screens in my smart album.
    So... how to update the "Camera Type" field so I can populate it to 'iPhone 4' (or 'iPod Touch')?
    Thanks,
    Mike

    That would be an iPhone question not an iPhoto question - iPhoto does not create that information - the camera (iPhone or other IOS device in your case) does - iPhoto only reads and reports the information that the camera putsin the photo's EXIF or IPTC data fields
    Ask in the appropriate forum
    My guess is that since the image is not being created by the camera that what you want is not possible - but that is just a guess
    LN

  • How to find which model of iPhone 5 I am using? and is that GSM or CDMA?

    How to find which model of iPhone 5 I am using? A1428 or A1429 ? Is there any short code you can dial in and check the model number ?
    And which is GSM or CDMA out of this model.

    If you purchased the phone in the US with an AT&T contract then you have the locked CDMA A1428 version of the iPhone 5. 
    At the moment and if the contract is a new contact, then you won't be able to get the phone unlocked at the moment and no, you won't be able to use it in your home country.  You will also have LTE 4G compatibility issues too and your phone will only work on 3G and also you need to remember that iPhones are only covered by country specific warranty, so it is only covered in the US, so if you go home and then have a problem with your phone, you will have to come back to the US to get it repaired.
    You need to approach AT&T about whether they will unlock your phone for you as they are the ONLY ones that can do it, but the answer to your question is no and if you had wanted to use your phone at home, then you should not have purchased it in the US.  The best that you can hope for at the moment is to use it on international/roaming.
    If you purchased your phone in the US, then it will be a CDMA phone.  You don't have a GSM phone, but GSM phones are unlocked anyway and these are the ones that are selling in Canada and the UK.
    If you have your phone on an AT&T contract then ultimately, AT&T are the only ones who can help you with any questions regarding unlocking and they are the only ones who can unlock it for you, noone else.

  • How to bring camera short cut on locked screen

    My wife & I have iPhone 4S, recently we both set passcode on our iPhones, my phone shows camera short cut on locked screen whereas my wife's does not has camera short cut. Does any one know how to bring camera short cut on locked screen,  thanks.

    Yes, hers is updated to iOS 5.1, she can now bring up the camera short cut by tapping Home button twice suggested by anilsudhakaran dated Oct 11 2011 in the support communities. Thanks razmee209 & anilsudhakaran.

  • How to populate TableView data on the other screen TextField

    Hi guru’s
    I am having problem in populating data from a table in one screen to a Text Field in the other screen. I have two classes FirstClass containing a textbox and a button. On pressing a button a second window is opened containing a Table of values. As the user double clicks a row the value of the second column of the row should be inserted into the textbox of the FirstClass. Code of both the classes is attached. Thanking you in anticipation.
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Stage;
    public class FirstClass extends Application {
    public static void main(String[] args) {
         launch(args);
    @Override
    public void start(final Stage primaryStage) {
         primaryStage.setTitle("First Class");
    GridPane gridpane = new GridPane();
              gridpane.setPadding(new Insets(5));
              gridpane.setHgap(5);
              gridpane.setVgap(5);
    final TextField userNameFld = new TextField();
    gridpane.add(userNameFld, 1, 1);
    Button btn = new Button();
    btn.setText("Show Table");
    gridpane.add(btn, 1, 3);
    btn.setOnAction(new EventHandler<ActionEvent>() {
    @Override
    public void handle(ActionEvent event) {
         String a = TableClass.showDialog(primaryStage, true, "Table Window" );
         userNameFld.setText(a);
    StackPane root = new StackPane();
    Scene scene =new Scene(root, 300, 250);
    root.getChildren().addAll(gridpane);
    primaryStage.setScene(scene);
    primaryStage.show();
    import javafx.beans.property.SimpleStringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Scene;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.StackPane;
    import javafx.stage.Modality;
    import javafx.stage.Stage;
    public class TableClass extends Stage {
         private static TableClass dialog;
         private static String value = "";
         public static class Person {
    private final SimpleStringProperty firstName;
    private final SimpleStringProperty lastName;
    private Person(String fName, String lName) {
    this.firstName = new SimpleStringProperty(fName);
    this.lastName = new SimpleStringProperty(lName);
    public String getFirstName() {
    return firstName.get();
    public void setFirstName(String fName) {
    firstName.set(fName);
    public String getLastName() {
    return lastName.get();
    public void setLastName(String fName) {
    lastName.set(fName);
         private TableView<Person> table = new TableView<Person>();
         private final ObservableList<Person> data =
         FXCollections.observableArrayList(
         new Person("JACK", "BROWN"),
         new Person("JOHN", "VIANNEYS"),
         new Person("MICHAEL", "NELSON"),
         new Person("WILLIAM", " CAREY")
         public TableClass(Stage owner, boolean modality, String title) {
              super();
              initOwner(owner);
              Modality m = modality ? Modality.APPLICATION_MODAL : Modality.NONE;
              initModality(m);
              setOpacity(1);
              setTitle(title);
              StackPane root = new StackPane();
              Scene scene = new Scene(root, 750, 750);
              setScene(scene);
              GridPane gridpane = new GridPane();
              gridpane.setPadding(new Insets(5));
              gridpane.setHgap(5);
              gridpane.setVgap(5);
              TableColumn firstNameCol = new TableColumn("First Name");
         firstNameCol.setMinWidth(100);
         firstNameCol.setCellValueFactory(
         new PropertyValueFactory<Person,String>("firstName")
         TableColumn lastNameCol = new TableColumn("Last Name");
         lastNameCol.setMinWidth(200);
         lastNameCol.setCellValueFactory(
         new PropertyValueFactory<Person,String>("lastName")
         table.setItems(data);
         table.getColumns().addAll(firstNameCol, lastNameCol);
         table.setOnMouseClicked(new EventHandler<MouseEvent>() {
                   public void handle(MouseEvent me) {
                        if (me.getClickCount() >= 2) {
                   String srr = table.getItems().get(table.getSelectionModel().getSelectedIndex()).getLastName();
                   value = srr;
                   dialog.hide();
         gridpane.add(table, 1, 5,1,20 );
              root.getChildren().add(gridpane);
         public static String showDialog(Stage stg, Boolean a , String title){
              dialog = new TableClass( stg,a, title);
              dialog.show();
              return value;
    }

    Cross posted
    http://www.coderanch.com/t/582014/JavaFX/java/populate-TableView-data-other-screen
    http://stackoverflow.com/questions/10734649/how-to-populate-tableview-data-on-the-other-screen-textfield-in-javafx-2-0
    Moderator advice: Please read the announcement(s) at the top of the forum listings and the FAQ linked from every page. They are there for a purpose.
    Then edit your post and format the code correctly.
    db

  • Hello, could you please tell me how much is replacement of cracked iPhone 5 screen. Thanks

    Hello, could you please tell me how much is replacement of cracked iPhone 5 screen. Thanks

    Depends on your country
    In US
    some Apple stores will replace the screen on iPhone5 and 5C and if the service is available the cost is $149
    Where the service is not available  then an exchange iphone  price is $269

  • Metadata doesnt populate Camera Model in iPhoto anymore

    I have a smart album setup that collects all pictures taken with "Camera Model - is - Apple iPhone". I has worked up until the beginning of 2009. On January 1st, everytime my iphone imports pictures into iPhoto it doesnt have "Apple iPhone" as the camera model, it is just blank and i cant seem to find a way to edit the info back in. So now my Smart album doesnt update with new pics taken with my iphone, can anyone offer some assistance on how to make it keep the camera model upon import or show me how to edit that info so iPhoto will recognize it?

    Iphoto was the same at the time, iPhone is the same...
    If you look at the post jan 1st pictures that were imported from an iPhone and you click "Show extended Photo Info" from the "Photos" Menu the Camera model and make fields are empty.
    If you look at the pre Jan 1st pictures that were imported from an iPhone and you click "Show extended Photo Info" from the "Photos" Menu the Camera model and make fields state "iPhone" , "Apple", which makes my smart album work.

  • What does it cost and how do I replace my shattered IPhone 5 screen and the touch sensor under the glass?

    What does it cost to replace my shattered IPhone 5 screen and the touch sensor under the glass?

    It is not clear to me how far along this implementation has gonein the US and worldwide, but this seems to describe where it is going:
    http://appleinsider.com/articles/13/06/03/apple-now-repairing-iphone-5-screens-i n-store-as-part-of-applecare-overhaul

  • How do you email pdf from the print screen

    Anyone found a way to email a pdf from the print screen?
    Thanks

    Previous screen of what?   You need to be more specific.

  • How to populate default values in an opputunity screen

    Hi Experts,
    I have an oppurtunity called Foresite Oppurtunity.
    This has a tab called Organization.
    Depending on the user who has logged I have to fetch the sales org, distribution channel, division details of that user maitained in the org. structure and populate them in the respective fields in the organization tab for that oppurtunity.
    How to do that ?.

    Hi Arul Jothi,
    you have to change (or create a new)
    organizational data profil (szenario sales).
    You find the customizing in Master Data ->
    Organiz. Management-> Organiz. Data Dterm.->
    Change Rules and Prof.-> Maint. Org. Data Prof.
    In this data profil you have to use the determination rule 10000194 User orgunit.
    Flag the mandantory fields you need from your
    org. model.
    Afterwards you have to customize this (new)
    organizational data profil in your transaction
    "Foresite Opport." in the field -> Org. Data Pr.
    Best regards
    JK

  • How much is the cost for iPhone 4S screen replacement

    My one &amp; only very favourite iPhone 4S  was dropped unfortunately that's why it's screen is cracked but all other options are working as it was before even including any kind of touch options I mean  everywhere on screen also working as well like new:So please let me know  how much the cost will be to repair it.

    About £60, but the other option is to buy a screen from a popular internet based auction site, and fit it yourself using a video from a site such as You Tube.

  • How much is to get the iphone 4s screen fit

    hey My friend give me her iphone 4s but she reset it all before she give it to me so how much its cost to fix it the home screen? thanks you please write back . have a great day.

    Do you mean it's physically broken?
    If so, Apple does not repair them, they replace them. $199 for a 4S.

  • How to turn off Find My Iphone when screen is black?

    Hi all, I have an Iphone 4s and the screen has gone black. I have tried to restore thorugh itunes but i have to turn off Find my iphone through setting on my iphone before i can - but I can't.  I have tried deleting the account through icloud.com but that hasn't worked eitheir. Can any one help? Thanks

    According to Apple support, you cannot remove the phone on the device list under "find my iphone" until you turn it off and it goes offline.  (It also says the device will go back on "find my iphone" when it goes online again, which seems to mean you can successfully remove it, but as soon as you turn it back on it will be back on the list, and thus you will not be able to restore it.)  It's a bit of a conundrum.  In my case I couldn't for some reason turn off my phone  with the home/sleep buttons - nothing happens, the phone stays on.  While on a chat with Apple support, they got my iphone offline (I was able to turn it off by pressing the sleep button and swiping where the red "turn off iphone" arrow would have appeared) and removed it from "find my phone", but when I reconnected to itunes it turned on and reappeared in the "find my phone" list.  Luckily, the screen suddenly appeared (it had done this several times yesterday, just briefly), so I was able to turn off "find my device" from the phone.  I was then able to restore.  Unfortunately, this does not answer the question of how to remove the device from "find my iphone" and keep it off while connecting with itunes to restore (unless you have my good fortune of having the screen suddently reappear).  Apple support seemed puzzled that it had reappeared on the device list under "find my iphone".  Time will tell whether the restoration fixes the blank screen issue.

  • How to Change Clock Color on iPhone Lock Screen?

    I think this is possible but not sure but if it is, don't know how.
    I'd like to change the color of the numbers/text for the clock that appears on the lock screen of my iPhone 5 with iOS 7.  The white numbers and text don't show up very well with the image I have on the lock screen.
    I googled it and found a couple answers but they didn't seem to work for me.  Does anyone have a way to do this?
    Thanks

    No, you cannot change the color of the clock.

  • How to populate a Error message in WebUI Screen

    Dear Experts,
    I have a small issue in Lead creation screen. I need to restrict the followup document if the lead end date is lesser than the system date, if the end date lesser than the system date system should through a error message in web Ui Screen and the lead follow up creation should be stoped.
    We found an enhancement spot in backend(GUI) of lead creation we raised the error message in the backend screen. Here its working fine, But we are not able to get any error message in WebUI lead creation screen.
    We written the code in CREATE_ORDER Method of lead creation in GUI ( tcode : CRMD_ORDER). We tried to debug the program using external debuger from webui but its not getting triggered.
    Pls suggest me, how to raise a error message for WEBUI lead follow up creation validation.
    Kindly do the needful.
    Reg,
    Anandhan

    HI Anandhan,
    Try this way,
    This should work.
    lr_global_messages type ref to cl_crm_genil_global_mess_cont,
            lr_core                 type ref to cl_crm_bol_core,
      "Instantiate the error message class.
      lr_core = cl_crm_bol_core=>get_instance( ).
      if lr_core is bound.
        lr_global_messages ?= lr_core->get_global_message_cont( ).
      endif.
            if lr_global_messages is bound.
              call method lr_global_messages->add_message
                exporting
                  iv_msg_type       = lv_msg_type
                  iv_msg_id         = '
                  iv_msg_number     =
                  iv_show_only_once = 'X'
                  iv_msg_v1         =
                  iv_msg_v2         =
            endif.

Maybe you are looking for

  • HP Officejet 6600 phone / fax? issue

    I have had my officejet 6600 a couple of years now.  No issues until today.  I have ATT phones and internet.  Tagged my HP Officejet 6600 as the default printer today and somehow my telephone no longer works.  No dial tone.  The ATT tech came out and

  • How to handle the remote files in servlets

    Hi all, I want to handle the file remotely in a server side class file by giving the realtive path , let us say some thing like File f = new File("http://localhost:8080/images/"); here images is a directory, my requirement is to get all the image nam

  • Playing music from a video

    My friend has an ipod photo. The other day he bought a music video on itunes. He was wondering if there was a way to be able to play the music from the video on his ipod. Is it possible extract the music or covert the video into a suitable file forma

  • NW4, TREX 7.0

    May there be steps necessary for the Enterprise Portal (NW4) that is using TREX 7.0?

  • Need raw update for canon 7d mark II

    where can I download camera raw support for the canon 7d mark II?