Background layer prints as grey, whether selected or de-selected, on Canon printer.

I've been having intermittent trouble with my background layer printing as grey, both when selected and de-selected. On some docs it's ok, and on others, with the same settings (as far as I can tell) a grey layer prints where it should be white. I'm using CS6 on a Mac with

I've been having intermittent trouble with my background layer printing as grey, both when selected and de-selected. On some docs it's ok, and on others, with the same settings (as far as I can tell) a grey layer prints where it should be white. I'm using CS6 on a Mac with

Similar Messages

  • Want to create an oval vignette in photoshop elements 10 with transparent background for printing w

    I am fairly new to PSE and I want to create an oval vignette in Photoshop Elements 10 with transparent background for printing on white paper using MS Publisher. Using the white background on inverse selection makes a slight line impression and either it should have a defined "frame" or nothing.
    Appreciate any guidance.

    Try with the Elliptical marquee tool:
    On the tool's option bar set feather 25-40 px (experiment)
    Drag out the Ellipse to embrace the object
    Go to Layer>new>layer via copy, or CTRL+J
    Your selection should fade out as a vignette and be surrounded by transparency
    Save this layer via File>save for web, select PNG-24, and tick "Transparency"

  • Background Layer colors and images

    I just made the switch from gimp to Freehand. After reading
    the instruction booklet, the only real problem I'm having is
    setting the background. I'd like to make a gradient background, but
    I can't figure out how to make any background whatsoever show up.
    Even when I select a new color for the color box, the page remains
    white. Any help would be appreciated.

    Since you are coming from GIMP you are still thinking in
    terms of Bitmap
    Editors. Freehand is very different and you have to change
    your way of
    thinking. The white box is not a background, it is an empty
    page. You
    place items on that page according to what you want it to
    look like. If
    you want a color to fill the entire page then draw a
    rectangle the size
    of the page and apply your color/gradient to the rectangle.
    FYI: When placing items in Freehand, it does have layers like
    Photoshop
    (does Gimp?) but they work differently. In Freehand multiple
    items can
    exist on the same layer without destructing/changing other
    items on that
    layer. So if your background rectangle goes on the same layer
    as
    something else you may find yourself accidentally sending the
    other item
    behind the background or the background in front of the item.
    Thinking
    in bitmap editing terms you may think the item is wiped
    out/gone, but
    it's not. Just send the background behind it again. You can
    eliminate
    these problems by setting up different layers for different
    categories
    of items, background, text, graphics, etc. You can then lock
    layers so
    that you don't accidentally grab onto items that you don't
    want moved,
    such as the background.
    Look out for the "Background" layer that appears by default.
    See that
    bar right above it in the Layers Panel that separates it from
    Guides and
    Foreground? That's a printing bar. Anything below the bar
    will not
    print and will be represented as ghosted image in the
    preview. So if
    you intend to use the Background layer for your background I
    suggest
    that you move the Background layer above the bar and under
    the
    Foreground layer. Lock the Background layer and then place
    items on
    your Foreground layer.
    Rich
    bippity wrote:
    > I just made the switch from gimp to Freehand. After
    reading the instruction
    > booklet, the only real problem I'm having is setting the
    background. I'd like
    > to make a gradient background, but I can't figure out
    how to make any
    > background whatsoever show up. Even when I select a new
    color for the color
    > box, the page remains white. Any help would be
    appreciated.
    >

  • Unlocking Background Layer with lots of other layers

    I've been looking at the similar questions, but no script has worked perfectly yet. I have a series of phoshop actions that I run on a regular basis. I have two version of each, one for if there's a locked background layer, and one for when its already been unlocked. Otherwise my actions error.
    I'd like to simplify the process and have a script run that finds any locked layers (ie: background) and unlocks it, even if there are 15 other layers and even if I have another layer selected. It should also run without errors if there are no locked (background) layers to be found.
    I don't know the first thing about writing my own scripts, so can somebody tell me what lines of code I'd need? Thank you Thank you!

    function makeActiveByIndex( index, visible ){
        var desc = new ActionDescriptor();
        var ref = new ActionReference();
        ref.putIndex(charIDToTypeID( 'Lyr ' ), index )
        desc.putReference( charIDToTypeID( 'null' ), ref );
        desc.putBoolean( charIDToTypeID( 'MkVs' ), visible );
        executeAction( charIDToTypeID( 'slct' ), desc, DialogModes.NO );   
    function getNumberOfLayers(){
        var ref = new ActionReference();
        ref.putProperty( charIDToTypeID( 'Prpr' ), charIDToTypeID( 'NmbL' ) );
        ref.putEnumerated( charIDToTypeID('Dcmn'), charIDToTypeID( 'Ordn' ), charIDToTypeID( 'Trgt' ) );
        return executeActionGet( ref ).getInteger( charIDToTypeID( 'NmbL' )) ;
    function getProperty( psClass, psKey, index ){// integer:Class, integer:key
        var ref = new ActionReference();
        if( psKey != undefined ) ref.putProperty( charIDToTypeID( "Prpr" ), psKey );
        if(index != undefined ){
            ref.putIndex( psClass, index );
        }else{
            ref.putEnumerated( psClass , charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
        try{
            var desc = executeActionGet(ref);
        }catch(e){ return; }// return on error
        if(desc.count == 0) return;// return undefined if property doesn't exists
        var dataType = desc.getType(psKey);
        switch(dataType){// not all types supported - returns undefined if not supported
            case DescValueType.INTEGERTYPE:
                return desc.getInteger(psKey);
                break;
            case DescValueType.ALIASTYPE:
                return desc.getPath(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.BOOLEANTYPE:
                return desc.getBoolean(psKey);
                break;
            case DescValueType.UNITDOUBLE:
                return desc.getUnitDoubleValue(psKey);
                break;
            case DescValueType.STRINGTYPE:
                return desc.getString(psKey);
                break;
            case  DescValueType.OBJECTTYPE:
                return desc.getObjectValue(psKey);
                break;
            case  DescValueType.LISTTYPE:
                return desc.getList(psKey);
                break;
            case  DescValueType.ENUMERATEDTYPE:
                return desc.getEnumerationValue(psKey);
                break;
    var doc = app.activeDocument;
    var layerCount = getNumberOfLayers();
    var invisibleLayers = [];
    var loopStart = Number(!doc.layers[doc.layers.length-1].isBackgroundLayer);
    for(var layerIndex = loopStart;layerIndex<=layerCount;layerIndex++){
        if(!getProperty( charIDToTypeID('Lyr '), stringIDToTypeID( 'visible' ), layerIndex )) invisibleLayers.push(layerIndex);
    for(var hiddenIndex=0;hiddenIndex<invisibleLayers.length;hiddenIndex++){
        makeActiveByIndex( invisibleLayers[hiddenIndex], true);
        if(doc.activeLayer.allLocked) doc.activeLayer.allLocked = false;
        if(doc.activeLayer.pixelsLocked) doc.activeLayer.pixelsLocked = false;
        if(doc.activeLayer.positionLocked) doc.activeLayer.positionLocked = false;
        if(doc.activeLayer.transparentPixelsLocked) doc.activeLayer.transparentPixelsLocked = false;
        doc.activeLayer.visible =  false;

  • Lightroom does not create a background layer when editing in Photoshop - on Mac.

    Thought this was a Photoshop problem.  When I select a portion of an image in Photoshop (which has come from Lightroom) and press Delete, it no longer brings up the Fill dialog; it just deletes the pixels.
    After some discussion on the Photoshop forum, I see that now, when I tell Lightroom "Edit in Photoshop", it creates a file which does not have a Background layer, and this causes the Delete key to act differently.  This was not the case several weeks ago, but has just started to happen.  Is there any adjustment I can make to the "Edit In" settings to get a Background layer in Photoshop?
    JK

    You must have changed a setting in Photoshop because  Lr has no influence on how Photoshop treats the background layer.
    There is nothing you can do in Lr to change this behavior of Photoshop.
    What happens in Photoshop is this: For some reason the image is opened with transparent background.Such an image does not have a background layer and the layer at the bottom does not have the constraints of a regular background layer.
    I am not aware of any command or script in Photoshop that would automatically do this on opening a file.
    Try this: Reset your Workspace (>Window >Workspace). If that doesn't help I'd suggest to ask on the Photoshop forum why your Photoshop opens an image with transparent background.
    You could also try to re-install Photoshop, supposedly this would reset any hidden settings that are causing this.

  • How to enable background color printing?

    how to enable background color printing?

    There is no button involved in the following code, but it may
    be of use to you:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()">
    <mx:Script>
    <![CDATA[
    private var origColor:uint;
    private function init():void {
    origColor = dc.getStyle("selectionColor");
    public function setBackGrdColors(newColor:uint):void {
    dc.setStyle("selectionColor", origColor);
    if(dc.selectedDate){
    var dayOfWeek:Number = dc.selectedDate.day;
    else{
    return;
    switch(dayOfWeek) {
    case 0:
    if(sun.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 1:
    if(mon.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 2:
    if(tue.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 3:
    if(wed.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 4:
    if(thu.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 5:
    if(fri.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 6:
    if(sat.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    default:
    break;
    ]]>
    </mx:Script>
    <mx:VBox horizontalAlign="center" verticalGap="20">
    <mx:DateChooser id="dc" textAlign="left"
    change="setBackGrdColors(cellColor.selectedColor)"/>
    <mx:HBox width="100%" horizontalAlign="center">
    <mx:CheckBox id="sun" label="Sun"/>
    <mx:CheckBox id="mon" label="Mon"/>
    <mx:CheckBox id="tue" label="Tue"/>
    <mx:CheckBox id="wed" label="Wed"/>
    </mx:HBox>
    <mx:HBox width="100%" horizontalAlign="center">
    <mx:CheckBox id="thu" label="Thu"/>
    <mx:CheckBox id="fri" label="Fri"/>
    <mx:CheckBox id="sat" label="Sat"/>
    </mx:HBox>
    <mx:HBox width="300" horizontalAlign="center">
    <mx:Label text="Background Color" />
    <mx:ColorPicker id="cellColor"
    selectedColor="#FF00FF"/>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>

  • Background Layer From Regular Layer

    I've read the posts and other instructions that say to "click on the layer you want to change, select New and then Background" I cannot find "New". The only thing I find in my Layers Panel is "New Layer" and none of the options in that box are for "Background". What am I missing?

    The Why is because I'm new to CS4 and just trying to do it by the book.
    I'd still like to know where the "New Background" is. Attached is a picture of my Layers Dropdown Box, no "New Background" or "Show All" as suggested before.

  • Why does the Background Layer unlock itself?

    When I open a picture in PS the first layer is a locked background layer. If I start working in PS it changes automatically to an unlocked Layer 0. I want it to stay as an locked background layer. I have used PS for a few years, and just started happening.

    With the new version of Photoshop if you work on the background layer and do something like click on the add layer mask icon in the layer palette. Since the background layer does not support transparency Photoshop knows you need to convert the background layer to a normal layer so Photoshop automatically does that for you.  If you just paint on the background layer or clear or fill an area, stroke a selection it will remain a background layer  with its transparency locked.  The Background layer is only partially locked so you can work on it as shown by the un-filled in lock icon on the background layer in the layer palette.  If you look here you see layer 2 is unlocked, Layer 1 is fully locked and the background layer is partly locked and has been worked on.

  • Background layer seizes added images.

    I am trying to create a photo collage by scratch (not using "Collage"). First I create a new blank page for the background and save it. It is shown as "locked" with a padlock. Then I open an image file (.jpg) to add to the background layer, and I get a message that I need to unlock the background layer so I click to unlock it. However the added image locks onto the background layer and doesn't make a new layer. If I open another image file it locks on top of the others.

    The Layers panel only shows the layer(s) belonging to the currently active file. You need to arrange your image windows so that you can see your composite image as well as the source. With the source image active the Layers panel will show the source - click and drag that layer to the composite.
    So in the following, the violet image is the active image and I drag its layer to the white image I've created for my collage. In the composite image with the new layer selected I can position it where I want. Select each of the other images in turn and do the same. Refer to my previous note, you can also do this with Copy & Paste.
    When finished, your composite image and its Layers panel will look like this:
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Help! How to make background layer colored

    Hi. I have been reading the help section but can't find my
    answer. Hope someone can help me.
    How do you make the background layer of an image COLORED?
    Especially, how do you make the background a colored GRADIENT FILL?
    For example, on layer #1 I have just an abstract design of shapes.
    I want a background layer#2 to be a separate SOLID fill of color,
    or a gradient fill.
    The only way I have figured out how to remotely do this is if I draw
    a rectangle, then stretch it out to edge of "canvas", then fill it w/color
    but the edges never line up perfectly. Isn't there a better way? Thank you so much!

    Thx for your quick reply.
    Really? Wow, well that is good to know then. I used to use
    Illustrator yrs. ago and now I am kind of re-learning it. I just remembered-
    couldn't one create a layer, then select the "paint bucket" tool, pick a color,
    then fill a background that way? Maybe I am thinking of Photoshop....

  • Composite photo and background layer question

    I would appreciate some help with a workflow problem when dealing with a composite, selection and background layer. My normal workflow is to start of in LR4, and if need be do an "edit in, CS6". I am relatively new to CS6, so bear with me.
    I have some portraits I want to put different backgrounds on. I am using Matt Kloskowski's Layers book and Composites books written for CS5. I also have Martin Evening's book on CS6 and the workflow for doing a composite is pretty much the same. The catch is that none of them start off in LR with the original photo. They all describe the following basic workflow pattern:
    1. Bring up the main photo in CS using "edit in CS6"
    2. Change the photo from a background layer to a regular layer
    3. Make a selection.
    4. Make a layer mask
    5. Refine the edge
    6. open the background photo you want to place the selection in (steps 4 and 5 are sometimes reversed so you are refining the edge on the new background)
    7. copy and paste the original photo onto the new background
    8. Refine the edge if not already done
    9. Save and exit back to LR with the composite
    If I follow this procedure I run into a couple of problems:
    1. My backgrounds are in a separate folder on my computer and not cataloged in LR. So, if I open them in photoshop and paste the original photo onto that image, LR will not know that I want to take the new composite back to the original folder along with the protrait. If I go to save the image, CS want to take the composite back to the folder on my computer where I got the background from. I tried playing around and tried renaming the composite similar to the naming convention I use for my photos in LR and then importing it into that folder after I have saved it in the background folder. This had some unintended consequences. First, I had trouble renaming the composite photo. For some reason Windows kept plugging in an old photo file name from one of my photos taken two years ago. After I discovered that  I could work around it. But after the first composite finally got into LR, when I tried to do it again, the import button on the left side of my LR went dark and I couldn't import the second composite photo I was working on. This could have been a coincident and unconnected LR glitch, but I have never had that problem before.
    So...I was thinking of modifying the workflow to the following:
    1. Bring up the main photo in CS using "edit in CS6"
    2. Change the photo from a background layer to a regular layer
    3. Make a selection.
    4. Make a layer mask
    5. Refine the edge
    6. open the background photo you want to place the selection in
    7. copy and paste the new BACKGROUND onto the original photo
    8. Move or make the new background layer THE "Background" layer
    10. Refine the edge
    11. Save and exit back to LR with the composite
    I am envisioning this will ensure that my composite will wind up back in LR because it is still keeping track of the original photo which now has gotten the new background, regardless of what the file name of the new background was.
    Does any of this make sense? Does any one know a better way of handling this?
    Thanks for any help,
    Jim

    Yes, it makes sense and I think you should go ahead and try it.

  • Problem duplicating background layer in Elements 12

    HELP please!
    I cannot duplicate the background layer in a PSD file that has been created from a RAW file in Elements 12.
    My workflow:
    Download RAW files from camera.
    View RAW files in Elements 12 Organizer.
    Click on Editor icon to open RAW file in Elements Camera RAW 8.5 editor.
    Make necessary changes to RAW file in Elements Camera RAW 8.5 editor.
    Click on Open Image to edit further in Elements 12 Editor.
    Click on Layer from menu bar - here the problems start as all Layer options are greyed out!
    This doesn't happen when I open a JPG file and duplicate layers.
    What am I doing wrong?

    That's what happens when you have the option to open in 16 bits in the editor. Look at the the menu on the middle of the bottom bar in the ACR dialog. Remember that Elements can support 16 bits with limitations: no layers, no local adjustment tools. Alternatively, if you are already in the editor, use the menu /image/mode to convert to 8 bits.
    Another tip:
    look at the bottom of your screenshot; If you click on the small triangle on the right of the dimensions of the picture file, you can choose to display the bit-depth mode. You can see immediately if you are in 16 bits or not.

  • Can't unlock background layer using Photoshop CS3 Extended

    I installed CS3 a few days ago (though I'm an experienced CS2 and Photoshop 6 user) and opened Photoshop CS3 Extended today for the first time.
    The problem I'm having is with unlocking the background layer. I read in the documentation and on the Net about double-clicking and renaming the layer (which is what I did in other versions), or creating a new file with a transparent background, but those things aren't working for me in this version.
    I opened a tiff file (a logo I want to use as the basis for a new image) but I can't unlock the background layer so I can copy, manipulate or add to it. Everything on the Layers drop-down menu is grayed out, as are the word Lock: and the symbols following it in the Layers window.
    I tried creating a new image but when File|New dialog box opens the option to use transparent in the Background Contents dropdown is grayed out, too.
    I'd appreciate some help with this.
    Thanks,
    Peggy

    The issue has to do with the mode that you are in.  If it is a TIFF or GIF file that you are opening, when you click on "Image -- Mode" you are likely to see "Indexed Color..." with a checkmark next to it.  Be sure to select "RGB Color."  Once you have done that, you can simply double-click the background layer in the layers palette to unlock the image.

  • I have several layers for this image: Background, Moon, Tree, Grass and Clouds.  When I try to use the Move tool to move the Moon, the tool jumps to the Tree layer.  The same thing happens with the other layers as well (except the background layer).  How

    I have several layers for my image: Background, Moon, Tree, Grass and Clouds.  When I try to use the Move tool to move the Moon, the tool jumps to the Tree layer.  The same thing happens with the other layers as well (except the background layer).  How can I keep the move tool from jumpimg to the Tree layer?

    1. Pre-select (highlight) the layer to move in the Layers panel.  or-
    2. [ALT+Right mouse click]  to select the wanted layer in the image window.
    and maybe
    3. Set the PS option to "Auto-select" a layer with cursor hover.  (can be very confusing!)

  • How do I unlock background layer?

    How do I unlock the background layer on free trial photoshop?

    go to layers window and select the layer you are trying to unlock, There should be a lock icon next to name of layer, you can drag lock icon to trash can at the bottom of the layer window and layer will be unlocked. There is also a lock icon just above all the layers and you can toggle the layer as locked or unlocked. multiple ways to do the same task. Male sure to the select the correct layer you are trying to unlock. background layer applies as well.

Maybe you are looking for