Make a white background with white object is possible? without shadow!

i m contributor photographer in most microstock, i try to make a white backgournd with white object but with lightroom 4 it isn't possible, i think the program have probelm to select white object and white background, i see internet site microstock and there isn't a good photo.
http://it.fotolia.com/id/72385192
there is a little shadow, i don't want this!
can you help me?
thanks,
francesco.

You can't change it within the OS. There may be some apps which will do it. Search Dock on MacUpdate.
But all these types of haxies come with possible risk.
You can file feedback here.

Similar Messages

  • How to make my iphone sync with my Mac Book Pro without icloud

    My iphone no longer syncs with Mac Book Pro now that I have downloaded Maverick.  It just flicks open synching and flicks on to say "waiting for change to be applied" before it closes it's attempt at syncing and does nothing.  I have read elsewhere it is because Maverick wants us to use icloud but I don't want to sync my contacts and calendar on icloud as it is not secure enough with the confidential information I have on my calendar and in contacts.   I just want to make sure that my contacts are backed up on my computer as well as my calendar saying the same thing on my iphone as well as my Mac.   My Mac calendar is the most up to date version at the moment and when I go out to meetings I want my iphone to be up to date too. All help appreciated in solving this syncing problem. Thanks

    Plug yr iPhone to your compu in the old fashioned way with cable.
    Just to cover yourself...select the iPhone in Devices of left pane of iTunes window, then on main pane, select radio button Back up to Computer. Right click on the iPhone in devices, do a backup. It shld then be on your compu'.
    Then, back in main windo, select Info 'tab' from top of the right pane, and tick the Sync iCal events.
    I'm sure this will help.
    If it all goes pear-shape, u have the backup to restore the pre-sync device.

  • When inserting a .pdf of a document with a standard white paper color the test and images show up, but the white background is transparent. How do you also make the white paper color show up?

    When inserting a .pdf of a document into a Keynote template with a standard white paper color the text and images show up, but the white background is transparent. How do you also make the white paper color show up?

    Use the color fill option - select the inserted .pdf and assign a fill color of white to it using the Color Fill Menu on the Toolbar or the Color Picker Palette.
    Good Luck.

  • How do I get a white background with black lines

    How do I get a white background with black lines and characters on my screen. To run the program, copy it out and delete the ` and it should go. If it does not compile on your machine, I would like to know. There is a test on about line 34 for changing the colors.
    `//Simple program to test Graphics2D.setBackground(white) obtained from BufferedImage.getGraphics()
    `import java.awt.Frame; //Object>awt.Component>Container>Window>Frame
    `import java.awt.Insets; //Object>awt.Insets
    `import java.awt.image.BufferedImage; //Object>awt.Image>awt.image.BufferedImage
    `import java.awt.Graphics; //Object>awt.Graphics
    `import java.awt.Graphics2D; //Object>awt.Graphics>Graphics2D
    `import java.awt.Color;
    `import java.awt.BasicStroke;
    `public class TstBgCol { //frame & BufferedImage in pixels & BasicStroke in points ????????????
    ` TstBgCol tstBgCol;
    ` public static void main(String[] args) {
    ` TstBgCol tstBgCol=new TstBgCol(); tstBgCol.tstBgCol=tstBgCol;
    ` tstBgCol.main2(); tstBgCol.byteBinary();
    ` }
    ` Graphics fgcontext;
    ` Frame fram; Insets insets; //borders of the Frame, Container.getInsets
    ` int bIWid=1272,bIHgt=876; //set for 1280x1024 screen on windows XP & matches paper ratio 10.6x7.3
    ` int unusedPixHgt=84;
    ` void main2() {
    ` fram=new Frame();
    ` fram.addWindowListener(new java.awt.event.WindowAdapter() { //anonymous inner class
    ` public void windowClosing(java.awt.event.WindowEvent e) { System.exit(0); }
    ` });
    ` fram.setVisible(true);
    ` insets=fram.getInsets(); //(Container)getInsets() works after displayable
    ` System.out.println("Insets l,t,r,b:"+insets.left+","+insets.top+","+insets.right+","+insets.bottom);
    ` fram.setSize(insets.left+bIWid+insets.right,insets.top+bIHgt+unusedPixHgt+insets.bottom);
    ` fgcontext=fram.getGraphics(); //creates Graphics context for this component
    ` }
    ` void byteBinary() {
    ` BufferedImage buIm=new BufferedImage(bIWid,bIHgt,BufferedImage.TYPE_BYTE_BINARY); //can be resized
    ` Graphics2D bIG2=buIm.createGraphics(); //returns Graphics2D context
    ` //change to if(true) to use either of the following two lines
    ` if(false) bIG2.setBackground(Color.white); //does not change the background color to white
    ` if(false) bIG2.setColor(Color.black); //does change the foreground color to black
    ` edgeLinesAndX(buIm,bIG2);
    ` fgcontext.drawImage(buIm,insets.left,insets.top,fram);
    ` }
    ` private void edgeLinesAndX(BufferedImage bI,Graphics2D bIG2) { //really on the edge
    `      BasicStroke strk=new BasicStroke(10f); bIG2.setStroke(strk);
    ` int x0,y0,xmx,ymx;
    ` x0=bI.getMinX(); y0=bI.getMinY(); xmx=bI.getWidth()-1; ymx=bI.getHeight()-1;
    ` bIG2.drawLine(x0+xmx,y0,x0,y0+ymx); //lo-left to up-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0+ymx); //up-left to lo-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0); //up-left to up-right
    ` bIG2.drawLine(x0,y0,x0,y0+ymx); //up-left to lo-left
    ` bIG2.drawLine(x0,y0+ymx,x0+xmx,y0+ymx); //lo-left to lo-right
    ` bIG2.drawLine(x0+xmx,y0,x0+xmx,y0+ymx); //up-right to lo-right
    ` bIG2.drawString("("+x0+","+y0+") wid="+(xmx+1)+" hgt="+(ymx+1),(xmx+1)/5,(ymx+1)/5);
    ` }
    `} //the result on my screen is a black background, why?????

    How do I get a white background with black lines and characters on
    my screen.Contrary to what you might think, the linebIG2.setBackground(Color.white);does not give the buffered image a white background. The API docs
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Graphics2D.html#setBackground(java.awt.Color)
    say: "Setting the background color in the Graphics2D context only
    affects the subsequent clearRect calls... " So adding a line to your
    if blocks we getif (false) {
        bIG2.setBackground(Color.white);
        bIG2.clearRect(0, 0, buIm.getWidth(), buIm.getHeight());
    if (false) {
        bIG2.setColor(Color.black);                    
    }Changing the false to true results in a white background (and black
    X and text).

  • Placing an illustrator file with "white" objects add process black to PDF

    Ran into this problem today with InDesign CS5:
    I am trying to create a document with only one (spot) color, pantone 293 in this case.
    Placed some illustrator files in this document, all of them also only contain pantone 293. However, they also contain some "white" objects. Now my problem appears to be that "white" in illustrator is defined as "0% gray" by default. So when I export my document as PDF from inDesign, i get a PDF with both spot color pantone 293 and black. Strange thing is, I tried making the "white" objects 0% pantone 293 instead of 0% gray, but the PDF still exports with black process color.
    Just plain telling my printing company to ignore the black process color altogether would be foolish i guess, since there are objects underneath the illustrator files which need to be knocked out by the "white".
    Any ideas?

    If the problem isn't a profile conflict as Peter suggests, you might try setting up a preflight profile for 1 spot color that will catch uses of CMYK black. When you export a PDF from ID the CMYK channels always exist in the exported PDF, so you may need a preflight check to make sure CMYK plates are empty.
    This allows only 1 spot color, defined as Lab. Any use of black would throw an error:
    Here the white box is defined as Paper 0|0|0|0 CMYK and I get an error
    Defining the box as 0% Orange is OK

  • How to change white background with text to transparent background

    Good afternoon,
    I have a jpg file (part of our logo) white background with black text and I would like to change it to transparent background and keep the black text (to be able to insert it on a cup image).
    I tried to change it in photoshop, however, when I slide the "opacity" and "fill", the text got ligther as well.
    Do I need to have the original psd.file to be able to do that, or can you please lead me through with jpg file? (I tried to save the jpg to psd and png, but it did not help.)
    I looked on one of your videos, but I could not find one of the features under "Select" tab.
    My plan is to recreate the text to have the transparent background if necessary (It would be great if I can avoid that). However, how do I find out which font was originaly used? Does photoshop has this feature, or do I need to go trough each of the font one-by-one?
    My last question is, how do I change space between letters (to have them more tight. I am not able to find it.
    Thank you for your help,
    Klara

    If you can get teh original PSD file get it, your task will be a lot easier.
    I suspect that won't be an option to you.
    If you know what fonts are being used, that also would be of benefit to you. In other word remake it using your image as a template.
    If it going over an image, then a multiply blend might work for you.
    All that fails then you are down to removing the white background. The problem this option is it will not look as good due to the thin lines on the fonts. But essentially, Load the image into photoshop, make sure the layer isnt locked, then try the magic eraser tool on the white background, bam it'll disappear, but leave the white inside the O white you will have to do seperately.
    Messing with levels will help you with more of the white. Myself i'd rebuild it using the fonts.

  • "Blank" thumbnails in Layers Palette with white objects.

    When working with completely "white" objects, the thumbnail in the layers palette is effectively "blank" (see attached sample).   Is there any kind of option or mode that will make those thumbnails a little more practical?  I often have to find a specific white letter behind a non-white letter--and sometimes they're nowhere near each other in the layer.  (Most often these are 'old' files that someone else created.)

    While I can’t help make the Layers panel more informative for you, you might find the Transparency Grid helpful. Turn it on in the View menu, andchange the colours for the grid in Document Setup.

  • How to make a white background Transparent

    I would like to to select the blocks and enclosed data to copy and paste in a poster, leaving out the white background.  In other words make the white background transparent. 
    This is just a plain low res jpg.
    This seems like it would be pretty easy but not for me.  Is there a tutorial that could guide me through this?
    Thank you for any guidance you can give me.

    I'm probably not being clear about what I'm trying to do.  Here's a typical poster.  I use the magnetic lasso to select an image, copy and paste it resulting in this.
    This time it's to be a team picture with small head shots of each player, action photos in the background, similar to this.  I can do all that but I wanted the tournament chart to lay on top of the background with just the boxes and enclosed info showing.  I know I can use the magnetic lasso or the poly lasso but I don't have enough patience for that.

  • PS 6.1, how to make a white background transparant?

    how to make a white background  transparent?

    Select the white background with Magic Wand tool.  Hit Delete.  Transparent background is denoted by the checkerboard pattern on your document.
    Nancy O.

  • Compund path or white text ona red background with a drop shadow

    I have had business cards printed before with white text on a red background & the white wasn't 'punched out' (compound path) of the red so the white didn't print - the solution I was given was to create a compund path in illustrator before saving the PDF to punch the white out of the red & that worked fine ...
    I now have dilema in that we want to get some flyers printed that have red starburst with white text over them but they also have a drop shadow behind the red star burst so if I punch the white text out of the startburst the drop shadow then appears through the starburst & the text is no longer white it is the drop shadow gradient from the background - i do not know how to get around this???
     

    As long as your white text isn't set to overprint, you should be fine.  Just place your text in front of your starburst and look at your attributes panel to make sure that overprint fill and overprint stroke are not checked. 
    I'll bet if you go back and look at the file that gave you trouble in the past, overprint fill is checked.

  • How do I remove the white background of an object in cs6

    How can I remove the white background of an object in CS6

    I went into YouTube as well, and indeed: It didn't remove the white background.
    Then I went into Photoshop and was surprised: It was able to remove the white background by just playing around with the Magic Wand Tool. I also went into other programmes similar to Photoshop and was excited that there were connatural ways to remove the white background. Finally, I went into Illustrator and observed that the clipping path route worked. Even in CS6.
    Not sure why it didn't work for you.

  • Mail page now black background with white print and I cannot fix.

    Today when I signed on, my mail page is now black background with white letters and I cannot figure out how to change it back to what was there before -- black on white -- and cannot find anything in help on this problem.

    Some web pages give the user the option on page styles. For the rest of
    them,<BR><BR>
    Go to the
    '''''[https://addons.mozilla.org/en-US/firefox/ Mozilla Add-ons Web Page]'''''
    (There’s a lot of good stuff here)
    and check out
    '''''[https://addons.mozilla.org/en-US/firefox/addon/nosquint/?src=external-Add-ons_Manager_Context_Menu-extension NoSquint]'''''.
    This add-on can override web page setting to give you control.

  • Develop mode shows a blue background with a white box and white diagonals.

    When I open the Develop mode the photo I selected is not displayed. Instead is a blue background with a white box and white diagonals. Can anyone help? Everything else appears to work. If  I choose the Before and After view the photo shows in the  Before but the blue screen in  the after.

    You should find the forum for whichever product this concerns and post your question(s) there.
    Here is a link to a page that has links to all Adobe forums...
    Forum links page: https://forums.adobe.com/welcome

  • Why are my PDFs black background with white lettering?

    I cannot remember how to undo something. My pdfs are black background with white lettering. I just want it back to normal

    Hi pistoley,
    Are you viewing your PDFs in Reader or Acrobat, and what version? It sounds like there may have been a change made to the Accessibility preferences. In Reader/Acrobat XI, choose Edit > Preferences (Windows) or Reader/Acrobat preferences (Mac OS), and click the Accessibility category. Is Replace Document Colors selected? If so, try deselecting that.
    Please let us know how it goes.
    Best,
    Sara

  • Why when I fill my background with white the background comes up transparent?

    Can someone tell me why when I fill my background with white the background comes up transparent. How do I get it back to filling in white.

    Hi SSJoyce,
    What version of photoshop and operating system are you using?
    Is the background a locked background layer or a regular layer?
    How are you filling the background with white, such as using a keyboard shortcut of Edit>Fill?
    A screenshot might provide more clues as to where the trouble is.

Maybe you are looking for