Problem opening PSCC images in AICC-size changes

I'm trying to open a Photoshop file in Illustrator to use as a template. Never a problem before, but now, using a new install of both, the PS file, 300 dpi B&W, 10cm wide X 25cm high, opens in Illustrator at 3X that size, like 30cm X 75cm. I've tried changing some prefs in both apps, but nothing works. I've asked this on the AI forum as well because I don't know where the problem lies. I'm on Creative Cloud, on an iMac running Mavericks, 16GB RAM. Any tips or referrals would be appreciated.

Hello Áine,
1. Is it really necessary to comment out this part in your source code?
<!--<p><img src="images/GalleryImages/Gallery1_
                -----stuff del-----
                Grasshopper" title="Grasshopper" />
                 </p><br />-->
Using your source code without these things I could see some of your images.
2. Looking to your website with my IE8 into image 7 (e.g.) I saw this:
what means there is a reference to a html file, not to an image. ???
3. Here it becomes interesting (completely contrary to my point 2.), looking for your path:
http://www.irishwetlands.ie/images/GalleryImages/Gallery1_Selection%20of%20IRWC%20members% 20at%20the%20Gearagh.jpg
I can see this image in my IE8 (some people in front of a "wetland". But still I've to assume (as Murray already did too), that there is something wrong with your upload and the pathes.
4. Allow me to make one brief point, we talked about here on several occasions:  please don't use spaces in image, folders or filenames. I'll quote Murray: In general, URL encoding spaces does not lead to problems. ... Whatever the details are, though, using spaces in filenames or paths is a bad practice which WILL lead to problems.
5. What concerns the image sizes, maybe later (I didn't understand your question correctly I fear). There is still my language barrier, I'm sorry.
Hans-Günter

Similar Messages

  • Open an image to the size of the image.

    I know this is hard to describe. I have a new iMac 27"
    Each time I open an image in Fireworks it opens with a big gray background which doesn't allow me to see my desktop or other programs like Dreamweaver. When you open an image in Photoshop it opens to the exact size of the imagem left hand corner and size it but is there a more efficient way?
    I know I can manually grab the botton
    Can this preference be set in Fireworks.
    I have enclosed a reduced size of my screen to let you see what I mean.
    Thank you...

    Hi
    Sorry, that didn't work.... With these new big <AC screens it is a pain to have to grab the corner of each each I work on to resize and I was hoping that I could get Fireworks to open the images that I work on without all that grey area..... like Photoshop does.
    Ciao
    Austen
    AustenLennon
    SpiderwebZ
    Web Design & Maintenance
    Contact | [email protected]   |  Telephone - 077 4547 8938   |   Skype - austenlennon
    26 Victoria Road, Bangor. County Down BT20 5EX

  • Problem opening an Image with Swing

    I write an action listener for the choose class but when I try to open an image into my Jpanel I have the following error: (The problem seems to be the Null pointer because the image was not read or.....)
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at Genim$choose.actionPerformed(Genim.java:219)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    THE CODE IS :
    public class choose implements ActionListener {
    public void actionPerformed(ActionEvent ae) {
    int option = chooser.showOpenDialog(Genim.this);
    double [][] F = new double[90000][5];
    int i=0;
    if (option == JFileChooser.APPROVE_OPTION) {
    try{
    BufferedReader in = new BufferedReader(new FileReader(chooser.getSelectedFile())); //file contenente i
    String getname= chooser.getSelectedFile().getName();
    while (true)
    String s = in.readLine();
    if(s==null){
    break;
    StringTokenizer t = new StringTokenizer(s,"\t");
    double uno = Double.parseDouble(t.nextToken());
    double due = Double.parseDouble(t.nextToken());
    double tre = Double.parseDouble(t.nextToken());
    double quattro = Double.parseDouble(t.nextToken());
    double cinque = Double.parseDouble(t.nextToken());
    F[0]=uno;
    F[i][1]=due;
    F[i][2]=tre;
    F[i][3]=quattro;
    F[i][4]=cinque;
    if(i<90000) i=i+1;
    if(i==89999) accButton.setText("FIRST YEAR ACQUIRED");
    in.close();
    input8=F;
    input10=getname.substring(0, 4) ;
    catch (Exception e)
    accButton.setText("File input error");
    Image image = null;
    try {
    // Read from a file
    File file = new File(input10+".jpeg");
    image = ImageIO.read(file);
    } catch (IOException e) {}
    image = image.getScaledInstance(200,200,image.SCALE_FAST);
    JLabel label = new JLabel(new ImageIcon(image));
    buttonPanel.add(label, BorderLayout.EAST); ---->ERROR !!!!
    contentPane.add(label);-------------------------------->ERROR!!!!!
    Message was edited by:
    princo

    I will try to be clear:
    I want to open a file with the class choose and I want also in the same class to load an image with the command ImageIo.read()., to resize it and then to add this image as an icon into the Jpanel.
    I don't know why I receive the error in the final part ( LINE 223 and 224 are shown below) of the class choose:
    buttonPanel.add(label, BorderLayout.EAST); ---->ERROR !!!!
    contentPane.add(label);-------------------------------->ERROR!!!!!
    maybe the image is not fully loaded..
    I think that davedes has understood my problem but the modify that he proposed doesn't work---> The same error.
    The class choose is :
    public class choose implements ActionListener {
        public void actionPerformed(ActionEvent ae) {
        int option = chooser.showOpenDialog(Genim.this);
         double [][] F = new double[90000][5];
         int i=0;
          if (option == JFileChooser.APPROVE_OPTION) {
            try{
              BufferedReader in = new BufferedReader(new FileReader(chooser.getSelectedFile())); //file contenente i
              String getname= chooser.getSelectedFile().getName();       
              while (true)
                String s = in.readLine();
               if(s==null){
                 break;
               StringTokenizer t = new StringTokenizer(s,"\t");
               double uno = Double.parseDouble(t.nextToken());
               double due = Double.parseDouble(t.nextToken());
               double tre = Double.parseDouble(t.nextToken());
               double quattro = Double.parseDouble(t.nextToken());
               double cinque = Double.parseDouble(t.nextToken());
               F[0]=uno;
    F[i][1]=due;
    F[i][2]=tre;
    F[i][3]=quattro;
    F[i][4]=cinque;
    if(i<90000) i=i+1;
    if(i==89999) accButton.setText("FIRST YEAR ACQUIRED");
    in.close();
    input8=F;
    input10=getname.substring(0, 4) ;
    catch (Exception e)
    accButton.setText("File input error");
    Image image = null;
    try {
    // Read from a file
    File file = new File("2001.jpeg");
    image = ImageIO.read(file);
    } catch (IOException e)
    {//e.printStackTrace(System.out);
    //System.err.println(e.getMessage());
    System.exit(1);
    image = image.getScaledInstance(200,200,image.SCALE_FAST);
    JLabel label = new JLabel(new ImageIcon(image));
    buttonPanel.add(label, BorderLayout.EAST);
    contentPane.add(label);
    The error is:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at Genim$choose.actionPerformed(Genim.java:223)
            at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
            at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
            at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
            at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
            at java.awt.Component.processMouseEvent(Unknown Source)
            at javax.swing.JComponent.processMouseEvent(Unknown Source)
            at java.awt.Component.processEvent(Unknown Source)
            at java.awt.Container.processEvent(Unknown Source)
            at java.awt.Component.dispatchEventImpl(Unknown Source)
            at java.awt.Container.dispatchEventImpl(Unknown Source)
            at java.awt.Component.dispatchEvent(Unknown Source)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
            at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
            at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
            at java.awt.Container.dispatchEventImpl(Unknown Source)
            at java.awt.Window.dispatchEventImpl(Unknown Source)
            at java.awt.Component.dispatchEvent(Unknown Source)
            at java.awt.EventQueue.dispatchEvent(Unknown Source)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
            at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
            at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
            at java.awt.EventDispatchThread.run(Unknown Source)THANK YOU VERY MUCH FOR YOUR HELP
    Message was edited by:
    princo

  • When clicking on images my imac takes me straight to the website the image is from insted of giving me the option to open the image in full size, what should I do to stop this?

    I have encountered an irritating problem in which my computer takes me straight to the image the website is from rather than give me the option to view it in full size. How can I prevent this from happening?

    When I do a search for an image in Google I click on a picture and see something like below:
    And then I click on the View Image button to see the picture in a new tab. That's been Google's normal behavior for quite a while.

  • Problem opening multiple images in external editor

    I have Photoshop CS3 set as my external editor. In the past I cpould select multiple photos using shift-click OR command-click and select "Edit in external editor" and Photoshop will open all the images. I notice that in the latest version of iPhoto 7.1.3 (maybe in other 7.x versions) it will only open the first four images. If you use command-click to select non consecutive images it will only open the first consecutive set, up the the maximum of four as above, and none of the other non consecutive but selected images.
    I have checked this with my separate TestAdmin account with the same result. Has anyone experienced a similar problem?
    Using OS 10.5.2, iPhoto 7.1.3, PS 10.0.1

    Mike
    This is exactly as the makers of the application intended. It will only pass four pics at a time to the external editor. My guess is they made this decision to avoid the problem of inexperienced folk opening their entire library in PS by accident. Also, if I recall correctly, this has always been the case - and it certainly was in v6.
    There is no workaround for this.
    Regards
    TD

  • Problem in setting image in setbouns  size

    hai to all
    iam new to core java i created an application with 4 fields and 1 button name is browse.
    my problem is image i want to set full image within specified setbounds it is possible in core java
    thanks please help me

    How to get help:
    - ask a clear question
    - use a meaningful topic
    - show what you have tried
    - use code tags
    - offer duke stars, and pay up once you get an answer
    - mark your post as a question and mark it as answered when done
    - don't multipost or crosspost like you did on your MS/Access post
    - don't demand help
    - Read the following http://www.catb.org/~esr/faqs/smart-questions.html
    If you do these you will get help instead of flames and trolls.

  • Random problem opening RAW images from I-photo into Camera Raw 4.1

    Hi there, sometimes when I double click an RAW .NEF image in i-photo it opens into the Camera Raw adjustement window and sometimes not. This is shots from the same shoot and they're all definitely .NEF files. The shots that have already opened always open in the CR window and the others don't.
    Any ideas? This is driving me crazy!
    I'm running Photoshop CS3 on a quad core intel Mac.
    Many thanks
    Max

    Max,
    Very few people here use iPhoto, if any.

  • Problems opening multiple images as layers from Lightroom 4 to Photoshop CS6

    I'm having trouble bringing multiple photos from Lightroom 4 into Photoshop CS6 as layers. In LR4, I select the multiple photos I want to bring in, right click and from the pop-up menu select "Edit In", then "Open as Layers In Photoshop...". Photoshop CS6 then opens but the photos do not load in. I then get an error in LR4 about a minute later that says "The files could not be edited because Adobe Photoshop CS6 could not be launched." However Photoshop just opened before I got the error. How do I fix this?

    Maybe a keyboard issue - shortcut key toggling multiple times. But, if you're sure your keyboard is fine, then try this:
    Reset LR preferences:Windows 7/ Vista: The preference setting file is Lightroom 4 Preferences.agprefs, in C:\Users\[user name]\AppData\Roaming\Adobe\Lightroom\Preferences\. Rename/ move this file to a different location. LR will recreate preferences during next launch. See if this fixes the issue. The reason we're renaming or moving it is so that if it doesn't fix the error, you can move it back there so you don't have to recreate your in-application preferences again
    Reset Photoshop preferences: Follow instructions here: http://forums.adobe.com/thread/375776
    See if either or one of the above suggestions works.
    -ST

  • Cannot open Raw images from 5d Mark II in CS3

    I'm back with more issues. I had this same problem opening raw images in CS3 from my 40d (I have Windows 7 64 bit). With your help I was able to fix that issue with a patch, but now I am having the same problem with opening raw images from my new 5d Mark II. Help again please!

    You need to familiarise yourself with this: 
    http://kb2.adobe.com/cps/407/kb407111.html
    You will see that, as a minimum, you need ACR 5.2, which needs Photoshop CS4 to work.
    If you don't want to upgrade, use the latest DNG converter which will make your images viewable and editable in CS3.
    It's here:  http://www.adobe.com/support/downloads/detail.jsp?ftpID=4620

  • HELP. ............Hi folks hope some one can help me please.Having a problem in Bridge I open my images in ACR,  as I open files in a folder and lets say they are labeled in yellow  they are all going back to  the camera raw default , in other words no ma

    HELP. ............Hi folks hope some one can help me please.Having a problem in Bridge I open my images in ACR,  as I open files in a folder and lets say they are labeled in yellow  they are all going back to  the camera raw default , in other words no matter what work I have done, inc cropping they  all go back to ,as they came out of camera. What on earth is happening? I am on PS CS6. I might point out everything was working normally up to  yesterday, when this first started.
    I recently changed computer to 64bit from 32bit, not sure if this causing  the problem or not. Any help would be appreciated.

    Robert,
    Would you be so kind to rephrase your question with concise, precise information and without any "let's say that" hypotheticals?  Sorry, I can't quite follow you.
    Also please give exact versions of Photoshop CS6 (13.what.what), of Bridge and of your OS.
    Thanks.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I am using Lightroom 5 and am hapy about it, but recently I hav encountered a problem when trying to edit an image in another program, i.e. Elements. I used the clone tool, saved the result and went back to Lightroom to open the image there. I did find a

    I am using Lightroom 5 and am hapy about it, but recently I hav encountered a problem when trying to edit an image in another program, i.e. Elements. I used the clone tool, saved the result and went back to Lightroom to open the image there. I did find a second copy, but this is identic with the one I already had in Lightroom, and I can see noe result of the clone process.

    At the moment I would say it is uncertain whether Acrobat is completely ignoring the change, or whether the changes you are making aren't affecting the ink density. I have a suggestion for a test you could make to see which is the case.
    When editing in Photoshop just add a box or mark on the image, for your tests.
    - If this box does not appear in Acrobat, you know Acrobat is not seeing the edit
    - If this box does appear in Acrobat, you know the problem is that your tool for changing ink densities is not taking effect.

  • Image size changes when moving an image between Lightroom and CC.

    Image size changes when moving an image between Lightroom and CC.
    I opened a .dng image in LR and then opened it in the Develop module.  I clicked on Crop Overlay and then on the ‘As Shot’ drop down menu (the lock is closed) and cropped to 11 x 17 and clicked ‘Done’-.
    I click Cntl-E and the image opens in CC.  There I click on Image > Image Size and the Image Size  is 13.288 inches by 20.533 inches.
    Why does the image size change?
    I believe there is a menu to control the size of the image and I've looked everywhere I can think of in LR and CC, I googled various descriptions and I checked two of Scott Kelby's books, but I just can't figure out how to keep the image a consistent size when moving between LR and CC.
    Help!...Please?

    The penny will drop soon or maybe the cloud will lift.
    In Lightroom all editing is undoable/nondestructive.
    Hence a crop of 3x2 is not inches, centimetres, pixels or anything else. It is jst a ratio. When a file is exported, either to PS or disk, then the crop ratio has size determined in respect of pixels and inches or cms.
    So my 6000x5000 pixel image I will crop to 3x2 that leaves (before exporting) a 6000x4000 file.
    Now when exported it can be set to export at
    100pixels per inch and will end up at 60x40" when printed.
    200pixels per inch will end up at 30x20"
    300ppi will end at 20x13.3"
    You will notice in the Crop Tool there are no size denominations such as inches or centimetres as an image file only has pixels and the determination of size is done through exporting or printing.
    Hope that helps somewhat..

  • Sudden problems opening images in RAW?

    never had this problem b4 in the past few years, but all of a sudden when I open my images in RAW they have RED BLUE OR Green solid areas inside the picture (seems to be the brightest areas of the photo) and make it difficult to adjust the settings this doesn't seem to move over to photoshop when I open after the changes are made, but only in bridge... did I inadvertently change some setting or was something changed in updates?? to make this happen?? Please Help

    Could be a video card driver problem.  Update to latest and see if that helps.
    If it does not, go to preferences/advanced and check software rendering and see it that solves problem.

  • Lightroom 4.2 changes color temp when opening existing image

    I have installed LR 4.2 two days ago, and have run into a serious problem.   When in develop mode, when I click on an image in the film strip, LR opens the image and changes the color temperature dramatically.  The blue/yellow slider moves to the far left.   I think this is the only change, but didn't check.
    The action is not in the history, so I cannot undo it.  When I quit and restart, the change is still there.  There is no way to recover the pre-existing setting.
    This is a serious problem obviously, so any advice on how to proceed is welcome.  Can I convert my catalog back to 3.6?
    Thanx,  Job Honig

    foto18, you're not alone in this: I have the same exact issue, and can't get to understand what's in LR's mind.
    I can even show pictures changing temperature in preview/full screen just because i select/deselect them.
    Of course, this throws away hours of previously done work - but maybe it's just me?
    Here and example: picture #2 is a virtual copy of #1. Right now, #2 is selected (we're in edit mode).
    Now I hover onto picture #1, and - voila'! - the temperature goes down. And if I go back and select #2 - bang! - temperature of #1 goes up again; on its own that is. This is bizzarre to say the least.
    Help much appreciated. Would love to provide this as a bug report - because that's what it really looks like anyways - rather than a forum input.
    Thanks,
    .salvo

  • I have both Photoshop 4 and Photoshop 6 on my computer. When I am in Bridge and want to open an image by double clicking, it automatically opens in 6. I see, when I go to "open with" 6 is listed as "default" How can I change the "double click" defult to o

    I have both Photoshop 4 and Photoshop 6 on my computer. When I am in Bridge and want to open an image by double clicking, it automatically opens in 6. I see, when I go to "open with" 6 is listed as "default" How can I change the default to open an image with a double click in 4?

    You can associate files from the Bridge level and the Desktop level.
    In Bridge CS4, go to Preferences > File Type Associations and change it to Photoshop CS4 for the file types you want.
    If you want to open files from the Windows Desktop in CS4, these are the instructions:
    Do this from the Windows Desktop:
    If you want your image file to open in Photoshop and it doesn't, right click on it and choose
    Open with > Choose default program… select Photoshop CS4 or CS6 and checkmark "always use the selected program to open this type of file".

Maybe you are looking for

  • Cannot print to HP LaserJet 400 colorMFP M475dw after updating OS

    I'm running a 2013 Macbook Pro, 2.4 GHz Intel Core i7, 8 GB 1600 MHz DDR3, OS version 10.9.4 (updated to this OS version 5 days ago, on July 2nd).  For a little less than a year I've been printing to a HP LaserJet 400 Color MFP M475dw via wireless co

  • Payslip with PDF (ADS)

    Hi, we'd like to use the payslip as a pdf-form (Customizing with transaction code HRFORMS and SFP). To realize the requirement we copied the standardform SAP_PAYSLIP_DE_P into customer namespace. During Customizing we could solve all problems except

  • HT4101 My 2 year old SD connector for the iPad 1 suddenly will not work.

    Is it possible that I need to replace it? I have downloaded around 700 photos.

  • Elements Upgrade to Mac

    Good afternoon, I am buying a mac. I have Photoshop Elements 9. I would like to upgrade to V11 but on the mac, can I buy the upgrade version?

  • 2010 MBP15 SMS sensor Z-axis not working?

    Hello all, Today I downloaded the Seismac utility: http://www.apple.com/downloads/macosx/math_science/seismac.html The X and Y axis appear to be functioning normally but the Z-axis remains at 1.00g at all times. I am somewhat concerned since this mea