Images are color-reversed i.e. "negative image"

Opened an existing file in pages that has jpeg images in it. They are reversed.
I pasted a new image into it. It is also reversed. In others words, mostly just a black square, but you can see the originally-dark areas as light areas.
A few months ago I upgraded my OS to Tiger.
thanks for any help.

If the image contains a color profiile, it's used.
Correct.
If not, a generic color profile is used that is appropriate for the file in some way.
Correct.
If you place a photograph with RGB image data, whether the file format is TIFF, JPEG, or PNG, and if there is no ICC profile in the image, the system automatically assigns the Generic RGB Profile.
In OS X 10.5 and lower this is for gamma 1.8 and 6500 Kelvin with Sony Trinitron phosphors. In OS X 10.6 and higher this is sRGB for a higher gamma and a paler, less punchy appearance.
When I don't embed the suggested color profile when saving from Photoshop, the colors are a little off when printing
Photoshop version 6 and higher has the ability to assign a source ICC profile while the image data is in Photoshop's memory and is shown in the ColorWorld configured for Photoshop window, but not to include that ICC soruce profile when the image data is saved to disk.
The following application then has to assume a source ICC profile and assign that when configuring a ColourWorld, the principle of thing being that a colour matching session, called a ColorWorld, has to have an ICC source, one or more ICC intermediate, and a destination ICC profile.
If it helps, take a look at the posts by the previous Product Manager for Colour and Imaging, John Zimmerer. These posts apply to Mac OS X 10.3 and higher.
ColorSync and printing -- Panther (1 of 2)
http://lists.apple.com/archives/colorsync-users/2003/Dec/msg00320.html
ColorSync and printing -- Panther (2 of 2)
http://lists.apple.com/archives/colorsync-users/2003/Dec/msg00316.html
/hh

Similar Messages

  • Images are not progressively loading - waits for image to complete loading.

    Ever since I made my new PC, I have had a problem with all browsers not loading images progressively. That is to say, images wait until they are fully loaded until showing up. This is extremely annoying as it makes browsing slower on my already slow Australian net. I have tried going into firefox safe mode and disabling plugins such as nvidia 3D.
    Anyone have any ideas as to how I can fix this?

    Hello donosaur, try the next :
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''', to continue to the about:config page.
    # type/find (or copy paste from here) '''browser.display.show_image_placeholders'''
    # double-click on it to make it '''false'''.
    (If browser.display.show_image_placeholders is set to True(default) then image placeholders will be shown until images on a page are fully loaded. If is False, these are not shown, and this can provide a more "cleaner" look as pages loads the images.)
    thank you

  • AVI files are color reversed

    Hi. I've been given a disk with a few AVI files in them. They came from a high-speed panasonic video camera. When I open them in FCP or QT, the colors are all messed up. The basic picture is there but instead of what it should be, everything is brilliant yellows and pinks.
    Could this be a CODEC issue? Any suggestions?
    Thanks in advance,
    Mark
    FCP 6.0.6

    This sounds like a color space transformation issue: the conversion from the internal working color space of the Panasonic WRAW to the output color space (RGB) is not happening.
    You'll need to find an application that can open the files in their native color space and the convert them for you. It's not uncommon for specialized software to be needed to open raw files. And, there are numerous "raw" formats, new ones keep getting introduced and some get abandoned.
    The support pages for the camera that shot the clips are probably the best place to check. That, or a user forum for those who have shot or shoot with this camera.
    -Warren

  • After editing and adjusting color and exposure of a RAW image, the color goes weird on some images after clicking "Done"

    This is happening randomly to some photos within a batch of imported photos. I can restore to the original RAW format, but then it will again go weird and dull after trying the edit again.

    There are 9 different versions of iPhoto and they run on 10 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • When I print a few pages of a document the pages are color reversed  ie black backround white letters.  Why?

    When I have a document lets say 10 pages and I want to print pages 3 through 6, the pages come out black backround white letters.  Why?

    Hi James,
    Since when are you facing this issue?
    Does this happens with the specific pdf file or with all the pdf files?
    Did you tried printing any document using any other program? if yes, does the same problem occurs?
    Regards,
    Rahul

  • To retain color space value for Monochrome images during flattening.

    In our project, we are extracting image content from PDF file and doing some raster operation by using LeadTool and then flattening the processed image in PDF file.
    Input PDf file: One page which has monochrome image
    For extracting image content from PDF file, we are using below Acro Plugin API:
    AVConversionConvertFromPDFWithHandler
    After this, we will perform some raster operations by using LeadTool and then flattening will happen.
    While doing flatten we are performing below operations in sequence:
    1. Set bitspercomponent  =1.
    2. Create a new color table using DeviceRGB.
    3. Create image by using below Acro Plugin API:
    pdeimage = PDEImageCreate(&attrs, sizeof(attrs), &matrix, 0, cols1, NULL, &fil, asstm, NULL, 0);
    4. Add image in PDF content.
    Now flattening is successful, but monochrome(Original Image format) is changed to RGB. We want to retain the color space(DeviceGrey).
    We have tried the below solution to retain the color space:
    1. Using the old image's color space value for new image creation. But this gives inverted color(Black to White and vice versa)
    Please help us to retain the color space while flattening.

    We are using JPG file format.
    Please find below the code portions which we used to add image in PDF file,
    //Read Image Data
    ========================================================================================== ==================
    ASBool ret = TRUE;
    // analyze img
    ASInt32 index = 0, quadSize = 0;
    BITMAPFILEHEADER* bmfh = NULL;
    // BITMAPFILEHEADER
    if(  !bQuadSize )
      bmfh = (BITMAPFILEHEADER*)img;
      index += sizeof(BITMAPFILEHEADER);
    // BITMAPINFOHEADER
    BITMAPINFOHEADER* bmih = (BITMAPINFOHEADER*)(img+index);
    index += sizeof(BITMAPINFOHEADER);
    // RGBQUAD
    if( !bQuadSize )
      quadSize = bmfh->bfOffBits - sizeof(BITMAPFILEHEADER) - sizeof(BITMAPINFOHEADER);
    else
      quadSize = size -  bmih->biSize -  bmih->biSizeImage;
    ASInt32 rgbquadNum = 0;
    char* quad = NULL;
    if (quadSize > 0)
      rgbquadNum = quadSize/sizeof(RGBQUAD);
      quad = (char*)(img+index);
      index += quadSize;
    // Image
    //ULONG imgSize = size - bmfh->bfOffBits;
    char* image = (img+index);
    DURING
       if(!pd)
        E_RETURN(FALSE);
       PDPage pp = PDDocAcquirePage(pd, page-1); // Get Page(PDPage) of specified page number
       PDEContent pdeContent = PDPageAcquirePDEContent(pp, gExtensionID); // Get PageContent(PDEContent)
       ASInt32 numElems = PDEContentGetNumElems(pdeContent);  // Get PageContent num
       // Check BitMap width, height, biXPelsPerMeter, biYPelsPerMeter changed
       ASFixedRect mb;
       PDPageGetMediaBox(pp, &mb);
       ASFixedRect chgMediaBox;
       memset(&chgMediaBox, 0 , sizeof(ASFixedRect));
       if (paperSizeChangeType == PAPERSIZE_SIZESPECIFICATION)
        chgMediaBox.right = width;
        chgMediaBox.top = height;
       // Get PDEImage's Attributes & Filters & ColorSpace from Old Image in PDF file
    ========================================================================================== ===================================
       PDEElement pdeElement;
       ASInt32 importIndex;
       ASInt32 type;
       PDEImageAttrs attrs1;
       PDEColorSpace cols1;
       //ASAtom colname;
       PDEFilterArray fil1[20];
       ASInt32 filNum1;
       ASFixedMatrix matrix1;
       bool isTransformedPage = false; //EV2.8.02000_19651_Retain color space_20141016
       for (int i = 0; i < numElems; i++)
        pdeElement = PDEContentGetElem(pdeContent, i);
        PDEObject obj=_objHelper.TraversePDPageContentsImage((PDEObject)pdeElement);
         if(obj == NULL)
          continue;
         pdeElement= (PDEElement)obj;
        type = PDEObjectGetType((PDEObject)pdeElement);
        if (type == kPDEImage)
         // Get Attr
         PDEImageGetAttrs((PDEImage)pdeElement, &attrs1, sizeof(PDEImageAttrs));
         // Get ColorSpace
         cols1 = PDEImageGetColorSpace((PDEImage)pdeElement);
         // Get Filter Array
         filNum1 = PDEImageGetFilterArray((PDEImage)pdeElement, fil1);
         // Get ASFixedMatrix
         PDEElementGetMatrix(pdeElement, &matrix1);
         //EV2.8.02000_19651_Retain color space_20141016 - Start
         if (matrix1.a < 0 || matrix1.b < 0 ||
                        matrix1.c < 0 || matrix1.d < 0 ||
                        matrix1.h < 0 || matrix1.v < 0)
          isTransformedPage = true;
         //EV2.8.02000_19651_Retain color space_20141016 - End
         // Set Import and Delete Index
         importIndex = i;
         break;
       // Create image data (for PDEImage)
    ========================================================================================== =================================
       ASInt32 bitPerComponent = bmih->biBitCount;
       ASInt32 bitWidth = 0;
       ASInt32 width1 = bmih->biWidth;
       ASInt32 height1 = bmih->biHeight;
       // Create image size
       if (bitPerComponent == 1)
        if (width1%8)
         bitWidth = (width1/8) + 1;
        else
         bitWidth = width1/8;
       else if (bitPerComponent == 4)
        if (width1%2)
         bitWidth = (width1/2)+1;
        else
         bitWidth = width1/2;
       else if (bitPerComponent == 8)
        bitWidth = width1;
       else if (bitPerComponent == 32)
        bitWidth = width1*4;
       else // if (bitPerComponent == 24)
        bitWidth = width1*3;
       ASInt32 imgSize4Acrobat = height1 * bitWidth;
       char* image4Acrobat = (char*)ASmalloc(imgSize4Acrobat);
       if( image4Acrobat == NULL )
        E_RETURN(FALSE);
       memset(image4Acrobat, 0, imgSize4Acrobat);
       // Create image
       ASInt32 nokori = (bitWidth)%4;
       ASInt32 bitWidth4hokan = 0;
       if (nokori)
        bitWidth4hokan = bitWidth + (4-nokori);
       else
        bitWidth4hokan = bitWidth;
       ASInt32 hbw = 0;
       ASInt32 hbw4hokan = 0;
       if (bitPerComponent == 1)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         memcpy((image4Acrobat+hbw), (image+hbw4hokan), bitWidth);
       else if (bitPerComponent == 4)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         memcpy((image4Acrobat+hbw), (image+hbw4hokan), bitWidth);
       else if (bitPerComponent == 8)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         memcpy((image4Acrobat+hbw), (image+hbw4hokan), bitWidth);
       else if (bitPerComponent == 32)
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         for (int kk = 0; kk < bitWidth; kk += 4)
          *(image4Acrobat+hbw+kk) = *(image+hbw4hokan+(kk+3));
          *(image4Acrobat+hbw+kk+1) = *(image+hbw4hokan+(kk+2));
          *(image4Acrobat+hbw+kk+2) = *(image+hbw4hokan+(kk+1));
          *(image4Acrobat+hbw+kk+3) = *(image+hbw4hokan+(kk));
       else
        for (int k = height1-1, l = 0; k >= 0; k--, l++)
         hbw = l*bitWidth;
         hbw4hokan = k*bitWidth4hokan;
         for (int kk = 0; kk < bitWidth; kk += 3)
          *(image4Acrobat+hbw+kk) = *(image+hbw4hokan+(kk+2));
          *(image4Acrobat+hbw+kk+1) = *(image+hbw4hokan+(kk+1));
          *(image4Acrobat+hbw+kk+2) = *(image+hbw4hokan+(kk));
       //Invert Image Data
    ========================================================================================== ================================
       for(int it = 0; it < imgSize4Acrobat; it++)
          image4Acrobat[it] = 255 -image4Acrobat[it];
       // Open Image Data
    ========================================================================================== ================================
       ASStm asstm = ASMemStmRdOpen(image4Acrobat, imgSize4Acrobat);  
       // Create PDEImage Attribute etc.
    ========================================================================================== ================================
       PDEImageAttrs attrs;
       memset(&attrs, 0, sizeof(PDEImageAttrs)); // necessary
       attrs.width = width1;
       attrs.height = height1;
       if (bitPerComponent == 1) {
        attrs.bitsPerComponent = 1;
        if (rgbquadNum) {
         attrs.flags = kPDEImageIsIndexed | kPDEImageExternal; // Indicates image uses an indexed color space.
        } else {
         attrs.flags = kPDEImageExternal; // Indicates image is an XObject.
         // B&W
       } else if (bitPerComponent == 4) {
        attrs.bitsPerComponent = 4;
        if (rgbquadNum) {
         attrs.flags = kPDEImageIsIndexed | kPDEImageExternal; // Indicates image uses an indexed color space.
        } else {
         attrs.flags = kPDEImageExternal; // Indicates image is an XObject.
       } else if (bitPerComponent == 8) {
        attrs.bitsPerComponent = 8;
        if (rgbquadNum) {
         attrs.flags = kPDEImageIsIndexed | kPDEImageExternal; // Indicates image uses an indexed color space.
        } else {
         attrs.flags = kPDEImageExternal; // Indicates image is an XObject.
       } else if (bitPerComponent == 32) {
        // not support (acrobat)
       } else { // (bitPerComponent == 24)
        attrs.flags = kPDEImageExternal;  // Indicates image is an XObject.
        attrs.bitsPerComponent = 8;
       // matrix
       ASFixedMatrix matrix;
       memcpy(&matrix, &matrix1, sizeof(matrix1));
       if (paperSizeChangeType == PAPERSIZE_SIZESPECIFICATION)
        matrix.a = chgMediaBox.right;
        matrix.b = 0;
        matrix.c = 0;
        matrix.d = chgMediaBox.top;
        matrix.h = 0;
        matrix.v = 0;
       // Filter
       PDEFilterArray fil;
       memset (&fil, 0, sizeof (PDEFilterArray));
       PDEFilterSpec spec;
       memset (&spec, 0, sizeof (PDEFilterSpec));
       memcpy(&fil, &fil1, sizeof(PDEFilterArray));
       CosDoc cosDoc;
       CosObj cosDict;
       // Build the CosObj for the filter specification
       cosDoc = PDDocGetCosDoc(pd);
       cosDict = CosNewDict(cosDoc, false, 2);
       CosDictPut(cosDict, ASAtomFromString("K"), CosNewInteger (cosDoc, false, -1));
       CosDictPut(cosDict, ASAtomFromString("Columns"), CosNewInteger (cosDoc, false, width1));
       //memset the filterspec so there are no garbage values if we leave members empty
       spec.encodeParms = cosDict;
       spec.decodeParms = cosDict;
       spec.name = ASAtomFromString("CCITTFaxDecode"); 
       fil.spec[0] = spec;
       // Create PDEImage
    ========================================================================================== =================================
       PDEImage pdeimage;
       pdeimage = PDEImageCreate(&attrs, sizeof(attrs), &matrix, 0, cols1, NULL, &fil, asstm, NULL, 0);
       // Delete PDEImage at importIndex(==j) of page -> Delete old image in PDF file
    ========================================================================================== ====================
       PDEContentRemoveElem(pdeContent, importIndex);
       // Add PDEImage
    ========================================================================================== ==========================
       PDEContentAddElem(pdeContent, importIndex, (PDEElement)pdeimage);
       PDPageSetPDEContent (pp, gExtensionID);
       PDPageReleasePDEContent(pp, gExtensionID);
       // Release object
       PDERelease((PDEObject)pdeimage);
       PDPageNotifyContentsDidChangeEx(pp, TRUE);
       PDPageRelease(pp);
       ASStmClose(asstm);
       if (image4Acrobat)
        ASfree(image4Acrobat);
       if (lookupTable)
        ASfree(lookupTable);
      HANDLER
       ret = FALSE;
      END_HANDLER
    return ret;

  • Why images are displaying in my report

    Hi All,
    I did the same what is given below link. But my images are not displaying. Instead Displaying image it showing Red crose mark. I am tyring from last 2 hours on this report. Plese help me'
    http://apex.oracle.com/pls/otn/f?p=31517:64:4266884323686795::NOThanks
    Nr

    Hi Gunasekhar,
    You might have just added URL in "Choose Screen" window.
    If you add URL here means you should be connected to Internet everytime you execute your Web template or if you have given a path in your system where the image is present, the image should be present in the similar path in other system too to make the Web template execute and to display the image through webb template.
    If you want to display the image everytime you execute your template, you need to upload the image in MIME repository... Tcode : SE80.
    To import a number of MIME objects into the MIME Repository using the MIME Repository Browser:
           1.      Start the browser of the MIME Repository. (SE80)
    The browser is displayed. It overwrites the navigation area (left-hand side).
           2.      Expand the Repository’s hierarchy and select the "BEx" folder.
           3.      Choose Import --> MIME-Objects from the context menu.
           4.      Select a MIME object from the file structure on your local hard disk of your computer.
           5.      Enter the MIME attributes and choose  Save.
    Since the object is imported into the SAP System, the dialog box Create Object Directory Entry is displayed.
           6.      Assign a package to the MIME object and choose  Save.
    Now give the path of the MIME repository in the Menu --> Insert --> Picture... --> Choose Screen --> URL...
    Give below path in the URL space provided there.
    /sap/bw/Mime/BEx/Icons/XXX.jpg
    This uses the image present in BW so you will not get "X" mark whenever you execute your report anywhere.
    Regards,
    KK.

  • 'Minimum Image Area' as PNG Sequence

    Hi.
    I don't know if this problem has been addressed before - I
    did do some Googling but found nothing.
    I am using Flash 8, and I want to export all frames of the
    movie as a series of numbered PNG files. It is important that I use
    PNG files because I need the alpha channel. I also want the files
    to use the Minimum Image Area option - not necessarily taking the
    minimum area for each
    particular frame, but for it to take the largest area and
    use that as the size for all images.
    However, all this does it just use the full document's
    dimensions. I have checked each frame to see if I had something on
    the edge of the screen by accident, but this is not the case.
    BUT: If i choose Minimum Image Area for just
    one frame ("Export Image") as a PNG file, it correctly takes
    the smallest image area. Is Flash not capable of taking the minimum
    image area for an whole set of frames?
    There is one obvious solution I can think of, which is to use
    "Edit Multiple Frames" and select every frame of the movie at the
    same time, then set the document's dimensions to fit it. I will do
    this if there is no other option or no way to fix this, but I just
    wanted to know if anybody else knew of this problem and what they
    could say about it.
    [EDIT]: I asked a friend of mine to try doing the same thing
    on Flash CS3, and exactly the same happened. I think I may have
    stumbled across an actual bug here. I feel special :D

    Yeah, that seems the most apparent solution. I mean, it's not
    a big problem, I just find it weird that minimum image area has no
    effect whatsoever when exporting the movie as a sequence instead of
    an image.

  • Images are saving as copies?

    I have just finishes working on a set of images in photoshop (CS4) when I save them to a USB they save as copies (together with right facing arrows)....what am I doing wrong?

    it's   version 10.6.8
    Date: Thu, 1 Dec 2011 18:25:51 -0700
    From: [email protected]
    To: [email protected]
    Subject: images are saving as copies?
        Re: images are saving as copies?
        created by Tai Lao in Photoshop Macintosh - View the full discussion
    Well, you deleted your post #3, but here goes my response anyway: Go to the Apple menu > About this Mac > OS X > Version Number  http://forums.adobe.com/servlet/JiveServlet/downloadImage/99314/OS_vers.jpg  Lion would be version !0.7, !0.7.2 and higher. Lion did away with Save As in favor of Save as Copy.

  • Images are ghosted, text and background colors are reverted

    My 12 in Powerbook fell from its stand on the wireless keyboard. Now all images are ghosted and the text has gone from black to white and the background has gone from white to black. On startup everything is fine until everything is loaded, then the changes kick in, colors reverse, and the images become ghosted. What do I do?

    Joseph
    It might be possible that the "Switch to white on black" setting in Universal Access has been activated.
    Try pressing the following key combination: apple-alt-control-8
    EDIT: It may be worth checking out the PowerBook with the Apple Hardware Test.
    2.0GHz MacBook, 15" 1.25GHz/12" 1GHz PBs, 2xPPC Mac minis, 12" iBook G4,   Mac OS X (10.4.8)   Cube, 2xTAMs, iPod 4G & nano 2G, 1G & 2G iPs, AEBS, AX

  • I am trying to connect a Macbook Pro to a projector for a Powerpoint presentation. When I use a VGA cable, the color of the projected images are not good. When I use a USB cable, the projected image includes the presenter notes on my computer screen?

    I am trying to connect a Macbook Pro to a projector for a Powerpoint presentation. When I use a VGA cable, the color of the projected images are not good. When I use a USB cable, the projected image includes the presenter notes on my computer screen?

    To move an iPhoto Library to a new machine:
    Link the two Macs together: there are several ways to do this: Wireless Network,Firewire Target Disk Mode, Ethernet, or even just copy the Library to an external HD and then on to the new machine...
    But however you do choose to link the two machines...
    Simply copy the iPhoto Library from the Pictures Folder on the old Machine to the Pictures Folder on the new Machine.
    Then hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Choose Library'
    and select the Library that you moved.  That's it.
    This moves photos, events, albums, books, keywords, slideshows and everything else.
    Your first option didn't work because you imported one Library to another. Every version and thumbnail is imported like a distinct photo, you lose all your Albums, Keywords etc., the link between Original and Previews is destroyed, the non-destructive editing feature is ruined and so on. In summary: it's mess.
    Your second option didn't work because you simply referenced her library on the old machine.
    Regards
    TD

  • I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Tha

    I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Thanks

    What is the problem specifiaclly?
    If the images are intended for web use I would recommend converting them to sRGB which could be done with Edit > Convert to Profile or with File > Save for Web, but as including a Save step in Actions and applying them as Batch can sometimes cause problems I would go with regular converting.
    You could also try Image Processor Pro.
    Scripts Page

  • HP LaserJet 200 color M251nw prints, but images are blurred.

    Laserjet200 (HP LaserJet 200 color M251nw) prints, but images are blurred; sometimes the entire page and other times just the right half. Staples tech said the drum could be bad. Can this be corrected? Using W7 ultimate OS.

    Hi @jimmanning ,
    I see by your post that the images are blurred. I would like to help you.
    Run a calibration on the printer.
    On the printer touch the wrench, system setup, print quality, color calibration calibrate now.
    Print a Diagnostics Page to see if you have the same results. Trying to determine if it is a hardware or software issue.
    Go to Setup, Reports, arrow down and select Diagnostics Report.
    I have provided a document with more steps for running a cleaning and checking print driver settings.
    Troubleshooting Print Quality Issues.
    Remove the toner and check to see if there is any toner on drum.
    Make sure the paper type is selected to the media that you are using, not the default setting unspecified.
    Please provide the following information so I can assist you better.
    What were the results of Diagnostics Page and Print Quality Page?
    Are you using Genuine HP Toner?
    What are the Ink levels?
    Was there any damage on the toners?
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Some images are showing with some red color ¿how do I return to original colors?

    I`m using Mountain Lion and everything works right. Only some images are showing with a redish color. The first example is my cover photo in fb. When I click it, it returns to the original color. Anyone who has this problem and know how to fix it?
    This is fb cover preview:
    This is the original, when cliked:
    It happens with some thumbnails too.

    Hi Klaus,
    this didn't solve my problem but helped me choose Firefox over Safari.
    thanks for the reply.
    mark

  • My RGB colors are turning to cmyk while bringing image from illustrator or photoshop. Why?  Removing the image from that page bright RGB colors are back.. hmm

    My RGB colors are turning to cmyk while bringing image from illustrator or photoshop. Why? 
    Removing the image from that page bright RGB colors are back.. hmm

    Edit > Transparency Blend Space > Document RGB

Maybe you are looking for

  • Password bios hp mini 110-1110el help

    HI, when i start the netbook, the sistem ask my a password with this message: Enter CURRENT Password. can help me Pease. thanks best regards This question was solved. View Solution.

  • Only half of a song playing?

    I just brought a song of the iTunes store, it downloaded fine but only half of the song plays. It plays up until about 2 minutes and then goes on to the next song... Why does it do this =/

  • Tds from customer entry

    Hi, At the time of payment received from customer TDS is deducted.but the customer has only sent the TDS certificate & the payment is not yet done by him.in such a scenario if i only want to pass an entry for the TDS without passing the payment entry

  • My iMac has been remotely wiped

    My iMac has been remotely wiped and I do not have the passcode it has been disabled, can it be used again and if so how can this be done, ? I am new to Mac and have very limited technical knowledge thank you

  • Word 2003 vs. Word 2007

    Hi everyone - I've been running Office 2003 on my laptop, but since I sync-ed my Pearl, whenever I start Word it puts me into "compatibility mode", which somehow forces me to work on my '03 docs in '07.  Any idea how I can go back to using Word '03 o