White images on steam problem

Hi, I install Arch linux with openbox, nouveau(I have nvidia gforce mx 4000, I can't install nividia's legacy driver 96xx because I don't know how downgrade Xorg server) and steam, when I start steam from xTerm and I get this:
>>moderator edit: Removed large image. Read Forum Etiquette: Pasting Pictures and Code. Thanks. --fsckd<<
What can I do?
thanks in advance ^^
P.D:I use this: https://wiki.archlinux.org/index.php/Au … al_console for auto log in in tty1 and the command 'startx' for enter the openbox
Last edited by fsckd (2013-09-28 13:44:19)

Have a look at https://wiki.archlinux.org/index.php/Nouveau for debugging solutions. Try various nouveau xorg options such as GLXVBlank to see if it helps

Similar Messages

  • Hi, sometimes big images could not open with photoshop.ı can open with windows but cant open photoshop.if ı try to open i am seeing a white image.is there any answer for this problem please.

    hi, sometimes big images could not open with photoshop.ı can open with windows but cant open photoshop.if ı try to open i am seeing a white image.is there any answer for this problem please.

    Just to assist those who might help you with this, please give the exact version of Photoshop CS6 you are running, for instance CS6 13.0.1.3.
    I had already asked for that in my previous post, but I guess you didn't quite know what I was referencing when I typed "exact version".
    Sorry, I cannot help you myself because I don't deal with that kind of 3D images, don't use Windows, and in all frankness I'm not quite following your last post.
    Also please give the exact model of your graphics card, so they can check whether it is on the list of cards tested by Adobe.
    Thank you.

  • MacBook - Black & white image on TV

    Please can somebody help with connecting my MacBook to a Sony trinitron TV
    I have a new MacBook and I'm using the following set up to connect to a 5 year old Sony TV -
    Apple mini-DVI to video converter into S-video lead connected to S-video to SCART adaptor - problem is that I only get a black & white image.
    Can anybody help = please?
    13" white MacBook   Mac OS X (10.4.9)  

    Hi essman,
    As S-Video cables send their chroma (colour) and luminance (brightness) signals separately it sounds as though the problem may be found either in your S-Video cable or in one of the S-Video connectors. If only the luminance pins/wire was working correctly your video signal would appear to be in black and white.
    To ensure that the SCART adapter is not the problem however I would recommend testing with a composite video cable (also known as an RCA.) With that cable the entire video signal is sent over the one pin, so you either get video or you don't. If over that connection it's still black and white, I would say the blame lies with the SCART adapter.
    Hope this helps!
    Jason

  • PSE 8 coloring a black and white image

    Okay, so I downloaded a free trial of PSE 8, so my experience with it is limited, which may contribute to my problem. I've watched tutorials on how to add color to a black and white photo using the paintbrush tool, though I haven't watched one for PSE 8.
    I'll make a new layer, paint part of the picture, and then add another layer. But when I click a different color to paint with, it changes the color of what I already painted, even though I'm on a different layer.
    Also when I tried to just save the image with one part painted, it didn't save it, and the image looked as it did originally.
    Any help is appreciated! Thanks!

    Hi,
    Are you using the right tool to paint on a layer?
    For coloring a black and white image, you need to save different areas of your image on a different layer and then use either Paint brush or a Paint bucket tool.
    It seems that you are selecting a wrong tool. For selecting Brush, press B.
    Then try painting on one part of the image and then go to the the color swatch present at the end of the tools panel on the left as :
    Now click on the foreground color swatch(on the top) to change the color with which you want to paint.This will not change the color of other layers on changing the color.
    Cheers
    Swarnima

  • Epson scanner and image capture: blank white image

    I've been trying to make an epson perfection 1670 scanner work on an iMac running 10.6.4
    Since epson no longer specifically supports this model I am going to Image Capture and the epson drivers supplied by Apple. I have downloaded/installed the updated drivers twice (once via software update and once manually from apple support).
    I can get image capture to recognize the scanner and perform preview and full scans.
    The frustrating thing is that the image generated is completely blank; a white page. I have tried using the scanner and image capture on two other mac's (macBook pro, macBook) both running 10.6.4 and both of these produce the same white page (although they do recognize the scanner).
    I thought the scanner may have finally broken so i tested it on another (old) iMac G3 running os x 10.4.11 and epson's scanning utility; it worked fine and made a nice scan.
    I have tried to get epson's scanning utility to work under 10.6.4 by reinstalling it; I can get it to startup and run the scanner but it too produces a blank white image!
    I conclude there is some basic software incompatibility between the drivers and os x 10.6.4. Its odd that the drivers and image capture can run the scanner but cannot send an image to the computer.
    The epson driver in the latest apple update is version 5.2.5 (Copyright 2003 ???) while the latest driver on the epson site (for image capture) is 5.3. Tried to download the epson driver and got file not found (*!%#?&).
    done what I can; any suggestions?

    I had the same problem with my Epson 1260 scanner. The "updated" drivers provided by both Apple and Epson produced the exact same result - blank white pages, or if anything showed up at all, it would be all chopped up and skewed, like it had gone through a shredder. Trying to adjust the brightness and other slider settings made no difference.
    After wrestling with it for a week, I finally found a solution. First make sure Rosetta is installed. Use the old PowerPC Epson TWAIN driver from 2003; with the filename EPSON TWAIN 5.ds. Put it in the folder /Library/Image Capture/TWAIN Data Sources/.
    Then, don't use Image Capture. Download Graphic Converter. Set it to open in Rosetta mode. Then you can use Graphic Converter's File -> Acquire -> TWAIN Acquire... menu command to scan using the old EPSON TWAIN driver.

  • How to find out Black white Image??

    Hi All,
    I am Prashant I have bunch of images in one folder form the bunch of images I want to find out color images and black and white images. Can u help me plz????
    Thanking you
    Prashnat

    Hi, Actuallu I tried this code but I got following error "Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Coordinate out of bounds!"
    even if I minimize image size but it shows me same error...
    import java.io.*;
    import java.awt.*;
    import javax.imageio.ImageIO;
    import java.awt.image.BufferedImage;
    public class GetPixelColor
      public static void main(String args[]) throws IOException{
        File file= new File("C:\\LVII-176_01_l.jpg");
        BufferedImage image = ImageIO.read(file);
        // Getting pixel color by position x=100 and y=40
        int height=image.getHeight();
        int width=image.getWidth();
        System.out.println("Height=>"+height);
        System.out.println("width=>"+width);
       // int clr=  image.getRGB(height,width);
        int clr=  image.getRGB(width,height);
        int  red   = (clr & 0x00ff0000) >> 16;
        int  green = (clr & 0x0000ff00) >> 8;
        int  blue  =  clr & 0x000000ff;
        System.out.println("Red Color value = "+ red);
        System.out.println("Green Color value = "+ green);
        System.out.println("Blue Color value = "+ blue);
    }

  • Inverted black and white images in iPhoto 6

    After I recently upgraded to OS X 10.4.8, a number of black and white images in my iPhoto 6 library started showing up inverted (like negatives) when I open them. The thumbnails, however, are in regular black and white. This didn't happen using OS X 10.4.3. I can't seem to find a tool in iPhoto 6 to convert these images to the correct display. Do you have any explanations or suggestions?
    Macintosh PowerPC G5   Mac OS X (10.4.8)  

    iPhoto 6 does not work well with Grayscale. You'll need to convert them to sRGB. They'll still be black & white, but they'll have a color profile that iPhoto 6 will accept. Old Toad created an Automator application to embed the sRGB profile into your photos. Go to his Toad's Cellar and download the "Embed wRGB Color Profile 2" App. In Finder go in your Originals folder, then drop a roll folder containing these photos onto the app.
    http://homepage.mac.com/WebObjects/FileSharing.woa/wa/default?user=toad.hall&tem platefn=FileSharing7.html&xmlfn=TKDocument.7.xml&sitefn=RootSite.xml&aff=consume r&cty=US&lang=en#

  • I hired a commercial artist to create a color image for the cover of a self published book. I want a black and white image for the inside. The commercial artist has not responded to this request. How do I determine the format of the color image, I'm guess

    I hired a commercial artist to create a color image for the cover of a self published book. I want a black and white image for the inside. The commercial artist has not responded to this request. How do I determine the format of the color image, I'm guessing it's Illustrator's formatting but I don't know. How can I find out if Illustrator will open the file and allow alterations? The image opens only in Apple's Pages software?

    rons,
    It seems that all you have is a raster image, presumable PNG24 or JPEG, in RGB.
    It may have been created as raster artwork in Photoshop, or it may have been created as vector artwork with the help of Illy, or as a mixture of vector and raster artwork in either application, or both combined.
    If you just need to have a raster representation in black and white based on the current colour image, you may try this, in a new RGB document (View>Smart Guides are your friends):
    1) File>Place the image (you may tick Link or untick and have it embedded);
    2) Create a rectangle with black fill (R = G = B = 0), at least as large as the image, and place it behind the image (you may ClickDrag with the Rectangle Tool between opposite corners, then Ctrl/Cmd+X+B);
    3) Select all and in the Transparnecy palette flyout click Make Opacity Mask with both Clip and Invert Mask ticked.

  • How can I create a black and white image similar to what I see in the "Replace Color" tool?

    Hi all, I'm just wondering how I can create a black and white image similar to what I see in the preview window of the "Replace Color" tool. See attached screenshot for clarification -- I need the grass to be black while the soil is white or vice versa. Any tips?

    One way is to use Select>Color Range
    Make a new Color Fill Layer>White
    (Layer>New Fill Layer>Solid Color)
    Put a new color fill layer below>black
    Just invert the layer mask on the top fill layer for the opposite effect.

  • "warming up" a black and white image pse6

    is there a way to change the tone of a black and white image to mimic the effect of using warm-tone photographic paper?

    Mike,
    I'm not sure what you mean by warm-tone photographic paper, but here are 2 methods I use to convert a picture to a sepia tone. They might work in your case.
    For both methods, first convert the picture to RGB mode if not already so (Image>Mode>RGB Color).
    Method 1
    Add a Hue/Saturation adjustment layer. In the Hue/Saturation dialog window, check the Colorize box and play around with the 3 sliders. If the result is too harsh, try lowering the layer's Opacity.
    Method 2
    Set the background color to white (you can type "d" to set the default B&W colors). Use the Color Picker to set the foreground color to the tone you want.
    Add a Gradient Map adjustment layer with the Color Blend Mode. In the Gradient Map window select the Foreground to Background option. If the result is too harsh, try lowering the layer's Opacity. You might also try changing the layer's Blend Mode to Multiply or Soft Light (or others) to get a slightly different look.

  • Block white images over colour background

    Possibly a simple question, but I can't find referance about it anywhere.
    I'm trying to place a block white image of hand-drawn text (saved as a psd or/and tiff file with layers so that the surround is transparent) into indesign CS4. Placed over the top of a solid red colour. However when I do this, the image becomes transparent and invisible on the page.
    I've also attempted to do this by importing a greyscale black version (in tiff format), and then converting the colour to either paper, or a white. But with no luck. This could be because indesign treats paper colour or white as transparent, but is there any way to get around this short of changing the image to bitmap and losing quality?

    Should work fine with a psd file, strange... Try this:
    Check if you have a clipping path into your file
    if not:
    - open you image in Photoshop
    - select all you image (Ctrl+A or Cmd+A)
    - Create a new document with transparent background (it should have the size of what you just copied)
    - go back to your first image and with the magic wand select what will be white
    - go back to the new doc,and paste
    - Save to PSD file, do not forget to tick the add layers feature, eventually remove the profile if there is one
    IN Indesign, import you file. you shouldn't have to modify your image to get what you want
    Other idea (kind of old-fashionned but good trick)
    -make your image negative with Ctrl or Cmd + I (black text, white background), you can then flatten the whole thing
    -Convert your grey image to bitmap (1bit) with Threshold 50%
    -save to tiff
    In indesign, import the file, select you image unelect you rimage select it again with the white arrow then change the color to "paper" of whatever color you want.

  • Please verify my account so i can post an image of my problem. Thanks. Adam.

    Please verify my account so i can post an image of my problem. Thanks. Adam.

    All future people who find this thread - Click the link below and look for the current verification thread as a sticky:
    https://social.technet.microsoft.com/Forums/en-US/home?forum=reportabug
    EDIT: Clarification - accounts will be automatically verified after 15
    points have been accumulated.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • [iPhone] Color White Image

    I am trying to color a given image from within my program. It is just a white image, so I want to replace all the white pixels with some other given color. Either doing this using UIViews or CALayers would work for my needs.
    Core Image filters are not available on the iPhone, so no luck there.
    I could also use the image as a mask on a CALayer, and then set the backgroundcolor of the CALayer to acheive the desired effect, but the mask property doesn't seem available on the iPhone (although it does show up in an API search).
    Any help would be greatly appreciated.
    Thank You!
    Bridger

    I changed ur code like this
    This code fill the image with green color only.
    Can we fill the image with different color?
    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    UIColor *greenColor, blueColor,redColor;
    UIColor *theColor1;
    if(button == @"green" || button ==@"red")
    NSLog(@"I am Touch");
    UITouch *touch = [[event allTouches] anyObject];
    if([touch view] == baseImage1)
    NSLog(@"touch");
    image1=baseImage1;
    if([touch view] == baseImage)
    NSLog(@"baseImage");
    image1=baseImage;
    NSLog(@"image=%@",image1);
    //UIColor *greenColor;
    CGImageRef imageRef = self.image1.image.CGImage;
    size_t bitsPerComponent = CGImageGetBitsPerComponent(imageRef);
    size_t bytesPerRow = CGImageGetBytesPerRow(imageRef);
    size_t imageWidth = CGImageGetWidth(imageRef);
    size_t imageHeight = CGImageGetHeight(imageRef);
    CGColorSpaceRef colorSpace = CGImageGetColorSpace(imageRef);
    //CGColorSpaceRef colorSpace =CGColorSpaceGetNumberOfComponents(imageRef);
    CFDataRef dr = CGDataProviderCopyData(CGImageGetDataProvider(imageRef));
    UInt8* dataPtr = (UInt8*)CFDataGetBytePtr(dr);
    int max = bytesPerRow * imageHeight;
    for (int i = 0; i < max; i++)
    if (0 != dataPtr[i + 3])
    //NSInteger res=dataPtr[i + 3];
    //NSLog(@"dataPtr[i + 3]=%d",res);
    dataPtr[i++]=(int)redColor;
    else
    i += 3;
    CGContextRef ref = CGBitmapContextCreate(dataPtr, imageWidth, imageHeight, bitsPerComponent, bytesPerRow, colorSpace,kCGImageAlphaNoneSkipLast);//To set the new image
    if (nil == ref)
    NSLog(@"Error creating context!");
    CGImageRef imageRefNew = CGBitmapContextCreateImage(ref);
    UIImage *img = [UIImage imageWithCGImage:imageRefNew];
    self.image1.image = img;
    CFRelease(imageRefNew);
    CFRelease(ref);
    CFRelease(colorSpace);
    CFRelease(dr);
    return self;
    judy

  • Iphoto gives message "no images were selected" when hit print button.  Yet the the images are clearly selected in the print window.  I've printed hundreds of images without a problem before.  Iphoto 6.0.6, MAC 10.5.8

    Iphoto gives message "no images were selected" when hit print button.  Yet the the images are clearly selected in the print window.  I've printed hundreds of images without a problem before.  Iphoto 6.0.6, MAC 10.5.8, Suggestions?

    I have recently started having this problem in PSE8. The Adobe workaround
    did work, but I don't fancy having to re register each time I use it.
    What I have discovered is that it's nothing to do with the image metadata as it occurs before any image is opened.
    It SEEMS to only occur if you use file/open with to open an image in the editor - IE start PSE with that command.
    If you close elements down, and start it using programs/PSE/Elements (or your desktop shortcut) - the panorama feature magically works.
    Each time I've opened the editor 'automatically' using image/open with, it seems to create the problem.
    Hope this helps

  • HT2729 Purchased HD movie on ITune and tried to watch it on my TV using my IPAd Mini as the source and got flashing white images and then finally a motive that it could be watched using the TV aas a monitor.  Why? How do I avoid this problem?

    Recently while on vacation I tried to use my IPad Mini to watch a movie down loaded from ITunes and could not.  Initially I get flashing white lights across the TV monitor I was using so a group of us could watch the movie, Wreck It Ralph.  A few minutes later I was informed that the TV was not an acceptable viewing device.  Why?  How do I avoid this going forward?

    I connected an HDMI cable to a connector that I bought at an Apple store.  The connector connects the HDMI cable to the IPad Mini and the HDMI connects to the TV

Maybe you are looking for

  • Large Collection, Re-Adding Music Folder . . . Best Practice?

    My wife and I have a very large collection of music that we have been trying to incorporate into a single library for our laptops to use. I think I have it mostly figured out for sharing a library (found an article about using synctoy in Windows to e

  • About interface mapping

    what are there case about interface mapping? i knew that the following: outbound to inbound abstract to abstract. what else the case?

  • MacMini server problem

    I had used mac mini for 1 year. Up to now, this mac hadn't got any problem. Today, when I was using it. I found that I move the mouse to the four corner, the active screen corners couldn't active. And then the magnification effect of dock loss it. Be

  • ML upgrade went smooth but I can't access icloud document library from pages or any other app?

    The upgrade went OK but I can't access the icloud document library as described in the Apple features section.  I can't get the dialog option in either Pages or Numbers Open boxes and it is not an option in Finder either.

  • LDAP-based authN for EMGC console

    I am working on a EM11g POC and the customer is asking about authenticating users to the EM console via LDAP/ActiveDirectory. The EUS option described in Section 2 of the OEM Admin Guide (Enterprise Manager Security | Enterprise Manager Authenticatio