Images not rendred properly in a pdf CFDOCUMENT

Hi,
I'm creating a pdf document which contains color and greysacle jpg image.
About half of the greyscale images are much whiter than the original.
I've read about some problem with image scaling, but not about this one.
Any idea ?

Hi Dana,
Which settings are you considering and what are the performance issues?
You can optimize for certain workflows that will adjust processor intensive work, such as only generating large previews when displayed. If you're strictly talking about video card accelerated features, I think it's more a matter of On or Off as opposed to performance tuning. I just did a quick look and with video card acceleration enabled, in Full Screen Preview you can pan the image at magnifications much smoother.
regards,
steve
Message was edited by: steve guilhamet

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 =(

  • 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 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.

  • Image not displaying properly in pdf report

    Hi,
    I have imported a jpg image on the layout using Reports builder 6i folowing File-Import-Image. Its just a static image. Once i move this report to the server in binary mode and open it from apps(Quote pdf report), the report pdf has the image displayed with half side pitch blank color and the other half side with the actual picture. Can you guide what should i do to display the mage properly.
    Thanks.

    Hi,
    Resolved this problem.
    I had 2 more images in the same report, one jpeg & another one in gif format. I removed the image in gif format, converted it into jpeg format & imported back in report layout. Thus, making all three images in the report in the same format(Jpeg).
    Once I have all images of the same format in a report. It works fine.
    Regards.

  • Imorted barcode graphics in FrameMaker 10 are not displaying properly in my PDFs

    I have imported barcode graphics (that were embedded in a Microsoft 1997 Word document and I don't have the original imported images) into FrameMaker 10. However, when I create a pdf and view it in Adobe Reader 10 or Adobe Acrobat 10.1.3 and then print the document, the barcodes will not scan. Some of the barcodes are code 39. If I print the FrameMaker document, the barcodes don't scan either. The barcode graphics also don't display properly in Microsoft Word, but they scan fine from the Word document and the pdf. I can get the barcodes to display properly in Word if I right-click on the barcode and select Edit Picture.
    I have tried importing the Word document into FrameMaker, making bitmap images of the barcodes in Photoshop and then importing them into FrameMaker and trying to do a special paste into FrameMaker. However, the barcodes still don't look right, print right or scan at all.
    I don't have a lot of experience with barcodes, graphics or FrameMaker, so any light that can be shed on this issue is appreciated.

    OK, to simplify this a bit, a barcode is not an exotic specie -- it's just
    a graphic file. If you embed a crisp .PNG or .PDF in FM it should print
    correctly, no matter what the subject matter is.
    What I'd do is either:
       - Select the graphics in Word and Save As Image to export them (or just
       save the Word file as HTML -- it'll write out the graphics as .JPGs, but at
       least they'll be there. Or
       - if the barcodes have a legend on them (usually numbers on the bottom
       of the code) just go to any of the online Bar Code generation sites and
       pump them in to get a fresh graphic.
    Then:
       1. Save or convert the graphic to something besides a .jpg. --- a .png
       or PDF -- In Photoshop or another editing program, bump the resolution to
       300 dpi or so for print quality resolution. If necessary, convert it to
       black and white and clean up any grey edges.
       2. Import into Frame.
       3. Print to the Adobe Acrobat logical printer; don't use SaveAsPDF. Pick
       a job option that doesn't apply .jpg compression to images -- it'd be
       better not to downsample them at all.
    Art
    Art Campbell
              [email protected]
      "... In my opinion, there's nothing in this world beats a '52 Vincent and
    a redheaded girl." -- Richard Thompson
                                                          No disclaimers apply.
                                                                   DoD 358
    I support www.TheGrotonLine.com, hyperlocal news for Groton MA.

  • 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/

  • Scanned Images Not Viewing Properly

    So a weird thing has happened this evening. I spent most of the afternoon scanning in old photos using Image Capture. I have a bunch of jpeg files at 300 dpi of these photos. I can see all of the images in Finder on the folders I created on my desktop, however when I import those folders into iPhoto the images just become black squares. If I double click on the black square I can see the image, but I don't understand why I can't see the images without clicking on them. I have done this the same way previously with satisfactory results. What am I doing wrong this time? Some of these images are b/w and some are color...

    Welcome to the Apple Discussions. You scanned the B/W photos as grayscale color mode and iPhoto doesn't support color scale. You'll need to convert them to the RGB color mode and add the sRGB color profile with a 3rd party application or rescan them as color photos.
    You can use ColorSync Utility to assign the sRGB color profile to the photos.
    If you have Photoshop Elements or PS you can convert them also.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Large images not displaying properly in Acrobat Pro 9

    When creating PDF documents from any software (Illustrator, Corel, InDesign, etc), color objects over 50% of the page size have white fill. If object has an outline, the outline will appear normally, but the fill will be white. I've searched forums everywhere and have found no answer. Most forum topics on this are issue focus on settings in the program that exported the PDF. I am 99% sure this is not an export problem, but is something in Acrobat itself (a missed setting? Corrupt program file?)  
    To provide the best information, I've done a little scientific research. Here is what I know:
    Currently running Acrobat Pro 9.5.5
    This is only happening on ONE install of Acrobat 9. Documents display correctly in Reader X and in Acrobat 9 on other machines.
    Started happening a few weeks ago, I have no idea what changed.
    "Show Large Images" in preferences dialog is checked. Unchecking it and rechecking it does nothing.
    Have installed all available updates to the software
    I experimented with different object sizes. At 50% of page size, objects appeared normal, at 51% filled object disappears.
    Does not affect photos, only affects vector objects.
    I welcome all ideas to fix this.
    ALSO - Am running this on Windows Vista 64 Bit

    Hello? Is there nobody in the Adobe universe that has an actual solution to my problem?
    Other things I've tried to solve this:
    repair the install.
    uninstall and reinstall
    cuss at the computer
    throw a tantrum.
    I will pay someone a whole dollar for a solution that works.

  • PDF files is not displayed properly in Adobe PDF version 11.0.06

    have one pdf which can be viewed perfectly in Adobe version 9.
    The same PDF is not properly opening clearly in Adobe 11.
    My Adobe Pdf version is 11.0.06.
    PDF file info. This PDF has been created by iText 2.1.7 api from java
    File version of PDF file is 1.4
    PDF file can be viewed well in Adobe version9 but not in Adobe 11.
    Adobe 11 displays like this.
    Any one aware wahts wrong.
    Appreciate your help.

    Can you share a sample file like this?  See http://forums.adobe.com/thread/1408375

  • 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

Maybe you are looking for

  • Change the name in Automater, so it sticks in iTunes?

    Hello everyone I have this.. Well, minor problem. I have renamed an audiobook with Automater on my Mac in Finder, but when i import it into iTunes, it changes back to the original filename, "Track 01" and so on. I have manually changed the names in F

  • Apache does not find index.php if not explicitly stated in URL

    I have googled for long over this (mod_dir ?) problem without success: My Apache is configured such that it fails to open this link (without trailing slash): http://bioinfo.tg.fh-giessen.de/cancer However, it manages to open if the trailing slash or

  • Frustrated install of 9ias r2 w/infrastructure and Portal on hpux11

    I'm trying to install portal on an hp9000 running hpux11 I've gotten to the interoperability patches for 9.0.2 r2 and I just finished patching ldap then started OID and then tried to start em when I get an exception and core dump. An unexpected excep

  • Nokia Music fails after FP2 firmware upgrade

    I updated my 808 PureView (product code 059P8D4) today using the over the air method and I have discovered that Nokia Music no longer works. My 808 came with a 12 month subscription to Nokia Music and 40 lakhs of value. Now I am not able to use that.

  • Inserted expression not in mail

    Hi all, I have implement a workflow, where a production order (BUS2005) is created and the order number is saved in a form. Then i have created a mail step to send the order number. But by execution only the entered text will be send, not the express