How do I paste transparent png's

If I copy a transparent PNG image from any web browser on a mac, I can paste said image into illustrator without it losing its transparency, while trying the same on my PC results in the transparent areas of the image turning black... How does one avoid this?
(running illustrator CC 2014)

Are forum users usually this bitter? I really don't understand how using this workflow would be stupid, as you so eloquently put it. You don't know what I'm working on nor how, and it does surprise me that you don't see how it could be time saving... But I don't really mean to discuss process quality or speeds.
Anyone else? If I can do it on a mac, I should be able to do it on a pc as well!

Similar Messages

  • 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 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'?

  • How do i save a .png with transparent background?  cannot find in help

    how do i save a .png with transparent background?  cannot find in help

    rickseng
    With what program are you working and with what version of the program and on what computer operating system?
    I suspect that you are working with some version of Photoshop Elements. If that is correct, then be advised that some how
    your thread got posted in the Adobe Premiere Elements Forum (video editing) instead of the Adobe Photoshop Elements Forum (photo editing).
    If Photoshop Elements question, then please re-post your thread in the Adobe Photoshop Elements Forum or wait for a moderator
    here to see your thread here and move it from here to there.
    Photoshop Elements
    Thought....if are creating an image on a transparent background in Photoshop Elements Windows for a Premiere Elements Windows project, then you Save As png or psd.
    Please clarify if I have misinterpreted your question.
    Thank you.
    ATR

  • How do you import a .png file into the Final Cut Pro X and at the same time keep the file's original transparency settings?

    How do you import a .png file into the Final Cut Pro X and at the same time keep the file's original transparency settings?

    Go to the Info inspector for the still image and in settings select the alpha type.

  • How can I convert an .eps created in AI to a transparent .png

    The logo I created in AI is beautiful.  I would like an equally beautiful transparent .png for use on my website.  Is this possible?

    Reddafodil,
    Remember to tick Transparency.
    I would like an equally beautiful transparent .png
    Then you should use (at least) PNG24, and certainly not GIF which only has a very limited number of colours; PNG24 has many more than PNG8.

  • How do you add transparency in Dreamweaver

    how do you add transparency in Dreamweaver

    With CSS.
    Opacity effects everything including text.
    #divName {
         opacity: 45%;
    RGBA backgrounds allow you to set alpha-transparency in the last value.
    #divName {
         background: rgba(0,0,0,0.45);
    Or, for older browsers, use a semi-transparent PNG background-image.
    #divName {
         background-image: url(my_transparent_BG.png);
    Nancy O.

  • Removing background shadow on transparent PNG image without losing shading on the object?

    I have a pillow bevel applied to a paint splatter brush image, and I'm having trouble with the shadows. I want to save this splatter as a transparent PNG. The problem is that a drop shadow effect is showing up when I save it this way. I think it's a "shading" setting rather than a true drop shadow, as there is no drop shadow set in the layer styles. The shadow does not appear when a white background is applied. It only shows when the background is transparent. I've tried reducing the shading opacity in the bevel dialogue, and this does get rid of the drop shadow....the problem is that it also removes the shading from the paint splatter, making the image look flat instead of raised. Can anyone help?  Thanks!

    Good point Curt. First time poster, so I wasn't sure how to include images in my original post. Here they are: 
    Above is the image saved WITH transparency. Obviously the shadows all around the blue make this unusable.
    Here is the exact same image...the only difference is that I saved it with a white background layer behind it in photoshop. As you can see, the shadow artifacts are gone, yet the splatter still maintains its correct shading to keep the raised effect.
    Both of these images are saved as png. Any suggestions?

  • 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

  • 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

  • Transparent PNG images in IE 6

    I just found out that IE 6 doesn't support "transparent PNG"
    files.
    I have found a patch script that suppose to help but NOTHING!
    Has anybody ever come across this problem, and how did you
    get the images of work?
    patch script....
    <!-- This DIV is the target container for the image.
    -->
    <DIV ID="oDiv" STYLE="position:absolute; left:0px;
    height:755; width:1002;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
    src='image/bbd_main.png', sizingMethod='scale');" >
    </DIV>

    Hi this tutorial worked for me.
    Look for the "Do you realize none of this works in IE6?"
    section near the bottom of the page.
    http://www.alistapart.com/articles/supereasyblendys
    Works perfect

  • Are transparent png to use

    Hello,
    I was wondering are transparent png image's safe to use, I
    have normally
    used transparent gifs but have been thinking of the
    compatibility of the
    png.
    regards
    k

    Twocans wrote:
    > Hello,
    > I was wondering are transparent png image's safe to use,
    I have normally
    > used transparent gifs but have been thinking of the
    compatibility of the
    > png.
    You will need a fix for IE6 and below, but apart from that
    give it a go,
    its much better than gifs.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • I want to export 'transparent png' (while it is on colored background)

    Salam!
    May you please help me in this issue!
    I want to export an object as 'transparent png' (while it is on colored background) in Adobe Fireworks CS5. One way to do it, to place the object on a transparent background (Like in PS). But I want another solution. I don't want to move the object on transparent backgound, but still want to export this object as transparent png. Is there any solution????
    Thank you!
    Sheikh Naveed

    This tutorial covers what you are looking for
    http://www.smartwebby.com/free_tutorials/website-design-how-to/transparent-background.asp

  • Create an advanced lightning effect and then export to transparent PNG sequence

    Hi,
    I am new to AE, so please be kind
    I need to generate a lightning effect and then export the frames to several PNG images.
    I figured out how to do the lightning and how to export transparent PNGs, but I can't get rid of the lightning solid background (which is balck in my case).
    Do you have any advice?

    Toggle the transparency grid in your comp to make sure that you are creating an alpha channel.
    When you render set to the output module to RGB + Alpha and Millions of Colors + and set Color to Straight.

  • Transparent PNGs Help plz

    Okay first off im very new at html. I can not figure out
    where to put all the code for transparent PNGs in IE. I was
    wondering if someone would draft an example. Using my site. I need
    to get the icons at the top of the screen to be transparent. So
    they are slanted and touching each other all nicely like is shows
    in firefox. I got it to work once yesterday but the replace image
    stoped working i couldnt figure it out so i am trying from the
    start again. My site is www.triforcetechs.com. Also any critizim
    would be helpful too im new to this sort of stuff. Just to let you
    know also i have seached all over these forums and tryed many
    diffent ways to make PNGs transparent but really i dont think i
    know what im doing lol even if you could maybe fix one of my
    buttons so i can see how its done that would be most helpful. Also
    my email is [email protected] if you would like to email me
    directly
    Thanks in advanced

    You don't have a valid DOCTYPE, see this:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.triforcetechs.com%2F
    it explains quite well what you need.
    Also, no <html> but you have </html>
    I suggest fixing this and posting back as there are a number
    of
    possibilities causing problems.
    PNGs have a problem with <IE7, here are two helpful links:
    http://alistapart.com/stories/pngopacity/
    and
    http://homepage.ntlworld.com/bobosola/
    Jo
    "Monarky2000" <[email protected]> wrote in
    message
    news:ep92ua$keb$[email protected]..
    > Okay first off im very new at html. I can not figure out
    where to put all
    > the
    > code for transparent PNGs in IE. I was wondering if
    someone would draft an
    > example. Using my site. I need to get the icons at the
    top of the screen
    > to be
    > transparent. So they are slanted and touching each other
    all nicely like
    > is
    > shows in firefox. I got it to work once yesterday but
    the replace image
    > stoped
    > working i couldnt figure it out so i am trying from the
    start again. My
    > site
    > is www.triforcetechs.com. Also any critizim would be
    helpful too im new to
    > this
    > sort of stuff. Just to let you know also i have seached
    all over these
    > forums
    > and tryed many diffent ways to make PNGs transparent but
    really i dont
    > think i
    > know what im doing lol even if you could maybe fix one
    of my buttons so i
    > can
    > see how its done that would be most helpful. Also my
    email is
    > [email protected] if you would like to email me
    directly
    >
    > Thanks in advanced
    >
    >

Maybe you are looking for