JPG Image Icons imported from OS 9.1 stay tiny in OS 10.4.8 finder windows

The icons of nearly ten thousand jpg images that I transferred via AppleTalk from my old PowerPC (OS 9.1) to my new iMac (OS 10.4.8) appear tiny in finder windows. [The problem seems to be unique to jpg image files, since other transfered items, such as folders, documents, and tiff image icons, behave normally on the new system.]
I have no problem with new images that have been created or saved on the iMac; they behave properly, adjusting from 16x16 to 128x128. However, all old (transferred) images in the same finder window remain tiny, no matter how I adjust the settings in View > Show View Options.
I have discovered an unsatisfactory, tedious, image-by-image workaround. By opening a single old image and chosing "Save As…" I can save the image as a new jpg; then the icon will behave like other newly created images. Unfortunately, once the image is newly saved, I lose important data about the original image, such as Date Created.
How can I "update" the old jpg image icons (transferred from OS 9.1 via AppleTalk) so they will behave like the newer icons, without losing old image data and having to resave the images one by one?
iMac 2GHz Intel Core Duo   Mac OS X (10.4.8)   (previously, PowerPC 8500/120, OS 9.1)

you need to trash the current version of IPhoto, just the application, leave all libraries intact, throw te iPhoto into the trash and up date, it wil ask you after install what libraries you want to install. Your choice, latsest is always my chioce. Do all the iPhoto updates before this step, as the download could have been corrupted. Hapened to me on my wifes nachine 10.7.3., which would have been certain death for me. After the re-install it will ask you which library to install, I always pick the latest, but you can put in others  as well.
Good luck, because if I lost those files, I'd be pushing uo Daisys about now.
There might be someone who knows a better wat too do this, and there is software to help ypu recover your data.(Data Resue, ClamEx)
Hope tuis helps

Similar Messages

  • I recently switched to Aperture. When I opened an image I imported from iPhoto, I don't have an option to edit it. Top of "Adjustments" tab says "image offline". How can I adjust Aperture so I can make adjustment to my iPhoto images?

    I recently switched to Aperture. When I opened an image I imported from iPhoto, I don't have an option to edit it. Top of "Adjustments" tab says "image offline". How can I adjust Aperture so I can make adjustment to my iPhoto images?

    I never tried importing from the iPhoto library as referenced images. I wonder if Aperture can access images stored in an iPhoto library package?  Even if it would work, it sounds like a bad thing to do.
    You might consider starting over and this time have Aperture manage the images.  That will copy them to the Aperture library, leaving the iPhoto library untouched. This assumes you have sufficient space to make a complete copy of all the images in your iPhoto library plus another copy of each image that Aperture makes as the preview image. You can then back up your iPhoto library (two backup copies, just to be sure) then remove it from your hard drive when you start getting too low on space.  As I write this I don't know where your iPhoto or Aperture libraries are/will be located so I'm assuming you have them on your HD.

  • How to convert JPG image to BMP ? (Printing jpg images in smartforms from content server)

    Hi,
    We have employee photos(JPG Format) stored in Content server. And now we want to print the photos in smartforms. For this I had written the below code to read the photo from content server in binary format as below.
    REPORT ZTEST1.
    PARAMETERS P_PERNR TYPE PERNR_D.
    DATA: PS_CONNECT_INFO TYPE TOAV0,
          IT_BINARY TYPE TABLE OF SDOKCNTBIN.
    CALL FUNCTION 'HR_IMAGE_EXISTS'
      EXPORTING
        P_PERNR                     = P_PERNR
    *   P_TCLAS                     = 'A'
    *   P_BEGDA                     = '18000101'
    *   P_ENDDA                     = '99991231'
    IMPORTING
    *   P_EXISTS                    =
       P_CONNECT_INFO              = PS_CONNECT_INFO
    * EXCEPTIONS
    * ERROR_CONNECTIONTABLE       = 1
    *   OTHERS                      = 2
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF PS_CONNECT_INFO IS NOT INITIAL.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
       STOR_CAT                    = SPACE
       CREP_ID                     = PS_CONNECT_INFO-ARCHIV_ID
          DOC_ID                      = PS_CONNECT_INFO-ARC_DOC_ID
    *   PHIO_ID                     =
    *   SIGNATURE                   = 'X'
    *   SECURITY                    = ' '
    *   NO_CACHE                    = ' '
    *   RAW_MODE                    = ' '
    * IMPORTING
    *   FROM_CACHE                  =
    *   CREA_TIME                   =
    *   CREA_DATE                   =
    *   CHNG_TIME                   =
    *   CHNG_DATE                   =
    *   STATUS                      =
    *   DOC_PROT                    =
    TABLES
    *   ACCESS_INFO                 =
    *   CONTENT_TXT                 =
       CONTENT_BIN                 = IT_BINARY
    * EXCEPTIONS
    * BAD_STORAGE_TYPE            = 1
    *   BAD_REQUEST                 = 2
    *   UNAUTHORIZED                = 3
    * COMP_NOT_FOUND              = 4
    *   NOT_FOUND                   = 5
    *   FORBIDDEN                   = 6
    *   CONFLICT                    = 7
    * INTERNAL_SERVER_ERROR       = 8
    *   ERROR_HTTP                  = 9
    * ERROR_SIGNATURE             = 10
    *   ERROR_CONFIG                = 11
    *   ERROR_FORMAT                = 12
    * ERROR_PARAMETER             = 13
    *   ERROR                       = 14
    *   OTHERS                      = 15
      IF SY-SUBRC <> 0.
    * Implement suitable error handling here
      ENDIF.
    ENDIF
    Now the issue is I want to convert that binary data to bitmap image and upload the same in to SE78. So that I can use that BMP image from SE78 in my smartforms.
    I had used the class CL_IGS_IMAGE_CONVERTER to covert the image into bmp but it is giving error that error in IMAGE DATA CORRUPT & Error Code 3. The conversion code used is as below.
    ******* CONVERT THE JPG IMAGE INTO BMP PHOTO. **********
      DATA: L_IGS_IMGCONV TYPE REF TO CL_IGS_IMAGE_CONVERTER,
    L_IMG_BLOB    TYPE W3MIMETABTYPE,
    L_IMG_SIZE    TYPE W3PARAM-CONT_LEN,
    L_IMG_TYPE    TYPE W3PARAM-CONT_TYPE,
             L_IMG_SUBTYPE TYPE W3PARAM-CONT_TYPE,
    L_IMG_URL     TYPE W3URL,
    L_ERR_CODE    TYPE I,
    L_ERR_TEXT    TYPE STRING,
             P_DEST TYPE CHAR32 VALUE 'IGS_RFC_DEST'.
      DATA: G_IMG_BLOB     TYPE W3MIMETABTYPE,
          G_IMG_TYPE     TYPE W3PARAM-CONT_TYPE,
          G_IMG_SIZE     TYPE W3PARAM-CONT_LEN.
      IF NOT IT_BINARY[] IS INITIAL.
        G_IMG_BLOB[] = IT_BINARY.
        CREATE OBJECT L_IGS_IMGCONV
          EXPORTING
            DESTINATION = P_DEST.
        CALL METHOD L_IGS_IMGCONV->SET_IMAGE
          EXPORTING
            BLOB      = G_IMG_BLOB
            BLOB_SIZE = G_IMG_SIZE.
        CASE PS_CONNECT_INFO-RESERVE.
          WHEN 'TIF'.
            G_IMG_TYPE = 'image/tiff'.
          WHEN 'JPG'.
            G_IMG_TYPE = 'image/jpeg'.
          WHEN 'PNG'.
            G_IMG_TYPE = 'image/png'.
          WHEN 'GIF'.
            G_IMG_TYPE = 'image/gif'.
          WHEN 'BMP'.
            G_IMG_TYPE = 'image/x-ms-bmp'.
          WHEN OTHERS.
            EXIT.
        ENDCASE.
    L_IGS_IMGCONV->INPUT  = G_IMG_TYPE.
        L_IGS_IMGCONV->OUTPUT = 'image/x-ms-bmp'.
    *    PERFORM GET_SIZE USING PICTURE_CONTAINER
    * L_IGS_IMGCONV->WIDTH
    * L_IGS_IMGCONV->HEIGHT.
        CALL METHOD L_IGS_IMGCONV->EXECUTE
          EXCEPTIONS
            OTHERS = 1.
        IF SY-SUBRC IS INITIAL.
          CALL METHOD L_IGS_IMGCONV->GET_IMAGE
            IMPORTING
              BLOB      = L_IMG_BLOB
              BLOB_SIZE = L_IMG_SIZE
              BLOB_TYPE = L_IMG_TYPE.
          SPLIT L_IMG_TYPE AT '/' INTO L_IMG_TYPE L_IMG_SUBTYPE.
        ELSE.
          CALL METHOD L_IGS_IMGCONV->GET_ERROR
            IMPORTING
              NUMBER  = L_ERR_CODE
              MESSAGE = L_ERR_TEXT.
          BREAK-POINT.
        ENDIF.
      ENDIF.
    ENDIF.
    So could you please some one help me how to convert JPEG Photo to BMP programatically.
    Regards,
    Mayur.

    johnandersonpalmdesert wrote:
    My printer is requesting a vector file.
    Jpeg File format does not support vectors.  Photoshop has limited vector support and tools.  Photoshop can not save vector file formats like SVG.  What File type does your printer want?
    Adobe Illustrator is Adobe vector application.

  • Images not importing from Word doc

    SORRY MODS - Accidently posted this in the HTML Help forum
    I'm having trouble getting my images placed in a Word
    document to import ito my project. I have RoboHelp 2002 and first
    experienced the problem there, thought I'd try the upgrade to see
    if that fixes the problem. It did fix my step numbering problems
    (all steps were numbered Step 1), but the image import problem
    remains. The images are .jpg images and most were placed in Word
    using Insert Image. Some were just copied and pasted. Regardess of
    how the images were included in the doc, none come through in an
    import. Am I doing somethig wrong? I've tried importing it as a
    Word 2000 and a Word 2003 doc with no luck.
    Thanks in advance for any advice!
    Mike

    I had the same issue and could get no good advice on how to
    fix it. What I finally did was take the embedded images from the
    Word doc and save them in another location. I then inserted them
    back into RoboHelp after I imported the Word doc. It's a little
    tedious, but it worked.

  • Does anybody know why I get doubles of every image I import from iPhoto 11 to Aperture?

    With the upcoming demise of the MobileMe Galleries, I'm making lots of changes to how photos are organized. I'm moving the galleries to a new host. But, I want to pull most of the events, etc from iPhoto 11 to Aperture. iPhoto 11 has been a nightmare to me, and I just want to be done with it. I find that when I import albums from iPhoto to Aperture, I'm getting doubles of every single image. I've set Aperture not to import duplicates, and messed around in other ways, but it's still requiring a LOT of time to delete all these duplicates. Anybody have an idea to fix this?

    There's nothing broken and nothing to be fixed. When you migrate from iPhoto to Aperture it imports all the versions - Masters and previews - to the Aperture Library. This is so your migration is lossless.
    When you import from iPhoto to Aperture you'll note the versions are tagged 'iPhoto original', 'iPhoto edited' etc so this means it's simple to find the versions in Aperture and delete the ones you might not want.
    Regards
    TD

  • Problems applying metadata to images when importing from device

    When importing images from a device into lightroom 2 I have created and selected a metadata template in the information to apply section, but when importing the images to the lightroom library it does not apply the metadata to the images. Can anyone help?

    You mean you're importing directly from an USB-attached camera?
    If you import from a card reader, do the templates apply?

  • Downsized images when imported from Aperture

    The latest batch if images I imported into iPhoto from Aperture were somehow downsized to half the size, ie from 3888x2592 to 1944x1296.  In other words, cut in half.  This has never happened before.  Previously, the iPhoto image had the same dimensions as the image in Aperture.  Would this have something to do with Lion?  I need images with over 3000 pixels on at least one side to sell them.  Thanks.  Larryt

    How did you "import into iPhoto from Aperture"?
    If you're using the media browser (File -> Show Aperture Library) then what you're getting are you Aperture Previews. The size of these is set in your Aperture Preferences.
    If you exported from Aperture then the export preset you used in Aperture is what defines the size of the image.
    So, no, this has nothing to do with Lion and only to do with the settings you are using in Aperture.
    I can't help but wonder though, why you are using iPhoto at all, if you use Aperture. Is this complexity necessary?

  • Can't drop files from Downloads or Documents folder on the dock to any other Finder window

    I have been downloading some files and dragging/dropping them into another folder for the last 30 minutes or so. They're downloading to the default Downloads folder, and then I've been dragging them from that folder in the Dock, which opens like a fan, and dropping them into another folder (my Documents folder) in an open Finder window.
    All of a sudden, I can't drop files from the Downloads fan anywhere else. I also tested, and can't drop files from my Documents folder or my Screenshots folder, two other folders that are on the right side of my dock and open up like a fan.
    I can drag them, but when I hover over the folder that I want to drop them into, nothing happens. If I let go, they just stay in their original folder (the Downloads folder).
    So basically something happened with the folders on the right side of the dock that's not letting me drop the files anywhere else from the Dock. If I open the folders in their own Finder window, I can drag/drop just fine. It just won't let me do it from the Dock as I had been.
    Any ideas? I've tried restarting as well as sleeping/waking as I saw recommended on here, but no luck.

    Open Finder, press Option key, select Go > Library, open Preferences, delete com.apple.dock.plist and reboot

  • IPhoto '09 won't recognize .jpg images for importing.

    The resulting pop-up window displays the otherwise normal images as Unix Executable Files. If I convert the .jpg to .jpg 2000, then it imports with no problems. Result is a MUCH larger file. Any fixes?

    Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If the above doesn't help try the following:
    1 - download Convert to JPG and Embed sRGB profile from  Toad's Cellar and drop copies of your problem files on it.  Then try importing the new jpegs that are created.
    OT

  • Pixelated Images when Importing from SD Card

    Hi there,
    Im having a recurring issue when importing images from my SD Card.
    The issue is that when I try to view in the 'Loupe' view, the images don't load at full size, the '1:1' is absolutely tiny?
    Any ideas??
    Thank you.

    Yeah, the black bars at the top and bottom of the tiny preview indicate it is a camera thumbnail, not a large-sized preview embedded in the raw file.  Without seeing the raw file, itself, it’s hard to know if there is actually a reasonable-sized preview embedded in it or just the tiny thumbnail.  If you want someone else to take a look, upload a raw file to http://www.dropbox.com/ and post a public download link to it, here.
    And more importantly, as was just asked, does the image import ok.  If so then you’ll just have to do the importing, first, before you sort through what you want.

  • Can't delete images when importing from camera

    I use Nikon Transfer to import images from my digital cameras but now I can't delete the images from the card once transferred. I've also tried Image capture but Delte is greyed out. It seems like a Permissions thing but I'm not sure how to check.
    thanks

    What he says is +"you want the image being shown to be exactly sized to your screen. Images from almost all modern cameras are much larger in pixel dimensions than your Mac's display, so they will be interpolated down to fit. When they are resized on the fly through interpolation they never look as crisp or pristine."+
    The title of the piece is +"Resize Images for iPhoto Slideshows".+ He is talking about you resizing photos before you import so they will match the screen size during the display of a slide show on the screen - not iPhoto changing anything during the import of the photo but during the display of it - This is a bit like the cropping during printing questions - if you want to control exactly have is being shown (or printed) rather than use a generalized scheme to make photos fit a non native size then you much do the changes yourself
    I'm sure that he is correct but since I use iPhoto as a photo library manager which lets me show quick and easy slideshows, I have no problem - *my original, unaltered photos are there in iPhoto* and available for use as I see fit - the degree of modification that takes place in the display of a slideshow has never even been noticeable to me - but then I do not see iPhoto as a single purpose slide show viewer - in fact that is a very minor feature for me
    LN
    Message was edited by: LarryHN

  • Does iPhoto alter images when importing from camera ?(+ tip for slideshow)

    I came across the following article:
    http://www.andrewburke.orconhosting.net.nz/mac/builtin.htm#photo
    The claim here is that during import iPhoto alters images in some way. The iPhoto experts, Terence OldToad, LarryHN and others, could you please comment, what's your opinions on this ?
    Resize Images for iPhoto Slideshows
    If you are running a slideshow in either Preview or iPhoto, you want the image being shown to be exactly sized to your screen. Images from almost all modern cameras are much larger in pixel dimensions than your Mac's display, so they will be interpolated down to fit. When they are resized on the fly through interpolation they never look as crisp or pristine.
    When I import images from my Nikon to the Mac, I keep them outside of iPhoto and at their original size, as an archive from which I might eventually produce some prints. From there I choose the best examples that I want to display onscreen and copy those out of the archive for processing. Each one of those favorites that I've chosen is then tweaked in an image editor (I use Gimp Shop) and the final step before sharpening is to resize it down to match the dimensions of my display.
    My iMac is 1440 by 900, so if an image is narrower than that ratio I scale it so the height is exactly 900; if it's wider I scale it so the width is exactly 1440. After these tweaked and resized images are finished I import only those into iPhoto. Then when I run a slideshow they are displayed exactly at their original size (not stretched or shrunk to fit the screen) and the difference is stunning.

    What he says is +"you want the image being shown to be exactly sized to your screen. Images from almost all modern cameras are much larger in pixel dimensions than your Mac's display, so they will be interpolated down to fit. When they are resized on the fly through interpolation they never look as crisp or pristine."+
    The title of the piece is +"Resize Images for iPhoto Slideshows".+ He is talking about you resizing photos before you import so they will match the screen size during the display of a slide show on the screen - not iPhoto changing anything during the import of the photo but during the display of it - This is a bit like the cropping during printing questions - if you want to control exactly have is being shown (or printed) rather than use a generalized scheme to make photos fit a non native size then you much do the changes yourself
    I'm sure that he is correct but since I use iPhoto as a photo library manager which lets me show quick and easy slideshows, I have no problem - *my original, unaltered photos are there in iPhoto* and available for use as I see fit - the degree of modification that takes place in the display of a slideshow has never even been noticeable to me - but then I do not see iPhoto as a single purpose slide show viewer - in fact that is a very minor feature for me
    LN
    Message was edited by: LarryHN

  • Image icons missing from ADF faces selectManyShuttle?

    Hi all, I'm using <af:selectManyShuttle and it works great, but I noticed it looks a lot different from the examples on
    http://www.oracle.com/technology/products/jdev/101/howtos/adfskins/index.html
    (all I get is text, no cool images)
    Also the ADF faces example apps don't seem to display icons either. Have I missed something?
    There are files like images/oracle/smvall.gif inside adf-faces-impl-ea20-SNAPSHOT.jar but they don't appear to be used at all. Any help much appreciated.
    Regards, Murray

    I'm having a similar problem: some images show up with the selecManyShuttle, but others do not.
    Also, when I add a leadingHeader and/or a trailingHeader, the text is displayed twice. Once in the correct position, and once after each list.

  • Why do I get two images when importing from i-photo into aperture

    Guys
    I am a new convert to Mac's and am a keen amateur photographer ,I have transfered my photo library from my old pc into i-photo initially which worked fine and for my photo editing package I have loaded up aperture 3.When I transfer RAW photos from I-photo library into Aperture I end up with two raw images of the same photo one is called 'i-photo original raw' and the other ' i-photo edited raw ' I think I am probably missing a trick somewhere but am worried I will rapidly fill up file space with all these raw images.

    When you import a Raw to iPhoto it automatically makes a jpeg Preview of the shot. Why? Because you can't do anything with Raw - can't print it, share it online, use it in other apps etc. So to allow you to use the file immediately the Preview is available. That's the second file you're getting.
    You're not trying to use iPhoto and Aperture together are you? It's a waste of time and a cause of some frustration. Aperture is a complete replacement for iphoto, and you're really better off picking one horse to ride and forget about the other. Like iphoto, Aperture is a Photo Manager and post processor - but rather more powerful. Both apps are database driven. Aperture is not an "editing package".
    If you do opt to stay with iPhoto then use an editor like Photoshop, Elements, Acorn, Pixelmator etc as your editng package.
    Regards
    TD

  • Underlines of image layers imported from PSD

    The above image is the layers panel in Illustrator of a placed PSD file that was imported with the layers maintained.
    What do the dotted underlines for the two layers mean? Do they just mean they are layers or something else?
    There were layer masks on those layers in Photoshop, but they were applied to the image so there is a transparency around the image.
    I understand what has happened to the image, I just don't understand what the dotted lines are supposed to signify.

    Opacity masks.
    See Transparency palette.

Maybe you are looking for

  • Multiple iCloud account on a Mac?!

    Hi and tnxs for reading. I notice there is a post with the same subject but the core is different. I just got an iOS device for mu job with a personal (company related) apple id and iCloud mail account. I got my new personal apple.id and pwd. I would

  • Adobe Creative Cloud App does not show downloaded apps and shows "download error"

    I am not a full paying member just yet, and have been using Photoshop on trial for my graphic design courses. With the app, instead of showing me that my 30 day trial is over, I get a download error and contact customer support message. I have comple

  • Run_report_object error in 6i, help!

    hi, original code used to run the report: Run_Product(REPORTS, report_name, SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL); changed to:       repid := find_report_object('report_name'); set_report_object_property(repid,report_comm_mode,SYNCHRONOUS);

  • Help! - Can't sinc Outlook Calendar after upgrading to Desktop Mgr 4.7

    My 8830 World Edition was syncing perfectly to Outlook Calendar 2007 while I was using Desktop Manager 4.2.2.14 on my Vista laptop. However, I downloaded the current version of Desktop Manager, 4.7, and now can not sync to calendar. Now when I try to

  • Detecting when a file is accessed

    Hello all! This is my first time on these forums, so please be kind. And let me know if there is a better place to post this question or a better way to find the answer, because I know you all are being very kind by answering Q's here, and I wouldn't