How do I insert a white background all throughout my iMovie?

Apologies if this is a primative question, but I cannot find the answer anywhere. I'm on a Mac (10.9.2), using iMovie 10.0.2, and I've tried inserting "Maps & Backgrounds" white, which hasn't done the job (thought it would allow me to use it as a true background throughout, allowing images and movies to be placed atop it). What I'm hoping to accomplish?
I have a logo (both as png and jpg formats), but I want it to appear on a white background without it being resized or placed over the movie as a transparent logo. I want it to appear cleanly at the end of the video, without those "black bars" at the sides. I want to turn all "black bars" into "white bars" so there never appear to be any bars at all. The "Ken Burns" solution isn't a solution, as I don't want to logo to move. I want it centered without the black bars. So again, what I REALLY want to know is how to alter the default background color to WHITE, so I never again have to see black anywhere. How can this be accomplished?
Thank you so much to anyone who can answer this! It is driving me mad! You're awesome!

stephanie165 wrote:
...  I want a solid white background everywhere throughout the entire movie. ...
ahh now I got it, sorry me alien, lost in translation
• use the White background generator for parts without pics
• use the crop tool to make stills 'full-screen'
• for pics without 16:9 aspect ratio, use any pic-processor (I recommend Pixelmator) to put the pic on a 16:9 white...
example, using your Macs built-in Preview.app:
• opening a portrait-ratio picture, cmd-c (copy)
• opening any 16:9 white picture (e.g a screen-shot from your iM project ... ), cmd-v (paste)
importing the processed pic into iMovie - tadahh!: full-screen white!
by 'prepping' pics, you could accomplish even more elaborated effects, e.g. placing two/many pics into a single frame ....
hope this helps.

Similar Messages

  • 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).

  • My nodejs and php component is ready but how will we insert in eloqua for all users?

    Hi there,
    my nodejs and php component is ready but how will we insert in eloqua for all users?
    Thanks

    Hi there,
    Please help me.

  • How do I remove a white background from a photo of a watercolour painting.

    How do I remove a white background from an image of a botanical watercolour painting?

    Is the logo in a pixel layer surrounded by white?
    You could make it a layer if it isn't already, then use the Layer Style dialog and set the Blend If parameter so that it will make light colors transparent...
    You can composite it into a web page with transparency by saving it as a PNG file, as JJMack has noted.
    -Noel

  • How do I change the white background color in a b/w line drawing jpg?

    How do I change the white background color in a b/w line drawing jpg?

    Just put a Solid Color Layer atop it and set it to Blend Mode Multiply or
    • load the Channel with the best contrast (cmd-click it in the Channels Panel)
    • invert Selection (cmd-I)
    • create a black Solid Color Layer
    • put whatever below that Layer

  • 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.

  • How do i remove the white background from a logo and save it to my computer without the background

    how do i remove the white background from a logo and save it to my computer without the background

    Is the logo in a pixel layer surrounded by white?
    You could make it a layer if it isn't already, then use the Layer Style dialog and set the Blend If parameter so that it will make light colors transparent...
    You can composite it into a web page with transparency by saving it as a PNG file, as JJMack has noted.
    -Noel

  • How can I insert and image in all PDFs printed via BW?

    How can I insert and image in all PDFs printed via BW?
    We want to remove the image from all Web Templates and insert it in the header of PDF printouts.
    <removed by moderator>!
    Tom
    Edited by: Siegfried Szameitat on Dec 3, 2008 2:57 PM

    Select clip in timeline. Open effects. At the bottom, search for flip. This should find the "Flipped" effect. Drag that effect cover the clip.

  • How can I change the duration for all clips in iMovie 10.2

    How can I change the duration for all clips in iMovie 10.2?  I'm used to working in the older version of iMovie where all I had to do was click on the gear on the clip and change the duration. ALso could use the tool bar to set the duration for all clips. Can't figure out how to do that in this new version. Any suggestions would be appreciated.

    In the timeline select the clip whose duration you want to change. Click the adjust button at the top of the viewer and then click the i button and you can set the duration. For multiple clips select them all and in the i button type in the duration you want and it will be applied to all the selected clips. You can also change the duration of a clip in the timeline by putting the cursor over the beginning or end of a clip and dragging. A popup will show the new duration.

  • How do I remove a white background from clipart in PowerPoint 2008 for Mac?

    I have several clip arts that are in .jpeg and .png format.  These are of somewhat irregular shapes, and are on a white background.  I want to eliminate the white background so that I can use these clip arts on colored backgrounds.  I know that there is a simple way to do this in MS PowerPoint 2008 for Mac, but I've forgotten how.  Can anyone help?  Time is of the essence.  Thanks in advance.  - Mark

    I still use Office 2008 but have not encountered that issue. However, as Office is not an Apple product, I strongly recommend asking in the Microsoft Office:Mac forums here:
    Office for Mac
    Everyone there is a Mac user AND an Office user, something you can't say about Apple's forums. You will get the fastest help there and I think you will find the contributors more than helpful.

  • How can I change a white background in a .mov to transparent?

    Someone has sent me a .mov that I need to use in a project, but unfortunately the video has a white background and I need it to be transparent. How would I go about doing this using CS5? Thanks.

    Depends on the rest of the content. If the forground items do not contain to many bright colors, a simple extraction based on lightness e.g. based on the Shift Channels effect, followed by Invert and Levels adjustments would give the cleanest results. Other than that try the various keying tools (Luma Key, Color Key, Color Difference Key), but don't use Keylight. And of course you can always try Rotobrush in CS5...
    Mylenium

  • How do i change the white background with the new ios7?

    I just upgraded my iPad mini to iOS7 and now my videos are not titled, or the letters are white and are invisible against the new white background. How can I change this??

    It is rediculous,
    up to IOS6 the iPhone was a perfect device for someone with low vision, well structured, good contrast and readable fonts.
    But things got "improved". What a pitty that Apple has given away that benefit for a lightweight design which reduces ergonomics drastically. Now IOS is SW where design dominates usability.
    Yes, you can use larger fonts, yes, you can use fat fonts but that does not change the keyboard layout.
    It startet in IOS6 with the update of the keypad for the phone application (thin black keys on a flashing white background) and is continued with the vision unfriendly design from IOS7.
    Please, have the flashing white background configurable so a structuring reappears or have the background configurable to white or black.

  • How do I change this white background

    How do I change this white background

    White background on the iPad's home page or elsewhere?
    The background on the iPad can be modified in Settings > Wallpapers & Brightness

  • How do I remove the white background from a drawing

    I have Elements 10 and I have scanned in a drawing and need to remove the white background from the drawing.  Can someone please help me with this?

    Double-click the background layer to make it a regular layer.
    Use the magic wand and click in the white (experiment with tolerance level), make sure contiguous is NOT checked.
    Press Delete.
    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.

  • TS1424 how do i get a white background on itunes store instead of the **** black background that you can see anything on?

    whaT IS WITH THE BLACK BACKGROUND AND GREY LETTERS THAT YOU HAVE TO READ ON THE ITUNES STORE?!! WHO IS THE GENIUS THAT THOUGHT THAT WAS A GOOD IDEA?!!! HOW CAN I CHANGE IT TO WHITE??

    Hi there SteveJobsfan, Could you please help me?
    I have attempted to use Drgoo's fix for my black iTunes background but no luck
    I have gone into Control Panel>Hardware&Sound>Colour Mgt>All Profiles>Add>File
    Once I arrive at 'File', this box is blank and does not contain the file Drgoo mentions
    Can you possibily direct me from here please?
    Thanks

Maybe you are looking for

  • Partner functions in Customer master

    Hi, Can we maintain partner functions with out maitain customer sales area data, we need to maintain only general and company code data. Business scenario - 1. We have some certain customers like carrying only address purposses we dont need maintain

  • Quantity good receipt not match with the PO/ BOM quantity ( material subcon

    Dear Expert, When I did the first MIGO for material subcontracting the quantity is exactly the same (match)  with the PO and BOM, but when I did the second MIGO, the quantity is not the same anymore. There is variant between MIGO and the PO quantity

  • Enable Print in IW22 after the maintanence Order is TECOed

    Hi Frds, I have a requirement to enable the print functionality (in the PM notification menu - PMNotification>Print-->Notification) for any maintanence order's notification after the maintanence order is TECOed. Once we do TECO the notification becom

  • How do I export my video in FCPX 10.1 to show on SD projector?

    I'm a relative newcomer to video production.  I am doing video announcements for my church.  Our projection system is SD quality with square screens.  The video is playing through a program called ProPresenter.  The videos that I export from FCPX 10.

  • Animated lens flare  inaccuracy between the main timeline

    I'm having trouble with my animated Lens Flare and the inaccuracy between the main timeline. It's the default AE filter. I have the Lens Flare animation in a composition called textbox which is within the main composition. If you look at the screensh