Image files ok on PC but corrupt on iBook

Hi all, I have a lot of jpgs on my iBook, which I transferred to my PC using a portable HD. On my PC using Roxio, I burn these jpgs to DVD.
When I put the DVD in my iBook, I can see the little thumbnails of the jpgs but when I try to open it using Preview or Photoshop, it says "File Error. Couldn't open file. It may be corrupt or a file format Preview doesn't recognise".
Why is this happening and how can I fix it? I can't burn the jpgs using my iBook because I don't have a DVD writer.
Thank you so much!

I frequently transfer files between PC and iBook.
Couple things to look for.
Do your files on the iBook have the file extension .jpg in the filename?
Sometimes (depending on what OS you are using on the PC) this is necessary.
Also, rather than trying to open the file directly from the DVD - launch Photoshop and navigate to the DVD to open the file.
And lastly, when I have a really stubborn file, I usually find success by using MacLinks Plus. Drag the problem .jpg file to MacLinks Plus, open, and Save As Tiff file.
Open the Tiff File and Save As JPG. Takes a few minutes, but it works.
Hope this may be of some help.

Similar Messages

  • WDS Server 2012 R2 "The specified image file is either invalid or corrupted"

    Hi,
    I'm trying to setup a WDS in a 2012 R2 environment but I cannot add install image for x64 architecture.
    I've managed to add boot images from both x86 and x64 architecture and install image for Windows 8.1 x86.
    For everything else I receive the error message "The specified image file is either invalid or corrupted". The images used for setting up the install are 100% functional (I manualy installed the OS from them).
    I tried to unconfigure, reconfigure, reinstall role, install on another machine, everything without success.
    Thanks!

    Hi Costache Cristi,
    What account you are using when you meet this issue, please use the
     domain administrator permission account   to import image or please try give your image source everyone full control permission then monitor again, it seems is the permission issue.
    More information:
    Windows Deployment Services 101
    https://technet.microsoft.com/en-us/magazine/2008.08.desktopfiles.aspx
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Windows Deployment Services "the specified image file is either invalid or corrupted"

    I'm trying to add images to a virtual server running WS08 R2 but the only type of images that get accepted are the vista x86, nothing else works,
    I tried the following image files:
    windows server 2008 R2
    windows server 2008 x64
    windows 7 x64
    windows 7 x86
    windows vista x64
    and always the same error: "the specified image file is either invalid or corrupted"
    the machine configuration is as follows:
    Virtual machine on Hyper-V 2 (host is WS08 R2 Enterprise)
    2048 MB RAM
    25 GB free diskspace
    running these roles:
    AD
    DNS
    DHCP
    WDS
    hope someone can help

    Was a solution for this ever found?  I am experiencing the same issue with the following setup:
    I am having an issue with a virtualized Windows Server 2008 R2 Enterprise blue-screening any time I try and add an install image through the Windows Deployment Services mode.
    Server:
    Lenovo TD200x – 3822-43U
    Dual Intel Xeon E5530 CPU’s                                                                                                                                                                                               
    Installed Memory: 28.0 GB
    Two raid arrays.
                    Array 1 – 500 GB Mirror – hosting Windows 2008
    R2 Enterprise running Hyper-V
                    Array 2 – 1 TB RAID 10 – hosting Virtual Machines
    and Virtual Hard Disks
    We have the latest firmware update installed on this physical machine
    Our physical server is the Lenovo TD200x machine.  On it, we are running Windows Server 2008 R2 Enterprise
    Within Hyper-V, I am running a Windows Server 2008 R2 Enterprise domain.
    Virtual Server 1 is a domain controller running Windows Server 2008 R2.  It is configured with roles of: Active Directory Domain Services, DNS,
    and DHCP.
    Virtual Server 2 is a member server running Windows Server 2008 R2.  It is configured with the role of: Windows Deployment Services.
    The error is occurring on Virtual Server 2.  After everything is installed on this server, and it is setup as a domain member and has the Windows
    Deployment services role added, I go through and ad a Windows 7 boot image within Windows Deployment Services with no problem.  When I go through and try to add a Windows 7 install image, however, during the creation of that install image, the Virtual
    Server 2 pops up an error that reads:
    Error occurred while trying to execute command.
    Error Code: 0x80070002
    After this, the system will immediately blue-screen and reboot with a STOP 0x000000F4 Error
    I have tried using various Windows 7 DVD’s and even using the Windows 7 ISO file, mounting it as a drive.  All with the same results. 
    I have erased the virtual server and recreated it with the same results.  I have removed the entire domain and recreated both servers with the same results.
    I have setup the physical box as a Windows Server 2008 R2 domain controller and added the Windows Deployment Services role and did NOT have any problems
    going about it in that manner.  Therefore, the issue lies within running this in a Virtualized server within Hyper-V.

  • How use PHP to read image files from a folder and display them in Flex 3 tilelist.

    Hello. I need help on displaying images from a folder dynamically using PHP and display it on FLEX 3 TileList. Im currently able to read the image files from the folder but i don't know how to display them in the TileList. This is my current code
    PHP :
    PHP Code:
    <?php
    //Open images directory
    $imglist = '';
    $dir = dir("C:\Documents and Settings\april09mpsip\My Documents\Flex Builder 3\PHPTEST\src\Assets\images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "filename: " . $file . "\n";
    $dir->close();
    ?>
    FLEX 3 :
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="pic.send();">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.rpc.events.ResultEvent;
    public var image:Object;
    private function resultHandler(event:ResultEvent):void
    image = (event.result);
    ta1.text = String(event.result);
    private function faultHandler(event:FaultEvent):void
    ta1.text = "Fault Response from HTTPService call:\n ";
    ]]>
    </mx:Script>
    <mx:TileList x="31" y="22" initialize="init();" dataProvider = "{image}" width="630" height="149"/>
    <mx:String id="phpPicture">http://localhost/php/Picture.php</mx:String>
    <mx:HTTPService id="pic" url="{phpPicture}" method="POST"
    result="{resultHandler(event)}" fault="{faultHandler(event)}"/>
    <mx:TextArea x="136" y="325" width="182" height="221" id="ta1" editable="false"/>
    <mx:Label x="136" y="297" text="List of files in the folder" width="182" height="20" fontWeight="bold" fontSize="13"/>
    </mx:Application>
    Thanks. Need help as soon as possbile. URGENT.

    i have made some changes, in the php part too, and following is the resulting code( i tried it, and found that it works.):
    PHP Code:
    <?php
    echo '<?xml version="1.0" encoding="utf-8"?>';
    ?>
    <root>
    <images>
    <?php
    //Open images directory
    $dir = dir("images");
    //List files in images directory
    while (($file = $dir->read()) !== false)
    if (eregi("gif", $file) || eregi("jpg", $file) || eregi("png", $file))
    echo "<image>" . $file . "</image>"; // i expect you to use the relative path in $dir, not C:\..........
    //$dir->close();
    ?>
    </images>
    </root>
    Flex Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="callPHP();">
    <mx:Script>
    <![CDATA[
    import mx.rpc.http.HTTPService;
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.ItemClickEvent;
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable]
    private var arr:ArrayCollection = new ArrayCollection();
    private function callPHP():void
    var hs:HTTPService = new HTTPService();
    hs.url = 'Picture.php';
    hs.addEventListener( ResultEvent.RESULT, resultHandler );
    hs.addEventListener( FaultEvent.FAULT, faultHandler )
    hs.send();
    private function resultHandler( event:ResultEvent ):void
    arr = event.result.root.images.image as ArrayCollection;
    private function faultHandler( event:FaultEvent ):void
    Alert.show( "Fault Response from HTTPService call:\n " );
    ]]>
    </mx:Script>
    <mx:TileList id="tilelist"
    dataProvider="{arr}">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Image source="images/{data}" />
    </mx:Component>
    </mx:itemRenderer>
    </mx:TileList>
    </mx:Application>

  • Uploading image file using tcode se78  occuring some   Error

    Hai Gurus
          I am uploading image file using tcode se78 but while Uploading it giving some error i cant resolve the problem so any one help me plz
    Error    "Graphic LOGO could not be saved (2LOGO)"
    Regards
    Selvendran

    Hai
    Thanks
    I had done in all method but i can't save it 
    error is coming ..so plz help me to upload the image
    Error "Graphic LOGO could not be saved (2LOGO)"
    Regards
    Selvendran

  • Cannot unzip the image file from Sun

    I have downloaded the first compressed install CD image file from Sun. But it cannot be unzip. I used almost all of the unzip software(such as Winzip, WinRAR, PKUNZIP for DOS and for Windows).
    Anybody can help me?

    OK! I downloaded for the 5th time without using GetRight and I can now unzip the file in question. For some reason GetRight chokes on this zip file only. All of the other images were downloaded using GetRight and they unzipped just fine. Go figure...
    My reccomendation to anyone else using a download tool like GetRight and having the same problem is to disabled the tool temporarily and just do a normal download through your browser.
    Hope someone finds this useful.
    Bob C.
    Make that another ditto!!! I have downloaded the
    first CD image for x86 Solaris 4 times now. Each time
    the download has succeeded without error, but I can
    not open the zip file. I have been using GetRight 4.3
    to do the download rather than straight FTP or HTTP so
    maybe this is the issue, but I have never had a
    problem using this tool before.
    Help anyone!?!?!?!
    Bob C

  • Importing images from my personal image files

    I don't like or use iPhoto (I use CS2), so when I put an image into keynote I have to make a table with a single cel, and choose from my hard drive image files and that works, but if I just ask to place an image using "media" the icon at the top of the page, it only gives me an iPhoto, iTunes or movies option option. How can I use it to give me my finder choices of image files.
    Am I doing something wrong?
    Mike
    http://www.mikeadams.org

    the Media palette only works for iPhoto. You can, however, simply drag images from the finder into Keynote. You can also use the Insert>Choose function from the menu bar at the top to choose an image, you don't need to make a table cell.

  • How to convert a Image to an image file...

    Hi,
    I load an image file in my application and I am trying to run it through a filter and save it without modification.
    So this leaves me with an Image object, which I would generally assume is easy to convert to a saved image file... But its not. It seems I need a RenderedImage to do this so I created this function
    public static RenderedImage convertToRenderedImage(Image img,
                  int wid, int ht, int type){
    BufferedImage bi = new BufferedImage(wid, ht, type);
    Graphics2D g2d = bi.createGraphics();
    g2d.drawImage(img, 0,0,wid, ht, null);
    return bi;
    }which actually leaves me with an image without content... it appears to be all background color, and no foreground text.
    any ideas on how to make an Image into a saved Image file?

    ImageIO.write?

  • Attempting to upgrade to Firefox 3.6 (using an ancient Mac OS 10.3), but received an error message (corrupt image file) when downloading - any way to correct this with my current OS?

    I'm currently trying to update a few programs on my good old (VERY old) Mac Powerbook, but I ran into an error when downloading Firefox version 3.6...I'm currently running Mac OS X 10.3.9, which isn't compatible with the most recent versions of Firefox (or anything, for that matter), but it should still allow an upgrade of version 3.6; however, once the file finished downloading, an error message popped up indicating there's a corrupt image file. Is there any way to work around/correct this problem, or am I stuck with my old version of Firefox until I bite the bullet and upgrade my OS??? Any help is greatly appreciated!!

    Firefox 3.6 requires at least OS X 10.4, the last version of Firefox that runs on OS X 10.3.9 is Firefox 2.0.0.20 available from https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/mac/en-US/

  • IWeb site update problem-app missing images/files, but site is ok

    I created and uploaded a web site to my .mac (yeah, MobileMe) and it displays just fine. I have visited it from a couple of different comps. The problem is that I want to add/update files/pages, but when I open iWeb, several of the images/audio files do not display: shows a x-through and a centered question mark. They are in the sites idisk folder and in the laptop's copy of the files. When I try to replace the missing images/files by dragging onto the iWeb drafting page the following message appears: "the file can't be used because you don't have access privileges, or because it contains no content or was corrupted."
    I'm afraid to make any updates for fear of losing what is already published.
    Extra info: have family pack and am switching between .mac accounts because iWeb published to the iDisk corresponding to the account/sub-account you are logged into (BIG pain in the ***! It should have a password protected account toggle like Panther used). I have double-checked that the files for this site are only in the one iDisk account (am redirecting my masked domain url to the .mac iDisk server-works great.
    Any ideas?

    The upgrade from '06 to '08 which changed the domain.sites to a domain.sites2 caused more confusion, disasters and lost web sites than the bug ridden introduction of '09.
    I ended up rebuilding all my sites from new, blank domain files in '08 and the conversion to '09 went OK apart from '09's nasty habit of changing media file links.
    Fortunately, I have very little QuickTime content and don't use the iWeb Photos, Albums Blog or Podcast templates.
    Most iWeb built sites look pretty awful when users stick to the default page width. I start from a Blank, Black or white page and trash everything on it.
    I use the "standard" 980 px page width and most, if not all, of the iWeb themes do not adapt to this.
    This is why I constantly ask the question. "Do the iWeb developers actually build any websites with the application?".
    Perhaps if they did, we would get more bug free releases and some of the features that "real life" users are requesting.

  • Corrupt image files cause upgraded iPhoto to crash

    I have been spending some time trying to find and remove corrupt image files from my iPhoto library. These are not just scrambled images when viewed they crash any and every program you view them with. Including Finder. I accidentally put one on my desktop and finder went into a auto restart cycle I could not stop. until I removed the file with pathfinder. I have found about 30 of these so far (my library is about 25,000) Many of these are in the data file but some are not. They are of all types (jpg,tiff,psd) Thorsten Lemke, (Lemke Software) tells me it is a quicktime issue.
    Here is a link to one of these files. Warning it will crash safari if you try o view it.
    http://vincentdavis.net/try/try.jpg
    Here are my questions.
    1. is there some way to fix these
    2. is there some efficient way to find and remove/fix them?
    3. how did this happen? I had no problem before update (that I knew of)
    Thanks
    Vincent

    I did try the link, and as you said - it crashed Safari. However, I have google searched and also searched the Apple Support sites for 'fix corrupt images' with no luck. I'm sorry but I think the only way of knowing is to try and open each of them.
    However, I did read on Macworld's site once that sometimes photoshop or other image editing programs can open the corrupt files.
    Sorry for not being much help here - I hoped that my first suggestion would have done the trick.
    Sam

  • LR5 "move" corrupting image files

    I recently used LR5 to move image files from an old hard drive to a new hard drive. I formatted the new hard drive prior to moving the images onto it.
    Instead of the “copy” or “add” function, I used the “move” function, only to find that a fraction of my images were moved to the new hard drive.
    When I opened the image folders on the new hard drive (they do not exist anymore on the old hard drive since LR physically “moved” the files), it appeared all of the images were there. But when I used PhotoMechanic and Bridge to view the images that weren’t appearing in LR, I was horrified to see both RAW and JPEG files were corrupted (banding, discoloration).
    The files come from a really important project I have been working on since May, and now I am terrified to use LR at all in the event the program corrupts my files again.
    Interestingly, when I open the images on Adobe Bridge and click "purge cache for selection", the thumbnail briefly appears normal, then returns to the corrupted preview. 
    Has anyone experienced anything like this, and is there any way to save my files? I fear I have totally lost faith in LR.

    As Jim and Rikk said, the corruption and maybe the lost files is probably a hardware failure.   As far as the lost files, there are reports on the forum every couple of months where people lose files doing a MOVE on import or MOVE in LR of imported files from ONE PHYSICAL DRIVE TO A DIFFERENT PHYSICAL DRIVE.  Moving files on the same drive seems to be OK.  I don't know if this is an obscure bug that shows up because of permissions or something but it has been reported.

  • NSS6000 "Firmware Update Error: The firmware image file is corrupt."

    Hello All,
    I've recently run into a problem trying to update the firmware on our NSS6000 to either 1.20.1 or 1.21.0.  We are currently running 1.16-3.
    Each time after I click "Upgrade Firmware", the upgrade fails with the same error:  "Firmware Update Error: The firmware image file is corrupt.  Obtain another copy of the file and try the firmware upgrade again".
    I've tried re-downloading the NSS6000_FW_1.20.1.tar.gz and NSS6000_FW_1.21.0.tar.gz several times from multiple PCs, and using multiple browsers.  I've tried several combinations of Windows Server 2003R2, Windows Server 2008R2, Windows 7, and Firefox, Chrome, and IE 8/9.
    The downloads all appear to be fine, and they all can open/extract with 7-zip without issue.  The file sizes are always the same.
    No combination of OS/Browser yields a different result on the upgrade attempt either.
    I tried renaming NSS6000_FW_1.21.0.tar.gz to NSS6000_fwupgrade_0121.tar.gz to match the convention used in early versions (thinking that the extra "."'s could be the issue) but no luck either.
    I was able to successfully re-apply the NSS6000_fwupgrade_0116.tar.gz firmware without any issues at all.
    A strange thing I noticed, though, was on the "The system will reboot now. Please close your browser." window, it shows the device as an "NSS2000 2-Bay Gigabit Network Storage System" (please see attached screenshot).  I'm chalking that up to a simple reusing-the-same-web-code issue rather than the root of the problem, but thought I should mention that as well.
    Has anyone else run into this issue, or have any suggestions for workarounds in order to successfully upgrade the FW on this device?  Thanks in advance for any suggestions.

    Hi,
    Not sure what is going on i haven't see the issue you are having, can you try downloading both images at a different location; instead of behind your router. Also upgrade to .20 and then .21. Im pasting the release notes upgrades step.
    When upgrading the firmware from v1.12 to v1.14, v1.12 to v1.20.1, or v1.12 to
    v1.21.0 the Configuration GUI displays a "Programming images.." message
    for more than 12 minutes (the time it takes to upgrade the firmware is
    usually 5 to 10 minutes).
    The workaround is to wait at least 15 minutes to complete the upgrade and
    then power cycle the NSS by removing the power cord. Do not try and
    access the Configuration GUI during this time. (CSCsx17923) When upgrading the firmware from v1.12 to v1.14, v1.12 to v1.20.1, or v1.12 to
    v1.21.0 the Configuration GUI displays a "Programming images.." message
    for more than 12 minutes (the time it takes to upgrade the firmware is
    usually 5 to 10 minutes).
    The workaround is to wait at least 15 minutes to complete the upgrade and
    then power cycle the NSS by removing the power cord. Do not try and
    access the Configuration GUI during this time. (CSCsx17923)
    If this don't help you might have to give us a call @ 1-866-606-1866 and open a support case.
    Thanks,
    Jasbryan
    Cisco Support Engineer

  • Image file corruption - please help

    I am running a 15" powerbook using 756 mb ram on OS 10.3.9
    This configuration has been the same since I bought it 18 month ago
    The last couple of weeks I've been having problems with corrupt appearing on the hard drive. It is not every file but there is no way of predicting it.
    I have tried different ways of transfering the images (firewire and usb). I have tried different flash cards and also transfered the same images to different folders and then I find different images are corrupted. I have tried viewing the images with different software - they still corrupt. I have tried different formats for the images (jpeg & raw) still the same. Sometimes the thumbnails look ok and the main file goes wrong, sometimes the thumbnail looks wrong and the main file is ok!
    One is posted here http://i71.photobucket.com/albums/i129/spud159/DPP07D6051E142831.jpg

    Hi Spud159,
    There are various factors which can cause corruption such as this. Here are a few trouble shooting steps I suggest you perform.
    First, pop the original install DVD in the drive and by pressing the OPTION key during boot enter the diagnostic mode. Perform a full hardware diagnostic test. This way you can check your hard drive, ram and logic board. It may catch an error.
    You have a non-standard ram configuration so I'm guessing you added more ram manually. Remove this ram, boot up using the stock configuration and see if the same happens.
    If you continue to see the corruption and none of the above have shown a fault in the hardware, a re-installation of OS X is in order. Before doing that however, add another user to your computer and try opening images using that new account. If that does not have any affect, format and re-install OS X using the supplied install DVD.
    If the problem persists even then, contact your nearest AASP and ask them to have a look at it.
    Good luck!

  • I want to edit my raw images on cs5 photoshop.  But when I go to open the .CR2 file it says  '' Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw. Please visit

    I want to edit my raw images on cs5 photoshop.  But when I go to open the .CR2 file it says 
    '' Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw. Please visit the Camera Raw help documentation for additional information.  '' 
    When I go to updates in photoshop help i try to update photoshop and photoshop camera raw but it then says 
    '' Updates could not be applied the error log file may help you in identifying the problem. Then, try updating again. If the problems persist, contact customer support for further assistance. 
    Photoshop Camera Raw 8.7.1(CS6) There was an error installing this update. Please quit and try again later. Error Code: U44M1I216 ''  
    I dont know how to get around this please help

    CR2 files from which Canon camera?
    Supported cameras are listed here
    Camera Raw plug-in | Supported cameras

Maybe you are looking for

  • Which Account to Use for Family Sharing?

    After reading the issues of being locked out, I am a bit apprehensive to set up the account. Here's my scenario: Husband & Wife accounts want family sharing Husband as owner - using @me.com Apple ID AND @gmail.com iTunes account (or in settings 'Fami

  • How to insert  value in  UserDefine MasterData  table ?

    dear  all ,         I have added a userdefine table ABC and   columns (Code,Name,DocEntry,Object,U_Code,U_Name).          I  want to insert value in ABC table .i can't understand  how to assign 'DocEntry'  column value i am using            SAPbobsCO

  • N95 WLAN Browsing Costs and Packet Data

    I have recently purchased an N95 and am accessing the Internet via my home Wireless Network provided by Virgin Media instead of using the standard Access Point provided by the Mobile Operator i.e. Orange Internet - by doing this, I assume I would inc

  • My mac won't login

    ok I can't get into my emac, i turn it on, and i login- have 2 accounts and am unable to get in using either one!?! any help?? it loads my background and then won't go any further in, (just shows the spinning coloured mouse curser) I can use/move the

  • OSB: cluster creation script fails to delete migratable targets

    Hi, I am working on a wslt script which creates an OSB domain with a cluster with one admin server and two managed servers. In this script, after adding the OSB required templates, I would like to delete the migratable targets created by the template