Reading a mac picture CD on a PC

I wish to transfer to a PC running windows XP a whole photo album, or rather a folder containing subfolders of photos. They are in various formats (PICT, jpeg, png).
I put them in a CD and tried to view them on the PC, but most of the pics could not be opened. I thought that nowadays PCs can read PICT formats. Maybe I was wrong, or is it because the Mac does not show suffixes?
Thanks for a clue.

Burning a disk using the Mac OS X Finder will make a data disk that can be read on both Macs and Windows. If you're unable to read your CD or DVD on a Windows computer, I would suggest trying another Windows computer as a test. Of course, if you're burning a DVD then the Windows computer must have a DVD disk drive to read it.
And as you asked earlier, yes, include the three or four character file extensions on all files you want to transfer to Windows. You can add them before or after transferring to the Windows computer, but they're needed to let Windows know what type of file you're opening so that it can use the correct application.
Hope this helps! bill
1 GHz Powerbook G4   Mac OS X (10.4.5)  

Similar Messages

  • Canon REbel XS cannot read/edit RAW pictures in Photoshop CS3

    Canon REbel XS cannot read/edit RAW pictures in Photoshop CS3.
    Tried Camera RAW plugin 4.1 (nothing)
    Tried DNG got error message not able to convert.
    Any suggestions to be able to read my RAW picture in photoshop CS3?
    Thanks in adnvance for all your help.
    Luc

    [Message moved by Forum Host]
    The rebel XS is supported by Camera Raw version 4.6 and newer... Update to that version of camera raw.
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4044 fro windows
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4035 for mac (since you do not state your operating system...)
    Follow the instructions on the readme found on the download pages, and you'll be all set!
    Also, I guess that you tried the version 4.1 of the converter. One should always use the latest version.

  • Lion ScreenSaver re-active hang during read my iPhoto pictures

    Hi,
    My Lion cannot display password logon during screensaver is reading my iPhoto pictures.
    Because I setup my screensaver to random display my iPhoto pictures.
    I have an external monitor with my MacBook. Both of my monitors will display iPhoto pictures with screensaver.
    Screen hang if i'd like to re-active from screensaver to normal operation mode.
    That will be fine if screensaver reads iPhoto pictures and start to display them.
    Hang status happen during screensaver still reading iPhoto pictures for 2~3 seconds and before display them.
    Please check what's happen with this kind of issue for current Lion OS X 10.7.3
    Many thanks

    Hi Mike,
    I just saw this post and saw no one has responded.  You might have figured out but in case, I wanted to let you know what I found out.  I had the same problem.  Hard drive failure, they installed a new one and my iPhoto pictures were missing.  I couldn't find them on Time Machine either which baffled (and frustrated) me b/c I just backed up my drive and I was missing pictures from over a year ago. 
    I found this article and it allowed me to at least find my pictures...so they weren't lost after all. 
    https://discussions.apple.com/message/16029742#16029742
    As for why they aren't showing up in iPhoto or Time Machine, the lady at the Mac store said it is probably an OS conflict.  Which makes sense since I can see the actual pictures in the iPhoto content file (per the article mentioned above).  However, I didn't have my computer with me at the store to have a Genius person help me resolve the conflict.
    BUT, if you can find the pictures, then maybe you can reimport them into iPhoto?  Just a thought.
    Good luck!

  • How to delete recent file history in adobe reader in Mac PC ?

    How to delete recent file history in Adobe Reader in Mac PC ?
    In Adobe Reader - Edit - Preferences - select Documents in the left panel and change the "Documents in recently used list" to 0. Yes ! the file history is gone But when you set back the value, you will see the file history again. This is not the way to do...
    I have checked all the preference or setting. I couldn't found any clear recent file history in adobe reader.
    Please help ! Thanks !

    First off, you CANNOT set recent documents to zero. The absolute minimum it will accept is 1. And on my MacMini, (I just checked it to be 100% sure) I opened seven documents with Recent Docs set to 10 - they were ALL listed. I set it to 1 and all but the most recent cleared. I then closed Reader and reopened it. The list was 1 item. I reset Recent Docs to 10 and there was still only 1 item in the list.

  • How can i read a stored picture in oracle Long Raw datatype? blob or clob?

    How can i read a stored picture in oracle Long Raw datatype? Like a blob or clob?....i am using jdk 1.3
    This is because...i tried to read it like a blob but i obtain a exception...about Type of column no valid......but the column exist....and it contains the long raw datatype of the pictures.....this is my code:
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    import oracle.jdbc.driver.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.InputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.DriverManager;
    import oracle.sql.BLOB;
    import oracle.sql.BLOB.*;
    import oracle.jdbc.driver.*;
    import java.sql.*;
    class rec_ima1
    public static void main(String h[])
    Connection con = null;
    Blob bl;
    final ImageIcon image1;
    JPanel photo;
    try
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    con= DriverManager.getConnection("jdbc:oracle:thin:@123.3.12.213:1521:db_name","user","password");
    String query = "Select * from pictures where ID = '18840'";
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery( query );
    if (!rs.next())
    System.out.println("Empty Result Set");
    bl = rs.getBlob(5);
    if (bl == null) {
    System.out.println("Null Blob");
    return;
    InputStream is = bl.getBinaryStream();
    int imageLength = (int) bl.length();
    System.out.println(imageLength);
    System.out.println(bl.length());
    byte[] imageData = new byte [imageLength];
    is.read(imageData, 0, imageLength);
    image1 = new ImageIcon(imageData);
    photo = new JPanel() {
    public void paint(Graphics g){
    g.setColor(Color.lightGray);
    g.drawImage(image1.getImage(), 0, 0, this);
    } catch (Exception e) {
    e.printStackTrace();
    Now i tried using clob:
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    import oracle.jdbc.driver.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.InputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.DriverManager;
    import oracle.sql.CLOB;
    import oracle.sql.CLOB.*;
    import oracle.jdbc.driver.*;
    import java.sql.CallableStatement;
    class rec_ima4
    public static void main(String h[])
    Connection con = null;
    Clob cl;
    JPanel photo;
    try
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    con= DriverManager.getConnection("jdbc:oracle:thin:@123.3.12.213:1521:db_name","user","password");
    con.setAutoCommit (false);
    String query = "Select * from pictures where ID = '18840'";
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery( query );
    while (rs.next()) {
    oracle.sql.CLOB clob = (CLOB) rs.getObject(5); //line 47
    } catch (Exception e) {
    e.printStackTrace();
    This is the runtime exception:
    java.lang.ClassCastException: [B
    at rec_ima4.main(rec_ima4.java:47)

    Thanks by answering to me......
    Well....i did that....but what is ImageIO?....
    I declared a ImageIcon imageIO, but this give me the following:
    rec_ima3.java:49: cannot resolve symbol
    symbol : class BufferedImage
    location: class rec_ima3
    BufferedImage bi = ImageIO.read(bInput);
    ^
    rec_ima3.java:49: cannot resolve symbol
    symbol : variable ImageIO
    location: class rec_ima3
    BufferedImage bi = ImageIO.read(bInput);
    ^
    What classes i have to import?.....what is ImageIO?
    Thanks

  • Adobe Reader 9/Mac OSX 10.5.4/Internal Error after installing

    Just purchased a new iMac with OSX 10.5.4 installed. I have 2.4 GHz Intel Core 2 Duo with 4 GB 667 MHz DDR2 SDRAM. Acrobat Reader v8.x won't run, so downloaded and installed v9 from the official Adobe web site. When I attempt to launch Acrobat Reader 9 I get the message "An internal error has occurred." I cannot go any further or do anything else. I've downloaded Reader 9 several times but the same problem keeps happening. I also purchased a new MacBook and Reader 9 installs and runs on that machine without any problems. Anyone have any idea why this might be happening on my iMac? Without Acrobat Reader it can really be a drag trying to work with PDF's.

    (Gary_Roger) wrote:
     I was wrong on both counts. With the help of the local Apple store, I found a solution. First, I Moved to Trash all adobe related files/folders from /Users/*myaccount*/Library/Cache and /Users/*myaccount*/Library/Preferences. When I started "Adobe Reader 9", I at least got the license agreement but again it failed with an "internal error". I then moved the /Users/*myaccount*/Library/Application Support/Adobe folder to my desktop. I was then able to start "Adobe Reader 9" successfully.
    I was having the "Internal Error" message on all my repeated installs of Reader in Mac OS 10.6 ("Snow Leopard") and this fixed it for me. The only thing I did different, was after the app finally launched without an error, I dragged all the non-Acrobat Reader folders inside of /Users/*myaccount*/Library/Application Support/Adobe back to the folder. I then re-launched Reader just to check and all was fine.
    Thanks! This fixed my Adobe Reader on Snow Leopard problem.

  • PC FORMATTED iPod read by MAC & PC?  MAC formatted iPod read only by MAC?

    Is this how the formatting issue works? I'm looking to buy an iPod for a friend who (I think) has PC.....
    Since I'm a mac person, I want to buy the gift, load some music on, and ship it off to the lucky recipient....but if they have a PC , will it be recongnized once it's plugged in?
    Any info would be helpful.
    Thanks.

    PC FORMATTED iPod read by MAC & PC? MAC formatted iPod read only by MAC? Is this how the formatting issue works?
    Yes, that is how it works.
    Since I'm a mac person, I want to buy the gift, load some music on, and ship it off to the lucky recipient....but if they have a PC , will it be recongnized once it's plugged in?
    Okay, unless you restore your iPod while you're on the Mac, I believe it will still be formatted for a PC.
    (You will not need to restore the iPod for transferring music to it on a Mac unless you want to upgrade the iPod's firmware on a Mac computer, then it will have to be Mac-formatted).
    You see, when you recieve an iPod, it is shipped to you as a Windows-formatted iPod, probably since the majority of the population has PCs, and also, PC-formatted iPods are compatible for music transfer for a Mac also.
    Does that make sense?
    EDIT: Zevoneer has already answered your question, so you can ignore all of my post if you wish.
    -Kylene

  • I am using your software: CS^ InDesign Suite on a PC using a Windows 7 operating system.     Due to eyesight issues, I need to have the menu bars of programs in easy-to-read font and picture size.  Specifically, the menu bar

    Hi,
    I am using your software: CS6 InDesign Suiteon a PC using a Windows 7 operating system.
    Due to eyesight issues, I need to have the menu bars of programs in easy-to-read font and picture size.  Specifically, the menu bar across the top (File, Edit, View, etc.), and the menu bar on the left side with the graphic depiction of options.
    In earlier versions of Windows (e.g. XP), whenever I changed the screen resolution on my computer to a lesser resolution in order to show the link icons on my desktop in a larger, more readable size, all the software programs, including yours, appeared on my screen with the menu bars in the larger font size that I needed.
    However, in Windows 7, this is not the case.  Even though I have selected the lowest resolution, making the icons on my desktop extremely large, I cannot read the options across the top menu bar of your program, nor the pull-down menu items that they contain.  I cannot see the graphic depictions of options on the left side of the screen. They are all too small.  How can I make your program increase the size?

    CS6 is not high-DPI compatible/ enabled and that can't be changed. If you cannot6 make it work with your operating system means, then short of joining Creative Cloud and using newer versions there is nothing you can do.
    Mylenium

  • I am using CS6 InDesign suite on a PC using a Windows 7 operating system.     Due to eyesight issues, I need to have the menu bars of programs in easy-to-read font and picture size.  Specifically, the menu bar across the top (File, Edit, View, etc.), and

    I am using CS6 InDesign on a PC using a Windows 7 operating system.
    Due to eyesight issues, I need to have the menu bars of programs in easy-to-read font and picture size.  Specifically, the menu bar across the top (File, Edit, View, etc.), and the menu bar on the left side with the graphic depiction of options.
    In earlier versions of Windows (e.g. XP), whenever I changed the screen resolution on my computer to a lesser resolution in order to show the link icons on my desktop in a larger, more readable size, all the software programs, including yours, appeared on my screen with the menu bars in the larger font size that I needed.
    However, in Windows 7, this is not the case.  Even though I have selected the lowest resolution, making the icons on my desktop extremely large, I cannot read the options across the top menu bar of your program, nor the pull-down menu items that they contain.  I cannot see the graphic depictions of options on the left side of the screen. They are all too small.  How can I make your program increase the size?

    NO way.
    Mylenium

  • Adobe Reader 9 Mac - cannot copy images

    I upgraded to Reader 9, and another person in our office is using 8 with the same problem. We can no longer copy images out of a PDF - when we try to paste an image that appeared to be copied we only get a gray box. We've tried many ways including pasting directly into Word or Excel, choosing 'New from Clipboard' in Photoshop Elements, creating a blank Photoshop file and pasting, etc. This has works perfectly in Acrobat 5.0 and in Reader 7.0.5 (which I have gone back to using - I'm sure glad I waited before removing it from my system!).
    Any thoughts?

    (Gary_Roger) wrote:
     I was wrong on both counts. With the help of the local Apple store, I found a solution. First, I Moved to Trash all adobe related files/folders from /Users/*myaccount*/Library/Cache and /Users/*myaccount*/Library/Preferences. When I started "Adobe Reader 9", I at least got the license agreement but again it failed with an "internal error". I then moved the /Users/*myaccount*/Library/Application Support/Adobe folder to my desktop. I was then able to start "Adobe Reader 9" successfully.
    I was having the "Internal Error" message on all my repeated installs of Reader in Mac OS 10.6 ("Snow Leopard") and this fixed it for me. The only thing I did different, was after the app finally launched without an error, I dragged all the non-Acrobat Reader folders inside of /Users/*myaccount*/Library/Application Support/Adobe back to the folder. I then re-launched Reader just to check and all was fine.
    Thanks! This fixed my Adobe Reader on Snow Leopard problem.

  • What is the best ebook reader for Macs?

    Hi,
    What is the best ebook library / reader for Macs?
    I have a Kindle for the actual reading, but wanted some sort of nice display library to sort and browse my books.
    Any help is appreciated.
    Thanks!
    david

    i have searched there, but rather than try 20 out, i'd rather see what people like here.
    the people on discussion boards generally have good taste.
    and by best, i mean the best -- your favorite. obviously that encompasses a range of qualities to embody "the best."

  • Acrobat Reader for Mac

    I have a cd's that require the latest Adobe and Acrobat Reader for Mac to open.  I tried without and it doesn't work.  Can anyone help?  I currently have a Mac version 10.6.8.

    You can download Reader from here: http://get.adobe.com/reader/

  • Installing & running adobe reader on Mac

    I installed Adobe reader on Mac OS X 10.7.5, using both Safari & Firefox, but it didn't work in either.  Adobe is there, but won't run. I had Adobe before but then it disappeared.  I downlaoded again in order to open pdf fillable forms. When I return to these pages, which I used in the past, it now says (in Safari) can't use this browser or run and relaunch (same browser I used before) or (in Firefox) I must agree to licensing agreement before use, which never pops up for me to agree to. Any suggestions?

    Try the installer from http://get.adobe.com/reader/enterprise/

  • Adobe Reader for Mac messes up my mouse driver

    After installing the latest version of Adobe Reader for Mac on Tiger 10.4, viewing any .pdf file has the effect of changing many of my single mouse clicks into double mouse clicks until reboot.  It begins when I click on the page-down sidebar and the reader jumps ahead two pages.  Next, randomly about 80% of my mouse clicks become double-clicks in any application until I reboot.  I thought I had seen this problem in an earlier version but it seemed to resolve itself.  With the latest reader, right after reading a .pdf file I have the double-click problem.
    I've dragged everything I could find from Adobe into the trash bin and use "Preview" to view pdf file.  No double-click problem.

    If you subscribed you will get a new email for every post here. Otherwise you have to manually check. What you are seeing is not typical. I'd try the typical troubleshooting techniques.
    1) Fixing Permissions.
    2) Emptying various system caches.
    I'd recommend you get a copy of Applejack. It can do all that and find disk directory issues. Cost is reasonable---free.

  • Hi. I was trying to open some pdf files and got a message my adobe reader was deinstalled. I installed a new version of Adobe Reader for Mac and when trying to open a PDF file I am getting a message in a foreign language. Any suggestions?

    Hi. I was trying to open some pdf files and got a message my adobe reader was deinstalled. I installed a new version of Adobe Reader for Mac and when trying to open a PDF file I am getting a message in a foreign language. Any suggestions?

    Are you launching Pages from an icon in your Dock? Installing the update does not change the Dock icons & it does not remove the older versions. Go to your Applications folder & launch the new Pages from there.

Maybe you are looking for

  • USB MIDI not working in Windows 7 Pro 64-bit

    The problem is that even though my devices are recognized in Control Panel/ Sound and in Device Manager, no MIDI data actually flows and I cannot sync my keyboard to the Yamaha software that edits it.  The error message in the Yamaha software reads “

  • Printing lists in ABAP without using the standard button

    Dear community, i've got a little problem and I can't fix it on my own. Some user in our company gave me the instruction to extend an existing SAP Programmm with some defined functionalities. They want to implement an new button for printing in the g

  • Java stored proc deploy problem

    I get follow error,when I deploy Java stored proc with JDeveloper3.2. Errors: *** Errors occurred while loading the archive into 8i JVM *** How can i do? Thanks a lot!!

  • HT2506 Change the Thumbnail view in Preview (Mac)

    Hi everybody! I am wondering if there is the chance to change the thumbnails view  in order to display pdf pages on two or more columns, the same as in acrobat it is increasing or decreasing the size of the thumbnail window or zooming in/out in the s

  • Using Quicktime Export option in a background thread?

    Hi, I'd like to use Quicktime Pro's export option to convert some files in background, possible? any sample codes? thanks. Angelo