Black background on imported images

I have imported a few images that have blank backgrounds (.png images for instance), and iPhoto automatically puts them on a black background. This is fine except for when the image is black, and in that case, you can't see the image. Can I change the background color?

hotwls:
Welcome to the Apple Discussions. Those png files have transparency layers and which show up as black when displayed in iPhoto. When added to other documents or printed the background of the paper or other documents will show thru. To change them export them to the desktop changing the format to jpg and the transparent layer will change to white.
The other formats that can contain transparency layers are gifs and Photoshop.
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Similar Messages

  • Black background when scaling images with transparent background

    I am implementing Zooming functionality for reports which have some icons. I am trying to scale icon by scaling its image. But the problem I am facing is that the icons have transparent background and the scaling puts a black background in place of transparent. Is there any way to maintain its transparency or better yet, Is there anyway to put a white backgound instead of the black one that is created by default ? Here is my code
         public static Icon getScaledIcon(Icon icon){
             if(icon instanceof ImageIcon){
                  Image outImage = ((ImageIcon)icon).getImage();
                      return new ImageIcon(getScaledImage(outImage));
             }else{
                  Image outImage = new BufferedImage(icon.getIconWidth(),
                            icon.getIconHeight(),
                            BufferedImage.TYPE_INT_ARGB);
                    JComponent comp = new JComponent(){};
                    icon.paintIcon(comp, outImage.getGraphics(), 0, 0);
                    return new ImageIcon(getScaledImage(outImage));
        public static Image getScaledImage(Image image){
             image = image.getScaledInstance((int)(image.getWidth(null) * getScale()),
                           (int)(image.getHeight(null) * getScale()), Image.SCALE_SMOOTH);
            return image;
        }I haven't done much image manipulation , so I would really appreciate any help or advice.

    I have also not done much of image work. But I guess you could achieve your functionality of showing scaled image in the screen by not scaling the image and show it, instead scale the image in paint method by calling g.drawImage giving the height and width. But use high resolution images so that scaling is good.
    If you do in this manner, you could give any colour you want as background to fill the transparent area or leave it as such.
    Regards,
    techece.

  • Black background of saved image file.

    Hello All,
    My code is set up to create an image then save the image into a file in JPEG format. Everything works well except the background of the saved image is balck. How can I get a white background on the saved file?
    I have posted my code below. I have allocated 10 duke dollars for the person solves who this? Thank You!!!!
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import com.sun.image.codec.jpeg.*;
    import java.io.*;
    import java.awt.image.BufferedImage;
    public class Test2 extends JApplet {
    public void init() {
    //Initialize drawing colors
    setBackground(Color.white);
    setForeground(Color.black);
    public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    Dimension d = getSize();
    int gridWidth = d.width / 6;
    int gridHeight = d.height / 2;
    // fill Rectangle2D.Double (red)
    g2.setPaint(Color.red);
    g2.fill(new Rectangle2D.Double(100, 100, 100, 100));
    g2.setPaint(Color.black);
    g2.drawString("My Rectangle", 125, 85);
    public static void main(String s[]) {
    JFrame f = new JFrame("Test2");
    f.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}
    JApplet applet = new Test2();
    f.getContentPane().add("Center", applet);
    applet.init();
    f.pack();
    f.setSize(new Dimension(400,300));
    f.show();
    saveAsJPEG(applet, 1.0F, "myJPEG.jpg");
         public static void saveAsJPEG(Component component, float quality, String filename)     {
              try          {
                   Dimension d = component.getSize();
                   BufferedImage bimage = new BufferedImage(d.width, d.height, BufferedImage.TYPE_INT_RGB);
                   component.paint(bimage.createGraphics());
                   Graphics2D g = (Graphics2D)bimage.getGraphics();
                   g.setPaint(Color.white);
                   if(!filename.endsWith(".jpg"))
                        filename += ".jpg";
                   OutputStream out = new FileOutputStream(filename);
                   JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
                   // Create JPEG encoder
                   JPEGEncodeParam jpegParams = encoder.getDefaultJPEGEncodeParam(bimage);
                   jpegParams.setQuality(quality, false);
                   // Set quality to (quality*100)% for JPEG
                   encoder.setJPEGEncodeParam(jpegParams);
                   encoder.encode(bimage);
                   // Encode image to JPEG and send to browser
                   out.close();
              catch (Exception e)          {
                   System.out.println(e);
    }

    I've added 2 lines to your paint, it works now.
    public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    Dimension d = getSize();
    int gridWidth = d.width / 6;
    int gridHeight = d.height / 2;
    // make a white background
    g2.setPaint(Color.white);
    g2.fill(new Rectangle2D.Double(0, 0, d.width, d.height));
    // fill Rectangle2D.Double (red)
    g2.setPaint(Color.red);
    g2.fill(new Rectangle2D.Double(100, 100, 100, 100));
    g2.setPaint(Color.black);
    g2.drawString("My Rectangle", 125, 85);
    }

  • Black background in transparant images

    Let me 1st explain what is happening.
    1/ Place a Photoshop image with transparent background in Illustrator.
    2/ Save a 1.5 pdf (or higher).
    3/ Open the pdf in Acrobat, select the image, copy it.
    4/ Open Photoshop, make new image and past the image you copied b4 from Acrobat.
    You will see that the transparency is filled in with a black color.
    Why is this?
    And can this be changed, so i can have a whit background?
    Thanks

    I don't imagine you will be able to copy and paste an image with
    transparency. Maybe using the Object Touch-up Tool in Acrobat Pro to
    open the image directly in Acrobat will preserve the transparency, but
    not if it was done with a clipping path.
    Aandi Inston

  • Problem: Light color shadow on top of black background when printing

    Using InDesign CS3, PC.
    I have a book cover design that looks perfect on screen. There is a section with a black background and colored letters on top of it. Also on top of this black background is an image of a dinosaur (made in illustrator CS3). The image was placed into the InDesign file and does not have any color to the background. But when it is printed (Xerox Phaser), there is a colored shadow where the image overlaps the black background section.
    There are also colored areas over other black background sections where drop shadows (35%) occur on top of the black background.
    Could anyone tell me what I am doing wrong? I have never dealt with 100% black in my designs before and I must be doing something wrong.
    Again, on the screen you cannot see any of these colored areas on top of the black background. It's only when I print that they show up.
    Thank you,
    Cathy

    http://indesignsecrets.com/eliminating-ydb-yucky-discolored-box-syndrome.php
    http://indesignsecrets.com/eliminating-the-white-box-effect.php
    Bob

  • WORD doc x files show lettering changed from black to white with black background, colors have black background

    WORD doc x files received open with black lettering changed to white with black backgrounds. Color images have black backgrounds. There is no issue for non MAC users. How can I open the document as sent? Thank you.

    Pages (any version) is not a word clone, and may not digest Word documents as accurately as their native Microsoft application. Pages v5 is also far from feature/functionality complete, and that only compounds this issue.
    Suggest you download/install the free LibreOffice and open the Word documents with it. Do the artifacts persist in LibreOffice?

  • How to eliminate background of an image while Maintaining semi-transparent mid-ground.

    Sorry if the topic name is slightly inaccurate or if my question seems amaturish, I'm fairly new to using PS. For a project I would like to delete the black background of this image http://calibermag.org/wp-content/uploads/2013/11/2534069-Action-Bronson-617.jpg and replace it with another background, however I would like to keep the smoke that's lingering over the background. Are there any techniques or tools I could use to delete the background and the black behind the smoke without directly effecting the smoke?

    That image will respond well to the [Refine Edge] feature.
    Basically, select the dude with e.g., the Quick Select Tool, then use Refine Edge and paint the Refine Radius Tool over the smoke.
    This tutorial gives the technique in some detail.  The technique shown works in the most current version of Photoshop.
    http://tv.adobe.com/watch/the-russell-brown-show/masking-basics-in-photoshop-cs5/
    Smoke isn't too terribly different, conceptually, than hair.
    -Noel

  • JAI - Saved image has black background (unless screen config is True Color)

    Hi!
    I'm trying to save images using JAI's codecs. Everything is okay if screen config is True Color, but if in 256 colors (or even in 65536 colors) the background of my images looks very dark...
    Can you please have a look at the code bellow (and try it with some different screen configs). I'm really stuck with that issue; any suggestion may help...
    NOTE:
    - I've noticed this problem when using JAI's jpeg codec.
    - The problem occurs with both JDK 1.3 and 1.4.
    - The problem does not occur (only) if screen config is True Color.
    - You must rerun the code after changing screen config.
    Thanks for help...
    cbmn2
    +++++++++++++++++++
    import java.awt.*;
    import com.sun.media.jai.codec.*;
    import javax.media.jai.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    import java.awt.image.renderable.*;
    public class Test2 extends JFrame
    String codecFormat = "jpeg";
    String outFilePath = "./test.jpg";
    JPanel jp;
    JButton jb;
    MyActionListener mal = new MyActionListener();
    public Test2()
    setSize(800,600);
    Container cp = getContentPane();
    cp.setLayout(null);
    jp = new JPanel(){
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    Dimension dim = getSize();
    // initialization...
    //==================
    g.setColor(Color.white);
    g.fillRect(0, 0, dim.width, dim.height);
    // some drawing...
    //=================
    int inset = 10;
    g.setColor(Color.red);
    g.fillRect(inset, inset, dim.width-2*inset, dim.height-2*inset);
    jp.setBounds(10,10,400,300);
    jp.setBorder(new EtchedBorder(EtchedBorder.LOWERED));
    cp.add(jp);
    jb = new JButton("Save image to '"+outFilePath+"'");
    jb.setBounds(10,320,400,50);
    jb.addActionListener(mal);
    cp.add(jb);
    class MyActionListener implements ActionListener
    public void actionPerformed(ActionEvent ae)
    Object source = ae.getSource();
    if (source == jb)
    jb_actionPerformed(ae);
    public void jb_actionPerformed(ActionEvent ae)
    try {
    Image image = jp.createImage(jp.getWidth(), jp.getHeight());
    jp.paint(image.getGraphics());
    saveImage(image, outFilePath, codecFormat);
    JOptionPane.showMessageDialog(this, "File '"+outFilePath+"' is now saved...");
    catch(Exception e) {
    JOptionPane.showMessageDialog(this, "Oops! An exception occured...");
    public void saveImage(Image image, String filePath, String format) throws Exception
    // conversion Image => RenderedImage
    //==================================
    RenderedImage renderedImage = JAI.create("AWTImage", image);
    ParameterBlock pb = new ParameterBlock();
    pb.addSource(renderedImage);
    pb.add(DataBuffer.TYPE_BYTE);
    renderedImage = JAI.create("format", pb);
    // saving file
    //=============
    JAI.create("filestore", renderedImage, filePath, format);
    public static void main(String[] args)
    (new Test2()).setVisible(true);
    }

    try this:
    BufferedImage bi = new BufferedImage(1728,500,BufferedImage.TYPE_BYTE_BINARY);
    Graphics2D big = bi.createGraphics();
    Graphics2D g2 = bi.createGraphics();
    big.setFont(new Font("Dialog", Font.PLAIN, 20));
    big.setColor(Color.WHITE);
    big.fillRect(0,0,1728,500);
    big.setColor(Color.BLACK);
    big.drawString("Data/Time Created:" + new java.util.Date(), 80, 210);
    big.drawString("POLICY NUMBER: 1711215 NAME OF CALLER: BENEFICIARY", 80, 230);
    big.drawString("Requested: Loan Request XXXXXXXXXXXXXXXXXXXXXXXXXXXXX Current Loan Value: $0.00", 80, 270);
    g2.drawImage(bi, 0, 0, null);

  • Black background for transparent PNG images - Xcelsius 2008 SP4

    Hi Experts,
    I am using Xcelsius 2008 SP4. I have used Image component to show a PNG image with transparent background. When I export the flash, the image is being shown with a black background.
    In Xcelsius 2008 SP3, this problem was not there. I am facing this issue after installing SP4.
    Did anyone else face similar issue ? Is there any workaround ?
    regards,
    pasg

    Hi all,
    I was facing the very same issue. I succeeded in finding a solution to it. This is happening coz of the dimension and pixels of the .png image. I imported the image in the image component, which had the dimensions, 175 x 70, and was of 9.26 kb and the black background was visible. I then changed the dimension of the image to 428 x 140, and 19.2 kb (double the size), and VOILA!! to my surprise IT WORKED !
    Don’t forget to “check” the “embed file” and  “Hide SWF Background Color” check boxes in the image component's, general tab.
    Try the same, I hope this helps.
    Regards,
    Sara

  • Help: I have a globe image with a black background...how to...

    Hi,
    I have a simple Earth globe image with a black stars background. I'd like to cut out the black background and get this all white....basically id like just the globe visible with no background.
    http://www.ingerreime.no/inger/Images/globe.tiff
    I know this is newbie question, but i have no idea how to do it. Please don't tell me i have to get photoshop???
    Thanx!
    David

    Dave:
    Terence isn't the jerk in this thread. He's was just attempting to give you a solution you can run yourself instead of having it given to you.
    GraphicConverter can create a transparent file, a gif. Try the following workflow:
    1 - first convert the file to a gif (use 89a) and save and reopen.
    2 -select the Magic Pen and set it's sensitivity to about 40 (double click on it will bring up the setting pane).
    3 - click on the black background to select all of the black.
    4 - select to the Edit->Make Selection Transparent menu option.
    5 - save the file.
    The black will turn to a checkerboard pattern indicating transparency. If you anticipate a lot of advance editing I suggest you look at Photoshop Elements. I find it much more powerful than GC and it supports layers which is a very powerful too. Here's an example of some of the advanced editing you can do with it.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Using binarize... Getting Tiff Image in Black Background..

    Hi,
    Basically my subject summarizes my problem, but I am trying to write some text to a blank JPEG file and then create a Tiff file from that JPEG...
    But When i use the binarize i am getting the image as black background and the resolution is not that great...
    I am using binarize, because i need to use TIFFEncodeParam.COMPRESSION_GROUP4 but i was getting bi-level error, that is why i am using binarize to create a GROUP4 with black and white color to minimize the file size...
    I am posting the source code, i would appreciate someone can take a look at this code and figure out why i am getting black background...in the tiff file...
    Any help will be greatly appreciated...
    Thanks in advance...
    ========================================
    import javax.swing.UIManager;
    import java.awt.*;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class Application1 {
    private boolean packFrame = false;
    //Construct the application
    public Application1() {
    Frame1 frame = new Frame1();
    frame.setVisible(true);
    //Main method
    public static void main(String[] args) {
    new Application1();
    ================================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import com.borland.jbcl.layout.*;
    import com.sun.image.codec.jpeg.*;
    import com.sun.media.jai.codec.*;
    import javax.media.jai.*;
    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import java.awt.image.DataBuffer;
    import java.awt.geom.GeneralPath;
    import java.io.*;
    import java.awt.image.renderable.ParameterBlock;
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author unascribed
    * @version 1.0
    public class Frame1 extends JFrame implements java.io.Serializable {
    private JPanel contentPane;
    private JButton jButton1 = new JButton();
    public static final String DEFAULT_FILE = "blank.jpg";
    private static RenderedImage img;
    //Construct the frame
    public Frame1() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    //Component initialization
    private void jbInit() throws Exception {
    //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
    contentPane = (JPanel) this.getContentPane();
    jButton1.setBounds(new Rectangle(125, 87, 79, 27));
    jButton1.setText("jButton1");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton1_actionPerformed(e);
    contentPane.setLayout(null);
    this.setSize(new Dimension(400, 300));
    this.setTitle("Frame Title");
    contentPane.add(jButton1, null);
    //Overridden so we can exit when window is closed
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    void jButton1_actionPerformed(ActionEvent e) {
    String fileName = DEFAULT_FILE;
    // Read the image from the designated path.
    System.out.println("load image from '" + fileName+"'");
    PlanarImage src = JAI.create("fileload", fileName);
    // Generate a histogram...
    Histogram histogram = (Histogram)JAI.create("histogram", src).getProperty("histogram");
    // Get a threshold equal to the median..
    double[] threshold = histogram.getPTileThreshold(0.5);
    PlanarImage dst = JAI.create("binarize", src, new Double(threshold[0]));
    BufferedImage bi = dst.getAsBufferedImage();
    Graphics2D big = bi.createGraphics();
    Graphics2D g2 = bi.createGraphics();
    big.setFont(new Font("Dialog", Font.PLAIN, 20));
    big.setColor(Color.black);
    big.drawString("Data/Time Created:" + new java.util.Date(), 80, 210);
    big.drawString("POLICY NUMBER: 1711215 NAME OF CALLER: BENEFICIARY", 80, 230);
    big.drawString("Requested: Loan Request XXXXXXXXXXXXXXXXXXXXXXXXXXXXX Current Loan Value: $0.00", 80, 270);
    g2.drawImage(bi, 0, 0, null);
    try {
    File file = new File("test.tiff");
    FileOutputStream out = new FileOutputStream(file);
    TIFFEncodeParam params = new TIFFEncodeParam();
    params.setCompression(TIFFEncodeParam.COMPRESSION_GROUP4);
    ImageEncoder encoder = ImageCodec.createImageEncoder("TIFF",out, params);
    if(encoder == null) {
    System.out.println("imageEncoder is null");
    System.exit(0);
    encoder.encode(bi);
    System.out.println("DONE!!!");
    catch (Exception ex) {

    try this:
    BufferedImage bi = new BufferedImage(1728,500,BufferedImage.TYPE_BYTE_BINARY);
    Graphics2D big = bi.createGraphics();
    Graphics2D g2 = bi.createGraphics();
    big.setFont(new Font("Dialog", Font.PLAIN, 20));
    big.setColor(Color.WHITE);
    big.fillRect(0,0,1728,500);
    big.setColor(Color.BLACK);
    big.drawString("Data/Time Created:" + new java.util.Date(), 80, 210);
    big.drawString("POLICY NUMBER: 1711215 NAME OF CALLER: BENEFICIARY", 80, 230);
    big.drawString("Requested: Loan Request XXXXXXXXXXXXXXXXXXXXXXXXXXXXX Current Loan Value: $0.00", 80, 270);
    g2.drawImage(bi, 0, 0, null);

  • Printing black background on paper, instead of actual image

    hi,
    i am having a JPanel with some photos drawn on it using g.drawImage(..) method, for printing. while running the program the panel is showing fine on the screen. since in my room as i dont have a printer, i am printing with adobe printer in which the content to be printed will be saved as pdf file.
    Even the created pdf file while printing is showing perfectly what is supposed to be printed. but when i tried the same program and asked to print on real printer, strangely only a large full black background is printed on paper instead of the image.
    plz explain why such thing is happening.
    thanx.

    Here is sample code based on your description. Maybe you find some hints in it to help you.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import javax.swing.*;
    public class PrintPanel extends JFrame {
        public PrintPanel() {
            initComponents();
        private void initComponents() {
            toolBar = new JToolBar();
            printB = new JButton();
            panel = new MyPanel();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            setTitle("Print Panel");
            toolBar.setFloatable(false);
            printB.setText("Print");
            printB.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    printBActionPerformed(evt);
            toolBar.add(printB);
            getContentPane().add(toolBar, BorderLayout.NORTH);
            getContentPane().add(panel, BorderLayout.CENTER);
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-375)/2, (screenSize.height-480)/2, 375, 480);
        private void printBActionPerformed(ActionEvent evt) {
            PrinterJob pj=PrinterJob.getPrinterJob();
            pj.setPrintable((Printable)panel);
            try{
                pj.print();
            }catch (PrinterException ex) {
                ex.printStackTrace();
        public static void main(String args[]) {new PrintPanel().setVisible(true);}
        private JButton printB;
        private JToolBar toolBar;
        private JPanel panel;
        class MyPanel extends JPanel implements Printable{
            MyPanel() {
                Toolkit T=this.getToolkit();
                img=T.getImage("c:\\javalogo.gif");
                MediaTracker mediaTracker = new MediaTracker(this);
                mediaTracker.addImage(img, 0);
                try {
                    mediaTracker.waitForID(0);
                } catch (InterruptedException ex) {
                    System.err.println(ex);
            public void paint(Graphics g) {
                g.drawImage(img, 150, 150, this);
            public int print(Graphics g, PageFormat pageFormat,
                    int pageIndex) throws PrinterException {
                if(pageIndex>0) {
                    return NO_SUCH_PAGE;
                paint(g);
                return Printable.PAGE_EXISTS;
            private Image img=null;
    }

  • Why cant I see image I am placing on black background?

    I am trying to design a postcard with one image on a black background. I've made the area black w/rectangle tool and when i physically place image I cannot see it. Ive tried to move it to front? What am I doing wrong? Any help on resizing images would be helpful also. When I "placed" the image it was huge so I used the "transform" to reduce its size. How will this effect resolution? What is proper way to import image that you need to make smaller but maintain ratios? Many novice questions, I'd be grateful for help and answers.

    Here is the 72 ppi warning.
    Then I went to check what you suggested and here's what I found.
    and the link
    which isn't a linked image?
    I am trying to do something that seems so simple, an image from a .jpg on a black background???? I just cant get the 300 dpi like they say I need
    to do. I am far from a computer genius and screwed up the last postcard I made so I've got to get this right.
    I appreciate any and all the help.
    Hope to solve this in the am with all of your help, especially yours mr. falkner. Cheers.

  • After Update Cisco Prime Infrastructure from 1.3 to 2.0 imported floor plans has black background

    Hello everybody,
    we have updated cisco prime infrastructure from 1.3 to 2.0. When we now import a floor plan (autocad-file, dwg-format), the background from finally image, that is show in prime, is black. Previous imported floor planes has a white background. We also tried to import a previous imported floor plan again, the background is now black. Is there a possibilty to change the background to white? Thanks

    Hi,
    Look no further, these issues are related to know bugs. It seems that autocad files have multiple issues with PI 2.0, Only feasible way is to convert them to JPGs and import them. Lets hope these will get fixed to the level they where at PI 1.3.
    CSCuj63017, PI 2.0 dwg(AutoCAD file) import reports Tailormade is for Demo use only
    Symptom:
    When dwg files are imported to Prime Infrastructure, they report
    "For Demonstration Purposes only
    Tailor made software"
    Conditions:
    Prime Infrastructure - 2.0.0.0.294
    Use of dwg (Auto cad) files
    Workaround:
    None at this time
    Further Problem Description:
    CSCuj94500, Loading DWG floor maps on PI 2.0 appears in black background
    Symptom:
    On PI 2.0 when we try to import autoCAD .dwg file to map, the map appears in black background.
    Conditions:
    On PI 2.0 when we try to import autoCAD .dwg file to map
    Workaround:
    use 3rd party tool like Draftsight or AutoCAD Trueview to change the file to .jpg and import again to PI, after that the map appear in white background in PI 2.0.
    Further Problem Description:
    However, the same .dwg file when we imported it to PI 1.3 appear in map with white background.

  • I am working in pages with a template and want to keep the image but get rid of the black background?

    I am working in pages with a template and want to keep the image but get rid of the black background?

    Surprise surprise but we can't see what you are looking at and referring to.
    What black background?
    If it is black background in the actual photo:
    Menu > Format > Instant Alpha > drag the cursor over the colored background you wish to remove
    Peter

Maybe you are looking for

  • Can I have a primary key as a non-unique column

    Hi all, I have a table with 35 columns and only one column in a not null column. But this column data is not unique. I want to create a primary key with non-unique index, can I don it, if it is not possible is there any other way to it. Please help m

  • Photoshop CS6 opens quickly- must wait 2-3 minutes to use program.

    Greetings.  New to the forum.  I've found several references to my problem online, but none of the suggestions seems to work.  I have a brand new iMac running 10.9.4 Mavericks.  It has a 2.7 GHz Intel Core i5 processor and 16 GB of RAM.  I also have

  • Not able to edit assets in Illustrator/Photoshop and save over existing assets in Edge animation

    Not able to edit assets in Illustrator/Photoshop and save over existing assets in Edge animation to update image changes. Has Adobe changed this capability with new releases? Does this mean to update an asset on the Edge animation timeline, you have

  • In mode of taking a picture or videoing

    whenever I set the BB 8330 into picturetaking or video recording, the BB freezes and I have to reboot it. No problem with viewing pictures or videos. Hope someone out there has a solution. Thanks Solved! Go to Solution.

  • Photoshop Elements 9 changing page size/photo layout

    Hello.  I am using the trial version before purchasing. I like to print out photo album pages with about 9 photos per page in the 8.5x11 portrait format.  However, all the "photo book" templates are in landscape and have only up to 3 photos per page.