How to put gaussian blur in background of portrait in PSE 8

I have just spent four hours trying to blur the background of a portrait. Should be a simple task but something goes wrong.  I make a duplicate layer, but when I try to gaussian blur the layer, it just goes to checkerboard.  And the preview screen for gaussian blur goes black.  Am I doing something wrong, or is there a glitch with the program?

Hi,
Are you creating two different layers of main object and background... Also make sure that appropriate transparency is porvided in each layer...

Similar Messages

  • Camtasia Mac Video flickers with Gaussian Blur

    Hi
    i did a couple of screen captures with camtasia mac.I exported my videos as 'uncompressed .mov'files.
    In PP i added these files to my pal 720*576 project.I use anti flicker( 0.5) to get rid of the interlace flicker that appears unless i use anti flicker.
    Anyway so far so good,when i now put Gaussian Blur on my source, the video flickers on my TV.it only flickers when the effect is on.hmmmmmm
    Even if i leave it at its default settings(value=0),it flickers.Whyyyyy???????
    Just to clarify,the video does not flicker without GB and only anti flicker on
    I need GB to blur out some parts of the video.
    if sb can explain this to me,i'd be very happy
    thx in advance

    Hi
    i did a couple of screen captures with camtasia mac.I exported my videos as 'uncompressed .mov'files.
    In PP i added these files to my pal 720*576 project.I use anti flicker( 0.5) to get rid of the interlace flicker that appears unless i use anti flicker.
    Anyway so far so good,when i now put Gaussian Blur on my source, the video flickers on my TV.it only flickers when the effect is on.hmmmmmm
    Even if i leave it at its default settings(value=0),it flickers.Whyyyyy???????
    Just to clarify,the video does not flicker without GB and only anti flicker on
    I need GB to blur out some parts of the video.
    if sb can explain this to me,i'd be very happy
    thx in advance

  • Put a Landscape page in a Portrait format Document

    Hi guys,
    Any idea how come put a Landscape page in all Portrait format Document? Some tables needs to go on landscape format as is a scientific report and the author wanted this way.
    Thanks for any clue,
    Cheers,
    Sebastiao

    Depends on your version, and what you mean by a landscape page.
    CS 4 allows you to rotate a spread view, but the page size and shape remain the same. This is what most people mean by a landscape page in a portrait doc, but you might really mean a page the same height, but wider, that needs to fold out -- common in technical work. For that you need to add a page or more to your spread (and don't forget that page also has a reverse, so add it to the corresponding opposite spread, too).
    For earlier versions of ID you can rotate the text frame on the page where the table goes and tip your head, or you can make a separate document and combine it in a book, but ultimately you'll need to either rotate it back for printing or do the fold-out as above, so I'd stick with rotating the frame for just one or two tables.
    Fold-out pages require special handling and a discussion with the printer.
    Peter

  • Any suggestions on how to remove an "aura" from around a selection?  I shoot pictures at rodeos.  To make the rider stand out, I select and mask the rider. Next I blur the background using Gaussian Blur filter.  This results in a noticeable aura around th

    Any suggestions on how to remove an "aura" from around a selection in an image?  I shoot pictures at rodeos.  To make the rider stand out, I create a mask around the rider and then blur the background with Gaussian Blur.  This results in a noticeable blur around the outside of the selection.  I have tried using Feathering as well as other Refine Edge Tools.  The only thing that works is to go around the edge with the Clone Tool.  This is time consuming and not totally successful.  So, my two big questions are: (1) Is there a better (simpler) way to avoid the aura? and (2) If not, is there a way to remove the aura that is simpler?? 
    Thanks in Advance,
    Art Schwartz

    Sorry, what with the long title I had neglected the body of the message and your statement
    The only thing that works is to go around the edge with the Clone Tool. This is time consuming and not totally successful.
    seems to answer my first question.
    Did you do that before or after blurring?
    Have you alternatively tried using Content Aware Fill?

  • How to change a background to an image? and how to put a 'clear' button.

    Hi guys, im new here & i really newbie in java. Recently i found code for java applet that can draw a line. I want put image as a background and draw some lines over the image and provide a button to clear the lines. Is there any one can help me to solve my problem. Here is the code :
    import java.awt.*;
    import java.applet.*;
    public class DrawLines extends Applet {
        //Variables
        Point Start[] = new Point[20];   //X,Y info of start of lines
        Point End[] = new Point[20];     //X,Y info of end of lines
        Point current_start;
        Point current_point;
        int numlines= 0;
        Point boundary;   //to represent the boundary of the applet
        //Set background to yellow, register listeners
        // get boundary of applet
        public void init() {
          setBackground(Color.white);
          current_point = null;
          boundary = new Point(this.size().width,this.size().height);
        //Mouse Clicked Down...save in current_start
        public boolean mouseDown(Event e, int x, int y) {
           if(numlines < 20) {
              current_start = new Point(x,y);
              return true; }
           else
             { System.out.println("Can Not Take Any More Input Lines");
               return false; }
        //Mouse Drag....reset current_point to current position
        public boolean mouseDrag(Event e, int x, int y) {
            if(numlines <20) {
              current_point = new Point(x, y);
              repaint();  //will draw this current line
              return true;
            else
              return false;
        //Mouse Up ...save created line if can and call repaint
        //  to draw it.  Make sure the end point is inside the applet
        public boolean mouseUp(Event e, int x, int y) {
           if( (numlines < 20) && (x < boundary.x) &&
               (y < boundary.y) )
             {  Start[numlines] = current_start;
                End[numlines] = new Point(x, y);
                numlines++;
                //Reset current points to empty
                current_point = null;
                current_start = null;
                //repaint will draw all lines including this one
                // just created.
                repaint();
                return true;
           else
             return false;
        //Draw all of the lines stored in Start[], End[].
        //Draw the current line from current_start to current_point
        public void paint(Graphics g) {
             //set drawing color
             g.setColor(Color.red);
             //Draw stored lines
             for (int i=0; i<numlines; i++) {
                g.drawLine(Start.x, Start[i].y,
    End[i].x, End[i].y);
    //Draw current line if one exists
    g.setColor(Color.blue);
    if (current_point != null)
    g.drawLine(current_start.x, current_start.y,
    current_point.x, current_point.y);
    //Set numlines back to zero
    public void start() {
    numlines=0;
    //In case mouse exits the applet region...reset current points
    public boolean mouseExit(Event e, int x, int y) {
    current_point = null;
    return true; }
    and this is code in HTML
    <HTML>
    <HEAD>
    </HEAD>
    <BODY BGCOLOR="Grey">
    <CENTER>
    <APPLET
         code     = "DrawLines.class"
         width     = "500"
         height     = "500"
         >
    </APPLET>
    </CENTER>
    </BODY>
    </HTML>
    Thanks & appreciate for the help.

    Hey thanks, but i find another way by looking other ppl code for image back ground. And its working! but i still dont know how to create the button (im so very noob in java sigh)
    The link u gave to me is very good but its hard for very newbie like me to understand. I just change the code like this :
    Using offscreen image
    Image off, back;      //to represent background image
         Graphics offG;          //to represent offscreen image                          
        public void init() {
         off = createImage(getSize().width, getSize().height);      // create your offscreeen image
         offG = off.getGraphics();
         back = getImage(getDocumentBase(),"images/Area.jpg");     // load your background image
        current_point = null;
        boundary = new Point(this.size().width,this.size().height);
    // Draw all of the lines stored in Start[], End[].
        // Draw the current line from current_start to current_point
        public void paint(Graphics g) {
              offG.drawImage(back, 0, 0, this);      // draw everything to your off screen first
              g.drawImage(off, 0,0, this);          // copy your off screen to on screen now
            g.setColor(Color.red);                    // set drawing color
            //Draw stored lines
            for (int i=0; i<numlines; i++) {
                g.drawLine(Start.x, Start[i].y,
    End[i].x, End[i].y);
    //Draw current line if one exists
    g.setColor(Color.blue);
         if (current_point != null)
    g.drawLine(current_start.x, current_start.y,
    current_point.x, current_point.y);
    Now my problem is the 'clear' button, i really dun know how to make button which is can clear the lines. Any one have idea?

  • How to batch apply Gaussian blur in Aperture

    I find myself applying Gaussian Blur to a lot of our shots via Photoshop CS3.
    We keep all our shots in Aperture, so I click the image to edit it in CS3, copy layer, apply gaussian blur and set transparency to 30-40%....
    Is there a way to automate this ?

    You can set up scripts/actions in PS which will automatically be applied to every image that is opened, but I can't remember how you do it. And it would be applied to every image whether you like it or not...
    Ian
    P.S. Most people are trying to sharpen the images, why blurring?

  • How to put the background image in Title Window?

    Hi,
    I'm newbie in flex. I 'm using Flex 4.
    Can anyone give me some guidelines on how to put the background image in Title Window?
    Is it possible to do this?
    Thanks.

    Hi,
    Check the below sample code
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            s|BorderContainer {
                background-image:Embed(source="image/wheres_the_green_rez.jpg");
                background-image-fill-mode:clip;
        </fx:Style>
        <s:TitleWindow width="100%" height="100%">
            <s:BorderContainer width="100%" height="100%"/>
        </s:TitleWindow>
    </s:Application>
    Regards,
    Anitha

  • How to "smooth in" a gaussian blur fx?

    Hi there
        I would like to know how can I "smooth in" a gaussian blur fx. I recorded a video and needed to add a tittle to
    the video and when I add the fx it doesn't fade in smoothly it's like ON and then OFF. Is there a way to make it like
    fade in/out a few frames? I'm a novice to FCX growing out of iMovie because needed more finer and powerful
    adjustments but still need lots to learn compared to iMovie!!! Any help would be VERY welcomed!!!
    THANKS ALL!!!
    Serge
    PS I have 10.0.9 for FCX

    IIt sounds like you want to keyframe the blur to ramp it up. Set a keyframe, button next to the value box, and set the slider to zero. Move later in time where you want the blur to finish increasing and set the slider value to whatever you want. The additional keyframe will be added automatically.

  • How to Gaussian Blur

    How do I make a Gaussian blur in LR4 ?
    I have tried to mask the area and unsharpen and unclairify but doesn't work.
    Thanks, Penni

    Generally speaking  if you want to simulate a shallow depth of focus effect, a Lens Blur tool of the kind used in Photoshop will look a lot more nearly convincing.
    The only truly convincing way - convincing for an expert eye, that is - is (of course) to go ahead and shoot with a shallow depth of focus in the first place .
    However where any particular local effect is wanted in LR, and the adjustment brush does not have enough strength to deliver it - you can simply add a second (third, fourth) adjustment brush "pin" applying some more of the same parameter over the top. Quite soon though, it will be apparent how transformation (rather than development) of original picture content calls for a partnering, designed-for-the-job, image editor.

  • How to blur the background in potraits ?

    I am using lightroom 5 in Windows 8.Please tell me how to blur the backgrounds in portraits .

    i would used the adjustment tool with clarity slider set to -100. It may take several or more brushes and so other adjustments
    but as far as I know there are no blurring tools as in PS
    will be interesting to hear other ways/ideas
    Have fun

  • How to blur the background, CS6 (64 bit)

    I am new to photoshop.
    I want to blur the background of some image to use them on by blog
    how to do this quickly

    It's more tricky than it sounds.
    First of all you need to select the main subject and place that on a separate layer on top. Then you also need to knock out the same from the underlying layer, otherwise it will contribute to the blur.
    Second, none of the blur tools in Photoshop give a credible result. It doesn't look blurred as much as viewed through frosted glass. Even the lens blur filter gives this frosted glass effect. A proper lens blur is a very complex optical phenomenon, and to create that illusion in software requires very sophisticated mathematics.
    There is a plugin from Alien Skin that is the most convincing I've seen to date, it used to be called Bokeh but is now apparently called Exposure with some added functions. Even so, use very carefully and sparingly; it's no magic bullet. Nothing's worse than easily spotted slapped-on effects.

  • How can I put text in transparent background?

    How can I put text in transparent background?
    Message title was edited by: Brett N

    Good day!
    You can create a new document (»Background Contents« set to »Transparent«), use the Type Tool (T) to create text and then save in a format that supports layers like psd, psb, tif.
    If the receiving application can’t handle those png24 is another option.
    Regards,
    Pfaffenbichler

  • How to put flash as a table or cell background or put HTML elements on top of flash file?

    Hi Guys,
    Could anyone please suggest me that how to put flash file as a table or cell background. I want to design a website and want to put HTML elements like table, images, text on top of flash file. so its look like animation in background. please visit following websites for an example: http://www.gagudju-dreaming.com/ and http://disneyworld.disney.go.com/
    Please guide me ASAP, thanks a lot in advance.
    Nitz.

    Hi Nitz
    The first thing you must do is convert your layout from table based to css based, (tables are o/k for tabular data, but not layout) but if you have never used css for layout it may be a steep learning curve.
    My recommendation is to start with the following tutorial on converting a table based comp to a css layout -
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    More info on using css is available here - http://www.adobe.com/devnet/dreamweaver/css.html.
    Once you have converted your site the 'procedure' for using swf's as a background, (does not work well with flv's, but can be done using html5 video without a skin, to a limited extent) is the same as having a background-image resize automatically to the full browser view-port. The best way to learn how to do this is to view the code on a page using the background-image technique, view the code on this page - http://www.pziecina.com/indexold.php.
    However, instead of having a fluid layout I would recommend using a fixed layout size to start with, as this overcomes many problems. I have uploaded a basic test page to illustrate the idea to - http://www.pziecina.com/test_ideas/swfbg_test.html. As I said the page must be resized in this example in order to see the effect, (so do not forget to resize the browser, even if it is only by 1px), but if you use a fixed size layout and your swf's size fits the desired area correctly the resize should not be required.
    PZ
    www.pziecina.com

  • How 2 put desktop widget in the background?

    i have managed to put widget on the desktop from the dashboard. now i want to know...
    a) how to put the widget in the background? it remains on top all the time.
    b) how to have 'space' specific widgets. right now all of them appear in all spaces.
    thanks
    Neerav

    haha! i thought it was a hidden secret until google told be otherwise.
    btw, i am not sure if u understand my question. i want the widgets to stay on the desktop but not on top of all other applications. it should come on top only when i select it.
    rebooting still maintains the widgets i transfered to the desktop to stay there, which is good, but, they always remain on top, which i don't want.
    Neerav

  • How to PUT MUSIC and take out background sound

    First of all, hats off to apple for iMovie 08'...I love it!
    I was just wondering...how do I put music in the background that way i can completly block out the noise in my actual video footage?
    Like say if I was making a MUSIC VIDEO...and all I need was the MUSIC that I am going to add to the project...how would I specifically take out the sound from my video then, that way you dont hear the people talking or anything...you just hear the good quality sound music??

    Once you have the music track layered in, select it and then push the Adjust Audio button within the middle toolbar (looks like a loudspeaker). You then check the box titled "Reduce Volume of Other Tracks". That should do it.

Maybe you are looking for

  • 5th gen iPod lost and will not play videos after connecting to iTunes

    I have a 5th gen iPod. When last connecting to iTunes, videos and movies disappeared. Purchased a new movie that iTunes says was compatible with 5th gen, movie won't transfer to iPod. My settings state that I will manually manage videos and music. Pe

  • How to use OUTER JOIN in Oracle Answers Filters?

    Hi, I need to have a filter on an 'Oracle Answers' report. The query from the NQQuery.log appears as below. (I have simplified the SELECT clause here for easy reading) SELECT t692.enquiry_business_route AS c1, t692.enquiry_id AS c11, t913.YEAR AS c12

  • How to set ORACLE_HOME used by SQL Developer?

    I need to use OCI/Thick driver with SQL Developer to get OS authentication working. I have 64-bit windows and 64-bit oracle installed. I also have 32-bit instant client in another ORACLE_HOME, because the libs of 64-bit ORACLE_HOME won't work with SQ

  • Kitten + New Cinema Display = need cord replacement :(

    Well, my cat chewed through the USB cord that is part of the set of three cords that comes out of the beautiful new LED Cinema Display that I bought. Not the nicest morning surprise. I will be covering the cords or shutting the cat out of the office

  • Problem with downloading via wacom

    i bought a wacom bamboo tablet that included a free full photoshop elements 11, when i download photoshop elements from the website it downloads normally< however, after installing the software it appears that the editor isn't working. i did lots of