I want to make a picture transparency in Aperture 3.4.3

I have a picture in Photoshop CS6 and with transparency and saved in PSD.
I have also tried with TIFF, PNG etc. and set layer/file to save in transparency.
The Aperture shows the picture before import without background, but when I try to import it it got a black or white background.
Is it possible to use transparency?
I want to make a photobook for print at Apple, and some of the pictures on some pages need to be transparent.
Maybe best solution is to make all in InDesign+Photoshop and send it to press ?
But I liked Aperture way to make easy printable books.
Mr Jordfald
Norway

Hi Mr. Jordfald.
What Frank said:
Aperture will preserve the alpha channel in an image but will not create one or work with it within Aperture.
does not indicate that you cannot use Originals that have an alpha channel in Aperture.  Afaik -- and you should test this yourself -- if you assign an Image with an Alpha channel to a book, and print the book, the Alpha channel will be used in the printed book.
That isn't the workflow we would all like, but the compromise should work (again, afaik -- please confirm).  Whether it is worth it for you, only you can decide.
--Kirby.

Similar Messages

  • How can I make a picture transparent in Keynote

    So I'm helping my kid with a school project with a simple Keynote presentation.  I know how to make the whitespace around a shape in Powerpoint blend in with the background, but I can't figure out how to do the same in Keynote.  It's a simple small square pic that he wants to use for a Wild West presentation.  I've read where people have done some import/export of images into photoshop, but that's not an option for us.  I've exported the imaga and saved as a .png and re-imported it, but still no-go.  Can anyone help?  It's a Mac, and shouldn't be this difficult.  We've got Keynote '09.  Yes...'09 on a MacPro running 10.6.8.

    Click the Alpha button in the tool bar and drag on the white in the image with the mouse until the background is removed.

  • I want to make thumbnail pictures of logo to have the full effect on Facebook

    I have some logos on Facebook and want to have their full names and not half of it.  How to make a thumbnail to have the full effect.  Any ideas?

    How images are displayed on FaceBook is a matter for Facebook.
    You can chnage the size of an image using the export dialogue.
    File -> Export
    In the resulting dialogue note two options:
    Jpeg Quality is the amount of compression used on the file. Lower Quality means a smaller file.
    Size refers to the Dimensions (length by breadth) of the photo in Pixels. Smaller dimensions means smaller file size.

  • How to make a JPanel transparent? Not able to do it with setOpaque(false)

    Hi all,
    I am writing a code to play a video and then draw some lines on the video. For that first I am playing the video on a visual component and I am trying to overlap a JPanel for drawing the lines. I am able to overlap the JPanel but I am not able to make it transparent. So I am able to draw lines but not able to see the video. So, I want to make the JPanel transparent so that I can see the video also... I am posting my code below
    import javax.media.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import java.lang.Math;
    import javax.media.control.FramePositioningControl;
    import javax.media.protocol.*;
    import javax.swing.*;
    class MPEGPlayer2 extends JFrame implements ActionListener,ControllerListener,ItemListener
         Player player;
         Component vc, cc;
         boolean first = true, loop = false;
         String currentDirectory;
         int mediatime;
         BufferedWriter out;
         FileWriter fos;
         String filename = "";
         Object waitSync = new Object();
         boolean stateTransitionOK = true;
         JButton bn = new JButton("DrawLine");
         MPEGPlayer2 (String title)
              super (title);
              addWindowListener(new WindowAdapter ()
                   public void windowClosing (WindowEvent e)
                            dispose ();
                            public void windowClosed (WindowEvent e)
                         if (player != null)
                         player.close ();
                         System.exit (0);
              Menu m = new Menu ("File");
              MenuItem mi = new MenuItem ("Open...");
              mi.addActionListener (this);
              m.add (mi);
              m.addSeparator ();
              CheckboxMenuItem cbmi = new CheckboxMenuItem ("Loop", false);
              cbmi.addItemListener (this);
              m.add (cbmi);
              m.addSeparator ();
              mi = new MenuItem ("Exit");
              mi.addActionListener (this);
              m.add (mi);
              MenuBar mb = new MenuBar ();
              mb.add (m);
              setMenuBar (mb);
              setSize (500, 500);
              setVisible (true);
         public void actionPerformed (ActionEvent ae)
                        FileDialog fd = new FileDialog (this, "Open File",FileDialog.LOAD);
                        fd.setDirectory (currentDirectory);
                        fd.show ();
                        if (fd.getFile () == null)
                        return;
                        currentDirectory = fd.getDirectory ();
                        try
                             player = Manager.createPlayer (new MediaLocator("file:" +fd.getDirectory () +fd.getFile ()));
                             filename = fd.getFile();
                        catch (Exception exe)
                             System.out.println(exe);
                        if (player == null)
                             System.out.println ("Trouble creating a player.");
                             return;
                        setTitle (fd.getFile ());
                        player.addControllerListener (this);
                        player.prefetch ();
         }// end of action performed
         public void controllerUpdate (ControllerEvent e)
              if (e instanceof EndOfMediaEvent)
                   if (loop)
                        player.setMediaTime (new Time (0));
                        player.start ();
                   return;
              if (e instanceof PrefetchCompleteEvent)
                   player.start ();
                   return;
              if (e instanceof RealizeCompleteEvent)
                   vc = player.getVisualComponent ();
                   if (vc != null)
                        add (vc);
                   cc = player.getControlPanelComponent ();
                   if (cc != null)
                        add (cc, BorderLayout.SOUTH);
                   add(new MyPanel());
                   pack ();
         public void itemStateChanged(ItemEvent ee)
         public static void main (String [] args)
              MPEGPlayer2 mp = new MPEGPlayer2 ("Media Player 2.0");
              System.out.println("111111");
    class MyPanel extends JPanel
         int i=0,j;
         public int xc[]= new int[100];
         public int yc[]= new int[100];
         int a,b,c,d;
         public MyPanel()
              setOpaque(false);
              setBorder(BorderFactory.createLineBorder(Color.black));
              JButton bn = new JButton("DrawLine");
              this.add(bn);
              bn.addActionListener(actionListener);
              setBackground(Color.CYAN);
              addMouseListener(new MouseAdapter()
                             public void mouseClicked(MouseEvent e)
                   saveCoordinates(e.getX(),e.getY());
         ActionListener actionListener = new ActionListener()
              public void actionPerformed(ActionEvent aae)
                        repaint();
         public void saveCoordinates(int x, int y)
                    System.out.println("x-coordinate="+x);
                    System.out.println("y-coordinate="+y);
                    xc=x;
              yc[i]=y;
              System.out.println("i="+i);
              i=i+1;
         public Dimension getPreferredSize()
    return new Dimension(500,500);
         public void paintComponent(Graphics g)
    super.paintComponent(g);
              Graphics2D g2D = (Graphics2D)g;
              //g2D.setComposite(AlphaComposite.getInstance(AlphaComposite.CLEAR, 0.0f));
              g2D.setColor(Color.GREEN);
              for (j=0;j<i;j=j+2)
                   g2D.drawLine(xc[j],yc[j],xc[j+1],yc[j+1]);

    camickr wrote:
    "How to Use Layered Panes"
    http://java.sun.com/docs/books/tutorial/uiswing/components/layeredpane.html
    Add your video component to one layer and your non-opaque panel to another layer.Did you try that with JMF? It does not work for me. As I said, the movie seems to draw itself always on top!

  • How to make a picture fit my monitor

    i want to make a picture fit my computer's monitor or screen and not lose its quality or change how the picture looks

    Press' f ' to cycle through screen modes and choose your preferred option then press 'Ctrl 0'.  (Ctrl zero)

  • How to make a Frame transparent?

    Hi everyone:
    I want to make a Frame transparent,it is possible?I find all the API but no result : (
    More, I want to increate my Frame's Height ,but it can't work. code is:
    Frame f=new Frame("Test");
    for(int i=0;i<6;i++){
    f.setSize(40,i * 10);
    }If I change to code to
    f.setSize(40,10);
    f.setSize(40,20);
    f.setSize(40,30);
    ...................It can work well.But why ? It is so complicated . : (
    Please help me

    More
    How to add a hyperlink Text in Frame? When I click it which can open a web site?

  • I have an Icloud account with my parents but want to make a new one. Will I lose everything that is currently on my phone? i.e. phone numbers, pictures, music

    I have an Icloud account with my parents but want to make a new one. Will I lose everything that is currently on my phone? i.e. phone numbers, pictures, music

    In case you're not clear - iPad/iPhone storage, and iCloud storage, are totally separate. Buying more iCloud storage does not give you more storage space on your device. Your device has a fixed storage space for apps and data (e.g., 16GB - which is more like 12GB in real terms). iCloud storage just allows you to store more documents, mail, photos, etc, in the cloud.
    Matt

  • I want to make a video clip using two still pictures, placing side by side.  I am able to make with only one at a time.

    I want to make a video clip using two still pictures, placing side by side.  I am able to make with only one at a time.  Also, I am able to move the picture using Transform.  But unsuccessfull in making with two stills in same clip.  Thank you for reply.

    If you want a Picture in Picture effect, stack one still on top of the other with a connect edit. Use Transform to scale and reposition the top image.
    Russ

  • I'm moving from a iPhone 4S to an iphone 5s but and I'm changing SIM card with same number but I want to make sure that all my pictures go onto my new phone how can I do that?

    I'm moving from a iPhone 4S to an iphone 5s but and I'm changing SIM card with same number but I want to make sure that all my pictures go onto my new phone how can I do that?

    Hello Bethanygrace_m7,
    Thank you for contacting Apple Support Communities. You can take a look at this article about transferring content from your old iPhone to a new one:
    Transfer content from an iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    Here is another thread from the Communities about migrating data from an old iPhone to a new one:
    Migrating data from old to new iPhone?: Apple Support Communities
    https://discussions.apple.com/thread/2038778
    Regards,
    Jeff D.

  • I have several issues that I hope you can help me out with. I am a professional photographer with a Mac with OS X 10.9.4: - I can only make ONE contact sheet in CS6 (from AUTOMATE) from pictures indicated in Bridge. If I want to make another contact sheet

    I have several issues that I hope you can help me out with. I am a professional photographer with a Mac with OS X 10.9.4:
    - I can only make ONE contact sheet in CS6 (from AUTOMATE) from pictures indicated in Bridge. If I want to make another contact sheet I need to shut down and restart CS6.
    - Camera RAW: if I change any setting in Camera RAW (except exposure), having first optimized the exposure, the exposure will automatically return to zero. Sometimes when I've set exposure and cropped the picture in Camera RAW Plug-In, the effects are lost just by opening the picture in CS6.
    - Sometimes if I crop a picture in Camera RAW, it may be impossible to open it again from Bridge!
    - I cannot do lens corrections in Camera RAW, at all. The Camera RAW comment is that "it cannot load the correct lens type". Why?

    Are you writing that when you select  a large number of images in the bridge  like a hundred thumbnails  when you then use Bridge menu Tools>Photoshop>Contact Sheet II that Photoshop only produces a single contact sheet for the first few thumbnails and fails to produce additional contact sheets for the other selected thumbnails? Photoshop contact sheet II script should create as many contact sheet as needed  for the numbers of thumbnails selected.  Perhaps the script is hung or you have exhausted  your machine resources.
    ACR Crop tool does not crop the RAW file it records crop settings to be used during the conversion process.    Camera RAW DATA is not altered.  The only changes made to RAW Files is ACR Metadata may be added.  Anything you do in ACR can be un-done in ACR.    If you can not open a RAW File in ACR the Files is either corrupt or from a new camera ACR does not support yet.  ACR should not corrupt RAW files.
    If you do not have a lens profile for ACR I think you should still be able to do lens correction manually in ACR.
    Some of what you write I don't follow could you post some screen captures of your problems often a picture helps.

  • I want to make a copy of all my pictures in iPhoto

    while working on a photo book my events, 242 of them, all got  mixed in just several big events.  I have been trying to create new events mostly of our trips but sometimes the event will appear and sometimes not.  The event will show but with no pictures.  I want to try the iphoto first aid but want to make a backup picture file off site first.  Do I copy the masters or original files.

    Neither. You back up the whole Library.
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store

  • I want to make all my caller id pics full screen how do i do that? When i download a picture from my phone it makes it full screen then it goes back to the small photo in the upper right hand corner how do i make them stay full screen help please:-)

    I want to make all my caller id pics full screen how do i do that? When i download a picture from my phone it makes it full screen then it goes back to the small photo in the upper right hand corner how do i make them stay full screen help please:-)

    @Naiks, having suffered through unsuccessful synching attempts for Calendar and Contacts myself, l would suggest you try the following:
    UNINSTALL iCloud control panel from your PC. Seems silly, but do it.
    Go into Outlook, and look at the very top menu. Click FILE, then ACCOUNT SETTINGS, then click the popup box.
    You will see a list of all your email accounts. Make sure that ONE of them has a checkmark against it. If not, select the account your want as your default, and click "set as default.
    Exit out of Outlook and reboot your machine.
    Now reinstall iCloud, check CALENDAR and CONTACTS, and do as instructed when prompted.
    Reboot for good luck and now launch OUTLOOK. All that remains is to locate your iCloud Contacts and Calendar files, and make them your default.
    IMPORTANT: Don't panic if you can't find your contacts -- they're there. Click CONTACTS and you'll see you have several available contact files. Locate the one label "iCloud" in grey type. Right-click on it, select PROPERTIES, then click the Outlook Address Book tab. Check the box that says something like "Make this my default Outlook Address Book." Keep clicking "apply" and "okay" until you've exited out of the dialog box maze.
    You may have to do something similar with your Calendar files. I dd not, but if you need to, do it.
    Everything should now sync pretty seamlessly.
    I didn't have the exact same problem as you, but my dilemma was close enough. Good luck!
    Arthur P. Johnson

  • Is there a way to color one thing in a black and white photo.  Example:  I have a picture of a tulip field and I want to make it black and white - which I have already done - but I want to make one single tulip red.  Help?

    Is there a way to color one thing in a black and white photo.  Example:  I have a picture of a tulip field and I want to make it black and white - which I have already done - but I want to make one single tulip red.  Help?

    No, you'll need an external editor for the job:
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate. You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • I have letters on top of image...want to make transparent

    I have a logo in vector format that I'm modifying to make certain areas transparent. I have the letters "P4B" that overlay part of the image. Basically, I want the image to have the letters "P4B" cut out of it.
    I've reviewed basic lessons on clipping/opacity masks, but I can't get the effect I want. I'm using Adobe Illustrator CC on a Mac. Any help is appreciated!

    Make Opacity Mask with Clip unticked and Invert Mask ticked
    There was another gray object underneath, so I couldn't see it before...I kept ungrouping objects until I could move the top one away to show that the effect was working. Then I erased the gray beneath it. Presto! I really appreciate your help. I've been stumped for a good day or so.

  • I want to make a trailer, it is possible to use pictures of iphoto to make it ??

    I want to make a trailer with imovie.
    Can I use my pictures from iphoto ??

    Hi
    As I remember it - NO
    BUT - You can make a project - add photos - save it as a full Quality QuickTime movie - import this and use it in Your trailer.
    PLEASE - Correct me ANYONE if I remember this wrong.
    Yours Bengt W

Maybe you are looking for

  • How to Call standard iView from WebDynpro custom iView

    Hello all Experts I want to know whether there is any way to call (navigate to) standard iView from my cutom WebDynpro iview or not? If yes please tell me how to code it. (Points will be awarded for helpful answers)

  • Hisses and pops in both Final Cuts

    Hey guys, I've been having some weird problems. Since I upgraded from Final Cut Express to Final Cut Pro, all my video (both rendered and exported to various formats) have hisses and pops in the audio. The problem now also occurs in Express. Did an a

  • Almost too embarrassed to ask

    I just finished reading through the first 14 pages of postings here and I'm more frightened of doing the OS X thing than ever. What are you people talking about? Permissions? Keychains? :<) My work Mac is a blue G3 with OS 9.1, which seems to suit my

  • Data Missing in Infotype 0586

    Hi SAP HCM Gurus, I am couldnt able to view the Current Year  Updation in this 0586 Infotype. we have run the Payroll , we could nt able to see the Data which we feed in IT 0586. Please need your quick Response. Find the Attachement

  • How to use upper case on screen panel

    Wireless Password includes upper and lower case and can't find a shift button on screen panel OfficeJet Pro 8500