How to fix black borders around transparent PNG files?

Hello,
Recently, iMovie has started putting black borders around transparent PNGs. How can I fix this?
http://img19.imageshack.us/img19/4668/picture9bt.png

gndagnor wrote:
Any way to fix the alpha transparency when importing PNG files to iMovie 09?
I just know the two options - wrong (8bit) png or that plugin, which in an older version destroyed transparency..
what also make transparent-to-black is, when you 'manipulate' the imported png, esp. adding a *KenBurns Effect* - that kills transparency instantly.
for test purposes:
• create a new project
• create a new png with some traansparency
• add new png to new project - same result?
and just to avoid EVERY problem: your sys preferences/Monitor is set to 'million colors'?

Similar Messages

  • How do I adjust the black borders around my phones screens ?

    How do I adjust the black borders around my phones screen

    What "black borders"?
    If I understand you correctly, you don't.

  • How to remove black border around image files?

    I'm something of a beginner with Photoshop, so forgive me if I've missed something entirely obvious: for some strange reason I'm now getting a black border around all image files that I save through the "Save for Web & Devices" panel. Does anyone know how I can save without creating this border? It looks rather unsightly when I load it into a client site. The file in question is a .png, but I seem to be getting the same effect with all other image files as well.
    Thanks in advance,
    Shane

    One cause could be having the matte color set to something other than none.
    Is that a png-8?
    MTSTUNER

  • Nasty black borders around clicked items

    I am suddenly getting nasty black borders around file names I click on (and not just in the finder). Although ugly I would be able to live with if it wasn't for the fact that they can remain on the screen. It looks like corruption. Does anyone have a remedy?

    VoiceOver is on, you probably accidentally hit that magic keystoke that turns it on (command-F5, I think.) Hit the keystroke again, or go to System Preferences -> Universal Access to turn it off.
    Message was edited by: Király

  • Taking the transparent png files from net into Photoshop. It coming as flat not transparent. How can i do ?

    Hi,
    i want to take some transparent png files from internet into photoshop. The files originally transpernt on internet.
    Im copying that image and paste into photoshop but it won't transparent. therefore im saving the files my mac and using like that.
    But i dont want do this. Because this isn't problem in illustrator. Can anybody help me how can i use transparent png files as transparent in photoshop without save file?
    hope could explain my problem.

    If you can right click on the image and copy its utl to the clipboard you may ne able to open that in Photoshop with this old  Photoshop script.
    // OpenImageFromWeb.jsx
    // Copyright 2006-2009
    // Written by Jeffrey Tranberry
    // Photoshop for Geeks Version 3.0
    // modified by MLH
    // modified by JJMACK 2010
    Description:
    This sample script shows how to download images from a web server using the
    Socket object.
    // Note: Socket.read() parameter & behavior
    // Socket.read() will read or time out. It may not read all data fromserver. <---------------
    // Socket.read(999999) will read 999999 bytes, or timeout, or socket will be
    // closed by the server.
    // enable double clicking from the
    // Macintosh Finder or the Windows Explorer
    #target photoshop
    // Make Photoshop the frontmost application
    app.bringToFront();
    // SETUP
    var html = "";
    var request = "";
    var url = "";
    var binary = "";
    var requesthtml = "";
    var socket = new Socket;
    var domain = "www.mouseprints.net" // the domain for the file we want
    var sImg = "/old/dpr/JJMack8btiSrgb.png"; // the rest of the url for the file we want
    var port = ":80"; // the port for the file we want
    // MAIN
    var url = prompt("Enter the image's full URL http://domain/full image path",url);   // prompt for domain name
    if (url != null && url != ""){
      if ( (url.indexOf("http://") != -1)  || (url.indexOf("HTTP://") != -1)  ) {
      domainPathLength = url.length - "http://".length;
      domainPath = url.substr(7, domainPathLength);
      pathOffset = domainPath.indexOf("/");
      domain = domainPath.substr(0, pathOffset);
      sImg = domainPath.substr(pathOffset, domainPath.length - pathOffset );
      // Isolate Image name
      var Name =  sImg
      var imagePath = "";
      while (Name.indexOf("/") != -1 ) { // Strip Path
      imagePath= imagePath + Name.substr(0, Name.indexOf("/") + 1);
      Name = Name.substr(Name.indexOf("/") + 1 ,);
      //alert("domain = " +  domain + " , Image = " + sImg + " Image File Name = " + Name);
      if ( domain != "" && sImg != "" && sImg != "/" && Name.indexOf(".") != -1 ) {
      var f = File("~/" + Name); // Image file name
      f.encoding = "binary"; // set binary mode
      f.open("w");
      if (socket.open(domain + port, "binary")){
      //alert("GET " + sImg +" HTTP/1.0\n\n");
      requesthtml ="\n\nDmain:" + domain + " Port" + port + " binary\n"
      //request ="GET " + sImg +" HTTP/1.0\n\n"
      request ="GET " + sImg +" HTTP/1.0\nHost: " + domain + "\nAccept: image/gif, image/x-xbitmap, image/png, image/jpeg, */*\n\n";
      socket.write(request); // get the file
      var binary = socket.read(99999999);
      binary = removeHeaders(binary);
      f.write(binary);
      socket.close();
      else { alert("Connection to Domain:" + domain + " Port" + port + " Failed   ");}
      f.close();
      if (binary.length != 0) {
      //alert ("file length = " + binary.length );
      if(app.documents.length == 0) {
      //app.documents.add([width] [, height] [, resolution] [, name] [, mode] [, initialFill] [,pixelAspectRatio] [, bitsPerChannel] [,colorProfileName])
      app.documents.add(new UnitValue(1600,'px'), new UnitValue(1200,'px'), 72, null, NewDocumentMode.RGB, DocumentFill.WHITE, 1,BitsPerChannelType.EIGHT, "sRGB IEC61966-2.1" );
      placeSmartObject( f );
      f.remove(); // Remove temporary downloaded files
      else { alert("Invalid Image URL: " + url ); }
      else { alert("Invalid URL: " + url ); }
    else { if ( url == "" ) alert("No URL Entered"); }
    // FUNCTIONS
    function placeSmartObject(fileRef){
      //create a new smart object  layer using a file
      try {
      var desc = new ActionDescriptor();
      desc.putPath( charIDToTypeID( "null" ), new File( fileRef ) );
      desc.putEnumerated( charIDToTypeID( "FTcs" ), charIDToTypeID( "QCSt" ),charIDToTypeID( "Qcsa" ));
      desc.putUnitDouble( charIDToTypeID( "Wdth" ),charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Hght" ), charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Angl" ), charIDToTypeID( "#Ang" ), 0 );
      desc.putBoolean( charIDToTypeID( "Lnkd" ), true );
      executeAction( charIDToTypeID( "Plc " ), desc, DialogModes.NO );
      activeDocument.activeLayer.resize(100 ,100,AnchorPosition.MIDDLECENTER);
      activeDocument.revealAll();
      } catch (e) { alert("Placeing file: '" + fileRef + "' failed"); }
    // Remove header lines from HTTP response
    function removeHeaders(binary){
      var bContinue = true ; // flag for finding end of header
      var line = "";
      var httpheader = "";
      var nFirst = 0;
      var count = 0;
      while (bContinue) {
      line = getLine(binary) ; // each header line
      httpheader = httpheader + line;
      bContinue = line.length >= 2 ; // blank header == end of header
      nFirst = line.length + 1 ;
      binary = binary.substr(nFirst) ;
      if (httpheader.indexOf("Bad Request") != -1 || httpheader.indexOf("Not Found") != -1) {
      alert (requesthtml + request + httpheader);
      var binary = "";
      //alert (requesthtml + request + httpheader + "\nFile length = " + binary.length);
      return binary;
    // Get a response line from the HTML
    function getLine(html){
      var line = "" ;
      for (var i = 0; html.charCodeAt(i) != 10; i++){ // finding line end
      line += html[i] ;
      return line ;

  • How ti fix black screen on i phone 3gs?

    how to fix black screen on i phone 3gs

    I suspected that. Well, sorry the forum forbids helping you in any way. You have to google for help. 

  • HT4061 how to fix black screen. Phone still rings.

    how to fix black screen. Phone still rings.

    Hello TaQuilla,
    If nothing ever shows on the screen when you start it, or anything you may need to reset the phone, or restore the software. Try this first:
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that does not get the screen going, then backup your device, and restore it.
    iOS: How to back up
    http://support.apple.com/kb/ht1766
    iTunes: Restoring iOS software
    http://support.apple.com/kb/ht1414
    All the best,
    Sterling

  • HT4061 how to fix black screen on iphone 5

    how to fix black screen on iphone 5 , can someone answer me , please !?

    To solve most of iPhone os problems you can perform a soft reset which will not change anything inside the phone
    It'll simply remove the errors
    To do that
    1.Hold power button for 5 seconds
    2.without releasing power button press home button and keep both pressed till the apple logo comes up
    3.Now release both buttons
    Your phone has now been reset

  • HOW TO FIX IT, GARAGE BAND FOUND  AUDIO FILES IN 8 BIT FORMAT. THIS FORMAT IS UNSUPPORTED AND CANNOT BE PLAYED

    HOW TO FIX IT, GARAGE BAND FOUND  AUDIO FILES IN 8 BIT FORMAT. THIS FORMAT IS UNSUPPORTED AND CANNOT BE PLAYED

    Hi..
    Post your topic in the GarageBand community >  GarageBand for Mac: iLife: Apple Support Communities
    More GB users will see your post there.

  • How can I break apart an iStockphoto PNG file? - Newbie Here

    I've purchased some icon sets from iStockphoto.
    Each set consists of an EPS file containing all 16 icons in a range of colours.
    There are also 7 files in PNG format which contain each icon in a specific colour.
    I have no problem accessing each individual icon in the EPS file but I can't work out how to 'break apart' any of the PNG files in Adobe Illustrator CS5.1 so that I can get to the individual icons.
    Can someone help me with this?
    Thank you.

    If you have the vector versions, you migt be just as quick re-coloring them yourself using the recolor artwork tool...
    Mylenium

  • How to Fix a Corrupted Hyper-V VHD File

    Hi,
    Just found a blog about fixing corrupt VHDs.
    How to Fix a Corrupted Hyper-V VHD File
    http://blogs.technet.com/b/tonyso/archive/2011/12/06/how-to-fix-a-corrupted-hyper-v-vhd-file.aspx
    Enjoy!
    Best Regards,
    Vincent Hu

    Easy to run, VHD file recovery application is simple and fast solution for recovering corrupt VHD file data. It has many features which are useful in every stage data harm situations without any delay. There is no need to create Virtual environment for
    restoring recovered VHD file. Get this helpful application over here: 
    http://www.vhd.recoverydeletedfiles.com/

  • Export to PDF causes fringing around transparent PNGs only in Acrobat

    If I export to PDF from Keynote '09 using the "Best" setting, I'm getting black fringing around solid elements in a transparent PNG that was placed in the original keynote doc. This fringing does not occur when the PDF is viewed in Preview. Any suggestions on how to remove the fringing?
    Example is here: http://i.imgur.com/3QXGf.jpg
    Thanks in advance for the help.

    Perhaps my explanation of why this is a problem wasn't clear. The type of PDF links that Pages creates are, quite reasonably, set to highlight when clicked (there are a variety of options in PDF for the visual action of a clicked link; highlight is best for user feedback. In an ideal world, when the user clicks a link in a PDF, you want the a highlight box to appear over the text of the link - exactly over it, not too large, not too small.
    Because Pages creates two links for each internal hyperlink, but the user will click only one of them in the PDF (whether in Preview or Acrobat), the highlight is almost guaranteed to be wrong for every click. If the user clicks the top link, only the top two-thirds of the text will highlight, and if the user clicks the bottom link, there will be a weird highlight either on the bottom third of the text or underneath it. It's inconsistent, but in most cases, it's wrong.
    Obviously, this is only cosmetic, but it's the kind of mistake that hurts usability and detracts from the user experience, and as far as I can tell, there's absolutely no reason for it, making it a bug.
    cheers... -Adam

  • IMac 27-inch with - Black borders around smaller resolutions

    Hey,
    Back with Boot Camp 3.0, I've had problems with the color depth. It said 32-bit while it appeared to be 16-bit. Now it's been fixed with Boot Camp 3.1.
    However, I have an even more annoying problem now. I can't use the native resolution of my display because things are way too small on it. So I'm using the classic 1080p (1920 x 1080 @ 60 Hz) resolution. Problem is, my computer is STILL in 2560 x 1440, and I see Windows 7 occupying 1920 x 1080 pixels, centered vertically and horizontally in the middle of my screen. Around it, there's huge black borders.................
    I have a Radeon 4850 by the way. I read somewhere that it had to do with having two monitors, but never installed another monitor on this computer.
    I've tried installing and reinstalling and uninstalling a bunch of official and non-official drivers from ATI. I guess I still haven't found the good one... or I haven't found the good option in Windows that fixes this.
    Any idea? I know I'm not the only one with this problem, but I haven't found much information on the web about that.

    Hi,
    using the ATI Catalyst Control Center (usually part of the downloadable Catalyst Driver Suite) should provide an option in the Display properties to use lower than native resolutions 'stretched' (without the black borders).
    http://game.amd.com/us-en/drivers_catalyst.aspx
    Before installing drivers, it is always recomended to make a System restore Point and/or have a backup to revert back easily in case of troubles.
    Also you should remove all remnants of older or other drivers using either the Windows "Software" option, a provided uninstaller or DriverSweeper.
    Regards
    Stefan

  • Strange lines appear around transparent PNG's when document PDF'ed

    Hi
    I have inserted some transparent PNG images into my Pages document, and they look fine on my screen, and they also look fine when I export to PDF and view in Preview.
    However, if I view the PDF in Acrobat (or send it to a Non-Mac user and they view it in Acrobat), there are thin lines around many of the PNG images, which make them look ugly and sloppy, and very un-Mac-Like! Any ideas why these lines are appearing and how to prevent them?

    Hi logree
    Welcome to the forum.
    My guess is that it is showing just the edge of the masked background used to hide the alpha channel background of the .png.
    This happens I think, because the postscript mask may be centred on the outside rows of pixels in Acrobat, with half the pixels still being revealed.
    You can try masking in Pages' instead:
    +Menu > Format > Instant Alpha+
    or try a Photoshop file with transparent background, to see if that eliminates the problem.
    Peter

  • GT60 3K IPS black borders around the screen on lower resolutions

    I've got an MSI GT60 with 3K IPS display and GF880M and although it's a very powerful machine it sometimes isn't fast enough to play the games with the native resolution on high details, therefore in several games I wanted to lower the resolution to get a better experience. However this is where I have a problem, because if I change the resolution in-game what usually happens (80% of the games I've tried) is the screen is getting smaller and I have back borders around it. This is kind of frustrating and I wanted to ask if you know any way of sorting out this issue. I'd like to be able to play a game at 1080P for example but have it stretched to the whole screen.
    Some of the games I've observed this behaviour:
    1. L.A. Noire
    2. Assassin's Creed: Black Flag
    3. Far Cry 3
    4. Max Payne 3
    I've tried lowering the Windows resolution prior to opening the game but it makes no difference. I've also looked at the nVidia Control Panel because some of the versions of the drivers had the option to stretch lower resolution to full screen but in the latest one I couldn't find it.
    As the result of this I'm feeling a little frustrated that although the notebook itself is one of the most powerful ones available on the market I cannot play it the way I wanted and I begin to think paying extra for the 3K display was a mistake a I should've gone with the 1080P version. But I hope there's a fix for this issue.

    I've found a workaround but it's very annoying as I have to apply it everytime I launch a game (or if I accidently alt-tab back to windows desktop).
    1. Run the game and let it launch with the back borders
    2. Ctrl+Alt+Del and go to desktop (don't Alt-Tab, it won't work)
    3. Open Intel Graphics properties, change the resolution to 3k, apply changes, than change it back to 1080P or whichever you like and mark the Desktop Stretching option. Apply changes.
    4. Back to the game and the black borders should now be gone.
    It's a workaround, not a solution. I'd really like that MSI, nVidia or whoever is responsible for this behavior find a permament fix.

Maybe you are looking for

  • How to find internal table fields from which table.

    Hello Experts, I have to use a dynamic select inner join query. SELECT (lv_string)   FROM (from_tab)   INTO CORRESPONDING FIELDS OF TABLE <fs_itab1>   WHERE (where_tab). ELSEIF table_1 NE ''.   SELECT *   FROM (table_1)   INTO CORRESPONDING FIELDS OF

  • Videos stop playing, restarting browser fixes

    I believe my Macbook AIr with Lion pre-installed, has had this problem from Day 1 ... After I've had my browser open for awhile, say a day or two, video playback stops working.   Mainly youtube, or something embedded in facebook.  I can follow the li

  • [JS CS3] Changing number of columns

    Hi all, I don't suppose anyone has a script that will change single-frame textboxes (800 pages worth, which is why I am looking to script) to 2-column ones? I wrote a script a while back that allows a user to choose a template, choose a Word file, pl

  • Passing parameter to report

    I want to display a report with rwcgi60.exe from the browser. How do I pass a parameter to the report, e.g, I need to display sales information for certain region, without using parameter form? anybody, any idea? null

  • Cenvat Process

    Dear Expert, can anyone tell full process of all cenvat utilization and cenvat adjustment so on. i can't understand the process how do pay the excise amount to govt and where i can check that remaining amount for payment and where we can compare the