Images not Drawn Properly

I am simply trying to draw an image over a JPanel and it will not appear until the JFrame has been minimised or hidden behind something. Ive tried all kinds of repainting. Ive seen this topic before, but none seems to have a clear answer. HEPL! please

"C:/JCreatorLE/MyProjects/Cards/images/CA.jpg"
What the &%*$? is it doing way over there?, put it in the same folder   Container c    = getContentPane();
   JPanel panel = new JPanel(){
      public void paintComponent(Graphics g)     {
        ImageIcon img = new ImageIcon("CA.jpg");
        g.drawImage(img.getImage(), 0, 0, null);
        super.paintComponent(g);
   panel.setOpaque(false);
   c.add(panel);

Similar Messages

  • Crystal Report Toolbar images not displaying properly in IE?

    Hi,
    I am using VisualStudio 2012 ,crystal report version 13.0.2000.0 and sp5.
    My problem is that after loading crystal report, toolbar image icons (such as print,export etc) are not showing properly in internet explorer(version ie10). But it is displaying correctly in chrome and firefox.
    What could be problem ?? Any help will be appreciated ..

    See this re. images:
    Visual Studio 2012 Crystal Report not working on Windows Server 2012/ 0x800a1391 – JavaScript runtime error: &…
    Also, don't forget to do your own searches - search box is in top right corner and simple search strings are best. E.g.; 'Crystal net red x'.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
      Follow us on
    Twitter

  • Images not displayed properly

    [Migrated from the Syclo Resource Center]
    prashanthi_vangala   01/03/2012 06:44,
    Hi,I am working on Agentry 5.4.0I have a list screen where for one of the columns I have a rule to display images ( I use checked and unchecked images ). Earlier the images were getting displayed properly on the ATE but  it is not working now and I did not make any changes to the image properties then.But after this, I tried couple of things with the image properties to make it work, like when I do not use any mask colour the image does not get displayed but when i use any maks colour the image gets displayed but its completely blacked out ( and thus for checked image, cannot see the check mark and its completely blacked out ).I face same issue with the login image as well. I added a new Image ( Logo ) to my App for the login Screen, but even this image does not appear on the login screen.
    I also tried deleting the Dev folder and re-publishing, but even this does not work.
      -Prashanthi
    Jason Latko   01/03/2012 11:42
    Try deleting the Application directory under your development server where the images reside and publish again.
      Completely clear your ATE and transmit again from scratch.
      Also, what mask color are you using?
      Try using a green hugh and not black or white for the mask.
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/03/2012 12:38
    Hi Jason,Thank you for the reply.I already tried all the  things you have mentioned, but the same issue exits still.
    Prashanthi
    Jason Latko   01/03/2012 12:40
    Is it just the ATE, or do you have the same problems using the WIn32 or PPC clients?
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/04/2012 06:21
    Hi Jason,Behaviour in ATE:I have changed the image now and tested with the new image . Now, its behaving strangely:When I do a sync after publishing or a reset of ATE; I see the new image properly displayed on the screen but when I leave the screen and come back to the same screen again, the new image is getting replaced by the old image ( atleast the old image is not displayed properly, it appears like a black square box..and because of the same issue I had with this image I switched to the new image ). Behaviour in Win32 Client:When I tested with the client, I see  the new image properly for the first time and when i leave the screen and come back the image disappears..This is the behaviour in client.
    Please suggest.
    -Prashanthi
    Jason Latko   01/09/2012 11:35
    Prashanthi,What did you use to create these images?
      They are simple bitmaps I assume?
      Try creating some very simple images using Microsoft Paint, then set a mask of green in Agentry.
      Your problem sounds familiar, but I can't find a matching bug in our database.
      Maybe someone else has experienced this?
      You could also try upgrading to a newer version of Agentry to see if the problem goes away.
      We are currently on version 6.0.4.Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/11/2012 10:02
    Hi Jason,
    Thank you for the reply.
    But strangely, from past few days I see that the image is working fine again.
    But kept this topic open because it was wierd, that the image is working correctly again without making any major change. What I did was to just write the rule again which calls the image ( though i did this before and did not work then but worked now ) and to observe the image behaviour for few days.But it seems like it is fine now.
    Thanks and Regards,Prashanthi

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • Images not displayed properly.Any advice on that?

    Hi,
    I found the following code inside the forum and i'm trying to understand it.
    It appears to be a problem though. In particular the images(chess-pieces) are not displayed properly. The background of the gif images should be transparent but is not. Any advice?
    Thanks
    Here is the code:
    import java.awt.*;
    import javax.swing.*;
    public class ChessBoard10 {
    static final int PAWN = 0;
    JFrame frame;
    JComponent[][] checker;
    public ChessBoard10() {
    frame = new JFrame("CHESS GAME");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container con = frame.getContentPane();
    con.setLayout(new GridLayout(8, 8));
    checker = new JComponent[8][8];
    for (int row = 0; row < 8; ++row) {
    for (int col = 0; col < 8; ++col) {
    JComponent p = new JPanel();
    p.setBackground(setColor(row, col));
    checker[row][col] = p;
    con.add(p);
    frame.setSize(500, 550);
    frame.setVisible(true);
    Color setColor(int y, int x) {
    Color c;
    if (y % 2 == 1) {
    if (x % 2 == 1) {
    c = Color.white;
    } else {
    c = Color.black;
    } else {
    if (x % 2 == 1) {
    c = Color.black;
    } else {
    c = Color.white;
    return c;
    public void setPiece(Piece pc, int row, int col) {
    JComponent p = checker[row - 1][col - 1];
    //one base -> zero base conversion
    if (p.getComponentCount() > 0) {
    p.remove(0);
    p.add(pc);
    p.revalidate();
    /*test*/
    public static void main(String[] args) {
    int Bpawn = 0,
    Bbishop = 1,
    Bking = 2,
    Bknight = 3,
    Bqueen = 4,
    Brock = 5,
    Wpawn = 6,
    Wbishop = 7,
    Wking = 8,
    Wknight = 9,
    Wqueen = 10,
    Wrock = 11;
    ChessBoard10 cb = new ChessBoard10();
    for (int i = 1; i < 9; i++) {
    cb.setPiece(new Piece(Bpawn), 2, i);
    cb.setPiece(new Piece(Wpawn), 7, i);
    cb.setPiece(new Piece(Bking), 1, 4);
    cb.setPiece(new Piece(Bqueen), 1, 5);
    cb.setPiece(new Piece(Bbishop), 1, 3);
    cb.setPiece(new Piece(Bbishop), 1, 6);
    cb.setPiece(new Piece(Bknight), 1, 2);
    cb.setPiece(new Piece(Bknight), 1, 7);
    cb.setPiece(new Piece(Brock), 1, 1);
    cb.setPiece(new Piece(Brock), 1, 8);
    cb.setPiece(new Piece(Wking), 8, 4);
    cb.setPiece(new Piece(Wqueen), 8, 5);
    cb.setPiece(new Piece(Wbishop), 8, 3);
    cb.setPiece(new Piece(Wbishop), 8, 6);
    cb.setPiece(new Piece(Wknight), 8, 2);
    cb.setPiece(new Piece(Wknight), 8, 7);
    cb.setPiece(new Piece(Wrock), 8, 1);
    cb.setPiece(new Piece(Wrock), 8, 8);
    class Piece extends JPanel {
    String[] imgfile =
    "Bpawn.gif",
    "Bbishop.gif",
    "Bking.gif",
    "Bknight.gif",
    "Bqueen.gif",
    "Brock.gif",
    "Wpawn.gif",
    "Wbishop.gif",
    "Wking.gif",
    "Wknight.gif",
    "Wqueen.gif",
    "Wrock.gif" };
    public Piece(int type) {
    add(new JLabel(new ImageIcon(imgfile[type])));
    }

    Well, without actually testing the code which I most unfortunately can't do since my real computer is chrashed at the moment, try checking the
    boolean Component.isOpaque();otherwise try using .png's instead altough it shouldn't matter.
    This is just some general advices =(

  • My programming? JRE 1.4 bug? Images not displayed properly!

    I made this simple card game which you can checkout at http://www.koutbo6.com I used AWT components and used Panels for drawing the cards and the main game panel has a null Layout. It runs perfectly on all java enabled browsers ... except for IE on windows XP.
    I came across a problem where the card images are not displayed at all. some images that are drawn disrectly on the backround are partially drawn or not drawn correctly. The IExplorere had microsft virtual machine donloaded for windows XP. I managed to correct the problem by disabling JIT compiling from IE advanced setting.
    Then I installed XP on another PC and was surprized that Microsoft stopped distributing the Java Virtual Machine for XP, so I opted for sun java plugin V1.4 and the same problems occur. There is no way to turn off JIT compiling and i read in oone of the bug postings that the option has been taken off in versio 1.4.
    when the problem occurs I noticed that g.drawString works perfectly and all the AWT components are displayed even in the main panel with the null layout. the problem occurs with displaying the images. It could be with the way im doing things.
    this is how I draw my images using the paint method:
         public void paint(Graphics g){
              super.paint(g);
              if(cardImage != null){
                   g.drawImage(cardImage,0,0,this);
           }this is how I draw cards images on card panels, if i wana clear the image I would set cardImage to null and repaint. This is how i draw all the images in the client.
    Is there a problem with my way of doing things? or is there a problem with the java plug in? I'v yet to try installing older java plug-ins on this PC, I will try it and post if it solves the problem.
    Thanks in advance

    Well I tried other versions of the plug in and they seem to have the same problem. But I have noticed that images loaded using Applet.getImage() were displayed without problems. And when I ran the server/client locally "without" JARing the files, the images displayed perfectly.
    I am using a load image method that I picked up from the forums to enable the loading of images from jars when using netscape. This is the code I use to load the images from JAR:
         /** get an image from anyt sorce.*/
         public Image getImageFromJAR(String fileName){
              if (fileName == null) {
                   return null;
              Image image = null;
              byte[] thanksToNetscape = null;
              Toolkit toolkit = Toolkit.getDefaultToolkit();
              java.io.InputStream in = getClass().getResourceAsStream(fileName);
              int x = 0;
              try{
                   int length = in.available();
                        thanksToNetscape = new byte[length];
                        in.read( thanksToNetscape );
                        image = toolkit.createImage( thanksToNetscape );
              }catch(Exception exc){
                   System.out.println( exc +" getting resource " +fileName );
              return image;

  • Edited hyperlinked shape images not hyperlinking properly when published

    At my website:
    www.trianglepolysteel.com
    I've tried to add and edit hyperlinked shape images at the top of the page, namely "The PolySteel Systems" and "FAQs". No matter what I do--bring to front, recreate a brand new image, copy and paste one I know works--the published version does not hyperlink properly. I unselect "make all hyperlinks inactive" in the hyperlink inspector pane, rollover my mouse to ensure that all buttons take me to the proper place, then click them to prove it. Works in iWeb, not on the published page.
    Does anyone know how iWeb creates the code? When I save changes I've made, does it rewrite code for the entire page, or does it plug in edits at the end of the existing code? When I go in to view source in safari, it looks like it put the two edited/added images in a different location.
    Help! Visitors/potential customers are missing a valuable link on my site.
    Bradley

    OT,
    Yes, each is its own image, as making one text box and hyperlinking each word/phrase results in the unchangeable (arrrgh!) grey underlined text that changes to red on rollover.
    I've already been experimenting with exactly what you mentioned. I just tried shrinking all the image boxes, without encroaching on the text, so they would clearly not overlap. I'm publishing to me.com for these experiments so I don't have to keep publishing the entire site to a folder, then ftping to my server. Here's the page I just experimented with:
    http://web.mac.com/bradleyoder/iWeb/Triangle%20PolySteel/WhatIsPolySteel.html
    In iWeb, all links are good to go, no overlapping, etc. Curiously enough, on this page, there are even more dysfunctional hyperlinks with those image boxes.
    Any further thoughts?
    Bradley

  • Image not drawn for a JComponent

    Hi
    I've got a JComponent which I use as a TableCellRenderer.
    The problem is that the Image is not drawn to the Graphics object of the paint method. Only when the form is resized is the Image shown. If the image change it is not shown at all. (remove //loadPicture((String)value); in the getTableCellRendererComponent method of the TestCellRenderer class)
    I've used other methods on the JComponent just to see if it is working... all the other methods works fine... like the drawLine, drawString ...... but not the drawImage.
    Any ideas ?
    Here is the code
    CODE
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import javax.swing.table.*;
    public class TestCellRenderer extends JComponent implements TableCellRenderer{
    Image img;
    ChangeListener cl;
    public TestCellRenderer(){
    try{
    loadPicture("ac1.gif");
    setSize(new Dimension(100,100));
    this.setPreferredSize(new Dimension(100,100));
    this.setBorder(new LineBorder(Color.RED));
    catch(Exception e){
    e.printStackTrace();
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column){
    //loadPicture((String)value);
    this.updateUI();
    return this;
    public Image getImage(){
    return img;
    public void setImage(Image img){
    this.img = img;
    public void addChangeListener(ChangeListener l){
    cl = l;
    private void loadPicture(String path){
    try{
    //if (img != null){
    // img.flush();
    // img = null;
    img = Toolkit.getDefaultToolkit().createImage(path);
    if (cl != null){
    cl.stateChanged(new ChangeEvent(this));
    catch(Exception e){
    e.printStackTrace();
    public void paint(Graphics graphics){
    Graphics2D g = (Graphics2D)graphics;
    try{
    g.drawLine(0,0,getWidth(),getHeight());
    g.drawImage(img,0,0,getWidth(),getHeight(),null);
    g.setColor(Color.RED);
    g.drawLine(getWidth(),0,0,getHeight());
    super.paint(g);
    catch(Exception e){
    e.printStackTrace();
    CODE
    import javax.swing.table.*;
    public class TestModel extends DefaultTableModel{
    public TestModel(){
    this.addColumn("Image Column");
    this.addColumn("Column Two");
    CODE
    import java.awt.*;
    import java.util.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    import javax.swing.*;
    class TestPaintInTable extends JFrame{
    private static TestCellRenderer viewer = new TestCellRenderer();
    public static void main (String args[]){
    TestPaintInTable frame = new TestPaintInTable();
    frame.setSize(300,300);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    TestModel model = new TestModel();
    //Data
    Vector vecData = new Vector();
    vecData.add("ac.gif");
    vecData.add("Aircraft One");
    model.addRow(vecData);
    vecData.removeAllElements();
    vecData.add("ac1.gif");
    vecData.add("Aircraft Two");
    model.addRow(vecData);
    TestTable testTable = new TestTable(model);
    TableColumn col = testTable.getColumnModel().getColumn(0);
    TestCellRenderer tCR = new TestCellRenderer();
    tCR.addChangeListener(new ChangeListener(){
    public void stateChanged(ChangeEvent e){
    System.out.println("State has changed. Image = " + ((TestCellRenderer)e.getSource()).getImage() );
    viewer.setImage(((TestCellRenderer)e.getSource()).getImage());
    viewer.update(viewer.getGraphics());
    col.setCellRenderer(tCR);
    JScrollPane scr = new JScrollPane(testTable);
    frame.setLayout(new BorderLayout());
    frame.getContentPane().add(viewer,BorderLayout.NORTH);
    frame.getContentPane().add(scr,BorderLayout.CENTER);
    frame.setVisible(true);
    CODE
    import javax.swing.*;
    import javax.swing.table.*;
    public class TestTable extends JTable{
    public TestTable(DefaultTableModel model){
    super(model);

    change this line
    g.drawImage(img,0,0,getWidth(),getHeight(),null);
    to this
    g.drawImage(img,0,0,getWidth(),getHeight(),this);
    for the images in the cells, try this link
    http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=2&t=000610

  • Image not rendering properly on timeline

    I'm working on an animatic using still images.  Occassionally, I need to scale in or move the image a bit.  This means FCPX has to render the image, which it usually does, but I am finding that in some cases, the image appears blurry when played at normal running speed, but when I pause, it's nice and clear.  Why is the image not rendering so that it plays clear when running?  The orange bar is not displayed to suggest it needs to render still.

    Uh, yup, that sure solved it.  Thanks Tom.

  • Disk Utility Crashing and Disk Images Not Opening Properly?

    Hi,
    I got a new G-Tech 500GB external drive that I've got into three partitions. All of them have Tiger on them but the main one I'm using is giving me problems. I have Stuffit Expander 11 on here and when I try to open a disk image it looks like it's opening but doesn't. Also I try and open Disk Utility and it crashes on me. I did a repair disk permissions a few hours ago after restarting up again and it seemed to be fine but now the problem is back.
    The other problem I have on and off is that out of the three partitions I'm supposed to put them in the trash before shutting down and sometimes the two not in use won't go in the trash.
    Any ideas? The two other partitions I have right now I'm using for recovery stuff from my internal drive.
    S.

    Its the improper unmount of the firewire drive which is the problem. Try to reset all.
    1. Shut-down your Mac, and unplug the power cord
    2. Turn the power off on your external FireWire devices
    3. Unplug the FireWire devices from the Mac
    4. Wait for 5 min.
    5. Plug the power cord to your Mac only
    6. Restart the Mac while holding the Option-Apple-O-F, and keep holding until you get the ">" prompt, then release the keys
    7. At the ">" prompt type:
          reset-nvram and hit the Return key
          set-defaults and hit the Return key
          reset-all and hit the Return key
    the last command will restart your mac
    8. Shut down your Mac
    9. Connect all your FireWire devices to the Mac and turn them on
    10. Restart your Mac.
    All your FireWire devices should reapear, if not repeat the procedure
    How to avoid the issue :
    The only really proven way to avoid burning up a FireWire port is to connect all devices and to turn them on PRIOR turning on the Mac. Likely, one must unplug them and turn them off AFTER the Mac has been turned off. If you need to connect another device, then you're on for a shutdown of your machine... 
It's a tad annoying but it guarantees that the FW ports won't be damaged. 
Be careful when using self powered devices such as webcams, iPods, hard drives or hubs, as they can destroy the port pretty easily. Another thing is to avoid daisy-chaining hard drives.
    When the FW port doesn't respond anymore :
    In this case, peripherals won't be mounted upon plugging, and won't be displayed in Apple's System Profiler. The self powered devices will still be fed by the port, but won't respond either. 
It happens that the PHY just hangs after a surge or a random problem. Once hung, the port will not respond any longer, it is possible to reset the component by going through the following steps :
    1° boot the mac in Open Firmware by holding [ Apple key - Option - O - F ] after the startup chime. 
2° you'll get to a command prompt. the keyboard mapping will be QWERTY, so pay attention when you type the following : 
RESET-NVRAM (enter) 
RESET-ALL (enter) 
3° Now the mac should restart itself and the port should function properly again. 
If it still doesn't work, then it means that the PHY is damaged.
    http://www.hardmac.com/articles/16/

  • Greyscale image not displaying properly.

    This is my first post here, so greetings!
    I am working in LabView 11, and all updates are current.
    I am trying to display a greyscale image with five shades varying from black to white. (The shade corresponds to a voltage, this is used to control a piece of optical equipment.)
    The image is incorrectly displaying only the black shade and the next shade up (on an 8-bit color scale, it is showing only 0 and 63). I am using "draw unflattened pixmap", and I'm passing to it a 2D array of 8-bit numbers (0, 63, 127, 191, 255) and a Greyscal color table that I created. Each value in the 2-D array that is 63 or greater is drawn on the picture as a shade of 63. I've checked to make sure that the input array does have values that range up to 255.
    The mysterious part is that I am using the exact same process in another step of my VI, and it is working perfectly. Same color table, same type of array, and I'm doing it several hundred times in a loop. It has never failed even once to produce the correct image.
    I've attached my code, and two of the sub-VI's that I call from it. The main code is "Adaptive Optics Experiment". You won't be able to run it, as it requires a software development kit for a company called Andor for some of the sub-VI's, but maybe just by looking you can detect an issue. I've noted on the block diagram where the problem occurs, and where the same process seems to work fine. It's in the large stacked sequence structure; the working part is in frame 1, non-working in frame 2.
    I've also attached an image of the final picture that shows only two shades.
    Any suggestions would be greatly appreciated!
    Attachments:
    Adaptive Optics Experiment.vi ‏88 KB
    OptimumPhase.vi ‏14 KB
    BuildPhaseMap.vi ‏18 KB

    Hi mjpur,
    Suggestion: Please check this link for better coding in LabVIEW
    http://www.ni.com/newsletter/51735/en/
    -Coming to problem:you said in sequence:1 it is working and it's not in 2nd sequence and you mentioned the color tables are also same.
    -Now the only terminal looks connected is with data terminal which is coming from BuildPhaseMap.vi
    -Please check if the data coming from Build Phase Map is proper or not.
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13

  • Images not displayed properly jv:imageButton tag

    Images are not displayed jv:imageButton tag. I am able to see the images sometimes, but not consistently. I have followed the steps mentioned from the Platform RI. I was able to see the images without any problem before Beta 3/JDev R1 uptake. I had migrated my code base from D7B7/Beta 2 to JDev R1/Beta 3 env. Images were displayed correctly in the iLog, in D7B7/Beta 2 environment properly without any issue.
    Any thoughts as to why this is happening.
    regards,
    Chandra

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • Tiff images not display properly

    After installing iPhoto 6, none of the 1600 files in .tiff format imported via a Lexmark scanner are showing up correctly. (They worked perfectly well in iPhoto 5)
    I get a blurred scribbled squashed image a little like a TV channel that hasn't been set correctly.
    If I go back and click on the files in the Finder, they open beautifully in Preview.
    This lead me to believe there was an issue with the tiff-format and I promptly converted a copy of the files to jpegs.
    Unfortunately this left me with a new problem as three white lines now appear thru all the pictures in jpeg format.
    Luckily I never deleted or moved the .tiff files, so I am still hoping to use those.
    Will there be an Apple update which fixes this or will I have to re-scan and date/title- another (sigh) 1600 pictures? (please, someone tell me no)
    Best wishes,
    N

    I think I found the fix.
    As I mentioned in my previous post, I have also been having trouble with TIFF images and iPhoto 6.
    Today I downloaded the new iPhoto 6.01 update. But, that didn't fix the problem either. So much for Apple fixing it.
    Anyway, I have been experimenting, and finally found a difference between images that worked and those that didn't.
    The images that worked, have an ICC profile embedded in them from the device that created the image (in my case my scanner).
    So, I set out to find out if simply removing the ICC profile would fix the problem.
    And, through my experimenting, I found that if I opened the image in another program, and then exported it as either a TIFF (the same format) or a JPEG that the resulting image would open in iPhoto 6 just fine.
    Further examination demonstrated that the ICC information was removed from the exported file.
    As I understand it, ICC is basically an image color correction / calibration tag. It enables different devices to properly display and print the image with the proper colors.
    Basically, each device has a color profile (scanner, monitor, printer, camera, etc.). This is to make sure that when you see something on the screen that it looks the same as when you print it out. Likewise, you want the image on the screen to match what the scanner and digital camera saw.
    So, these are essentially conversion tables to make sure that each device properly displays or prints the image as the original source "saw" it.
    Anyway, not wanting to manually strip this information from each file, I looked on the Internet for an automated solution. And, fortunately I found one.
    http://www.colormanagement.com/technicalresources/files_targets_and_utilities/mac_os_xscripts/
    The file you are looking for is "Mac Os X ColorSync Toolbar Script: Remove ICC profile". Click on the title just mentioned to download the script.
    It is a Macintosh Script that you simply download to your desktop (or anywhere else you would prefer). It is in a Stuffit Archive, so you'll need Stuffit Expander to decompress it (basically the Mac equivalent of a ZIP file).
    Once decompressed, you should see a "script" icon that is labeled "Remove Profile".
    Simply "drag" your original files and drop them onto this icon / script. The script will then remove the embedded ICC information from the image file.
    Once you have removed the ICC information from your image's file, try importing it into iPhoto 6 again. Then, see if it works
    It is important that you perform this on a backup / duplicate copy of your original files. You don't want to damage your only copy if something goes wrong.
    Now, one further note: If you do this, you may see the image looks different. In my case, the image is truer to the way it really looked when I scanned it in. The paper texture looks right now.
    If you want to do this while keeping the image's appearance the same as it looks now, then here's another way:
    Open the file in Apple's "Preview" program. This is usually the default image view.
    Then, do a "Save As" or "Export" to create a new copy of the image. If you perform an Export, be sure to set the image quality high or you may inadvertently reduce your pictures detail (especially if you export to JPEG).
    This essentially does the same thing. But, it will take more work if you have multiple images.
    Using the previously mentioned script, you should be able to drag and drop multiple files in a group.
    Anyway, I hope this helps the rest of you out.
    Let me know if it fixes the problem for you as well.

  • Google images not loading properly!!

    Hey guys,
    Im not sure if this is a networking problem or but here we go...
    Here's my prob - Whenever i google image search something, it never loads all of the thumbnails!
    Or the other prob is, when i change the search option to "larger than x" then the page just keeps loading and never loads any thumbnails at all...
    Ive tried in safari and in firefox and it just wont load all thumbnails properly!
    Also i just remembered that yahoo image search does the same thing!
    Im on an adsl1 connection so its not like i have no speed...
    Any ideas?
    Regards
    bb

    Hello William, thank you so much for your advice! It was indeed the firewall in the modem. We turned it off & viola solved a problem that had been plaguing us for months!! Your discussion thread info was most helpful & informative. I will just add that the other confirming clue was when I went to use smile box for the first time on the new Imac & the clever little application also diagnosed the problem & popped up a message in English! asking if we had a personal firewall as smile box was not able to access the internet & then some technical stuff. So thanks for your prompt attention. Very much appreciated.
    Cheers Rob & Catherine

  • Slideshow images not focusing properly

    I am finding that if I review images in Bridge slideshow (hitting space bar) they all seem to not be focused. When I click and go the 100% view, it takes about 10 seconds to load and then it is properly in focus. I thought I could use slideshow to rate and check focus (is there a fix for this?) and is the 10 second to load at 100% normal? If I go back to filmstrip or essentials view and use the magnifier on the same image, it is in focus just as it was in 100% slideshow view. It seems only the normal slideshow view is the problem.
    Jonathan

    Ramon.
    Here is the information you requested:
    Bridge v. 3.0.0.464, PS v. 11.0.1, Mac X Leopard v. 10.5.6
    Model Name:    iMac
      Model Identifier:    iMac6,1
      Processor Name:    Intel Core 2 Duo
      Processor Speed:    2.16 GHz
      Number Of Processors:    1
      Total Number Of Cores:    2
      L2 Cache:    4 MB
      Memory:    3 GB
      Bus Speed:    667 MHz
      Boot ROM Version:    IM61.0093.B07
      SMC Version:    1.10f2
    NVIDIA GeForce 7600 GT:
    Chipset Model:    NVIDIA GeForce 7600 GT
      Type:    Display
      Bus:    PCIe
      PCIe Lane Width:    x16
      VRAM (Total):    256 MB
      Vendor:    NVIDIA (0x10de)
      Device ID:    0x0391
      Revision ID:    0x00a1
      ROM Revision:    3021
      Displays:
    iMac:
      Resolution:    1920 x 1200
      Depth:    32-bit Color
      Core Image:    Hardware Accelerated
      Main Display:    Yes
      Mirror:    Off
      Online:    Yes
      Quartz Extreme:    Supported
      Built-In:    Yes
    Thanks again
    Jonathan

  • Master slide images not loading properly when previewing or when published

    I have created a master slide (including image) to be the background for my piece.  The image looks fine when I am in Captivate but when I preview the project the image does not display fully and only shows up bright bright white.  I tried publishing to see if this would make a difference but nothing.  I am using  a jpg image.
    Has anyone encountered this problem or does anyone have any ideas how I can make the image display?
    Thanks
    Jodie

    What is the slide quality? Default setting is Low (8-bit), depending on your JPEG-image quality this may be too low. Try to change to High or Optimized and see if this is better.
    Lilybiri

Maybe you are looking for