Imported graphics partially obscurred by black rectangles in PDF

When I PDF a document with a lot of imported graphics, alot of the graphics are partially obscurred by black rectangles. I'm using the Adobe PDF print driver. Many of the graphics are BMPs (I inherited the files, I know it's a dumb format to use).
I've tried reimporting the graphics but still no luck.
I'm using structured Frame + SGML 6.0.
Any ideas?

Distiller 7.0
FrameMaker+SGML 6.0p357
Windows XP Pro SP 2
Acrobat 7
(Don't know about the updates)
It's running in emulation mode on a UNX box, so perhaps that makes a difference, but I think it has something to do with the graphics, since they don't always show the black box.

Similar Messages

  • Why do some imported jpegs, psd files show as black rectangles?

    I recently scanned a dozen B&W 8x10 prints, plus a color  book dust jacket, into Photoshop, saving all to my desktop variously as jpegs, TIFFs and PSDs, then attempted to import the images to my iPhoto library. Some showed up fine but most were simply black rectangles. With Get Into I could see the file size and the format, but that's it.
    One failed import was a 20MB jpeg, so file size might be an issue. But all other other failed imports were in the 2.7MB to 12MB. Suspecting file size may be the problem, I used PS to change the image size from 600dpi to 300 dpi, dropping the size to 5MB or so, and that worked. Question: Is there a size restriction on importing files to the iPhoto library? Any advice much appreciated. Thanks!  John Grissim.
    MacMini dual-core Intel, OS 10.6.8, iPhoto 6.0.6, CS3 Photoshop

    Black and white photos scanned as grayscale are not supported by iPhoto.  Actually it's the color profile, Dot Gain 20%,  which is used that causes the problem.  CMYK color mode photos are also not supported by iPhoto.
    For PSD files if you have an alpha channel that can cause problems in iPhoto. 
    With iPhoto size does'nt matter.  I've imported 100 MB files without a problem. In resizing you mighty have changed the profile or something that made it usable. 
    Scan all b/w photos as color.  You'll get the same result but they will be iPhoto compatible.
    If you want to conver the current b/w scans without rescanning you can try one of the conversions apps available at  Toad's Cellar.
    OT

  • Why do I get a black rectangle on the left side of the screen when I import a clip in Imovie?

    I import a clip into imovie 6 and I get a black rectangle on the left side of the screen. It's driving me crazy!

    Thanks for the reply.
    My original source material is in Apple Intermediate Codec, with 32-bit float audio and a variable frame rate. This has not been friendly to FCP, so I use Quicktime to convert it to Apple ProRes with 24-bit audio and 29.97 frame rate. This is what I import into FCP.
    My sequence settings are set to the same specs as my source material. 854x480, square pixels, no field dominance, Apple ProRes compression.
    The black bar on the left side of the screen shows up before I even export. It shows up when I render everything.
    I am exporting with Quicktime Conversion to:
    MP4
    h.264 codec
    720x405
    1000 video bit rate
    Main Profile
    No cropping/filters or anything.
    The ONLY thing I did different before upgrading to FCP6 was that I used Apple Intermediate Codec all the way through. I was told by an FCP instructor that writes and publishes all kinds of FCP training material that I should upgrade to FCP6 and use the Apple ProRes422 Codec instead, so that's what I'm trying to do.
    I am going back to restart my project using Apple Intermediate Codec all the way through like I used to, but it will be awhile before I can tell if that solved the problem. Either way, I would like to be using the ProRes codec....
    Thoughts?

  • FLV Import in mx 2004 results in black rectangle

    When I import an FLV all I get is a 160x120 black rectangle.
    This applies to all the FLVs I have. I checked that they play
    normally in nFLVPlayer. Is this because I'm using Flash mx
    2004?

    Have you tried exporting your .swf? They will show as black
    boxes when you are working in Flash.

  • Graphics turning Red or Black after a while for no apparent reason?

    For some reason every time I import graphics to the library they are fine. But when I put them on the stage (there's about 30 of them in each of different keyframes) they seem to be replaced by black or red rectangles. In the library, they are fine, and when I export them as a .MOV they are sometimes fine. If I export them as an .AVI, however, they remain red and black. It's not all of the graphics, but the longer that I am in Flash, the more of them turn red.
    I can't tell if it's one corrupt file or a corrupt installation, but it's been on three computers: a terrible laptop with Windows 7, a Mac, and a modern desktop with Windows 8.
    Can anyone fill me in on what might be the cause or possible solutions? (or ways to diagnose it?)

    My best guess is that you're somehow bumping up against a size limit like this Size limits | SWF, bitmap files | Flash Player 10. I know you're not using the Flash Player, but it's possible that since that limit is known there are limitations in the IDE that are related to it. Have you tried splitting your images into smaller pieces and combining several in the same Graphic symbol?

  • Strange Black rectangle in JPanel

    I have created a program that uses 2 classes a driver class and a resource class. However, when I run the driver class, a window comes up with a strange black rectangle. To make things easier to understand, here are my two classes.
    Driver Class:
       import javax.swing.JFrame;
       public class ProjectDriver
          public static void main(String[] args)
             JFrame frame = new JFrame("Project");
             frame.setSize(1000, 700);
             frame.setLocation(0, 0);
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             frame.setContentPane(new ProjectPanelMine());
             frame.setVisible(true);
       }Resource class:
       import javax.swing.*;
       import java.awt.*;
       import javax.swing.event.*;
       import java.awt.image.*;
       import java.awt.event.*;
        public class ProjectPanelMine extends JPanel{
          private int grow = (int)(Math.random() * 4);
          private static final ImageIcon EUCLID = new ImageIcon("euclid.png");
          private BufferedImage myImage;
          private Graphics2D myBuffer;
          private Timer t1,t2,t3;
          private int xpoints[]= {(int)(Math.random()*1000),(int)(Math.random()*1000),(int)(Math.random()*1000)};
          private int ypoints[]={(int)(Math.random()*1000),(int)(Math.random()*1000),(int)(Math.random()*1000)};
          private int wpoints[]= {(int)(Math.random()*1000),(int)(Math.random()*1000),(int)(Math.random()*1000),(int)(Math.random()*1000)};
          private int zpoints[]={(int)(Math.random()*1000),(int)(Math.random()*1000),(int)(Math.random()*1000),(int)(Math.random()*1000)};
           public ProjectPanelMine(){
             myImage = new BufferedImage(1000,700, BufferedImage.TYPE_INT_RGB);
             myBuffer = (Graphics2D)myImage.getGraphics();
             t1 = new Timer(5, new Listener1());
             t2 = new Timer(3000, new Listener2());
             t2 = new Timer(5000, new Listener3());
             t1.start();
           public class Listener1 implements ActionListener{
              public void actionPerformed(ActionEvent event){
                if (Math.random()>.7){
                   grow = (int)(Math.random() * 4);
                             if(Math.random() > .5)
                             grow = -grow;
                             System.out.println(grow);
                myBuffer.setColor(Color.blue);
                myBuffer.drawRect(0,0,1000,700);
                myBuffer.drawImage(EUCLID.getImage(), 10, 10,152,188, null);
                myBuffer.setStroke(new BasicStroke(3.0f));
                xpoints[0] += grow; xpoints[0] += grow; xpoints[1] += grow;
                ypoints[0] += grow; ypoints[0] += grow; ypoints[1] += grow;
                wpoints[0] += grow; wpoints[0] += grow; wpoints[1] += grow; wpoints[2] += grow;
                zpoints[0] += grow; zpoints[0] += grow; zpoints[1] += grow; zpoints[2] += grow;
                    myBuffer.drawPolygon(xpoints, ypoints,3);
                myBuffer.drawPolygon(wpoints, zpoints,4);
                repaint();
           public class Listener2 implements ActionListener{
              public void actionPerformed(ActionEvent event){
           public class Listener3 implements ActionListener{
              public void actionPerformed(ActionEvent event){
           public void paintComponent(Graphics g){
             g.drawImage(myImage, 0,0,getWidth(),getHeight(), null);
       }And the result, again, is a frame with a black rectangle filling up most of my screen that I don't want.
    So, what is the problem?
    Thanks in advance,
    Eric

    However, when I run the driver class, a window comes up with a strange black rectangleBecause a newly created image starts off as black. The blue color fills in as you consecutively draw polygons.
    I would have a thin line of white around the strange black box. Because you did a drawRect instead of a fillRect.

  • Black rectangle on startup

    I removed all the cables from the back of my Blue and White G4 (10.4.11) to do a spot of spring cleaning. On trying to restart I get a chime, the apple logo with spinning ball, then a black rectangle appears and the ball stops spinning
    I have:-
    1. zapped the PRAM
    2. started from the install disc and repaired permissions using Disc Utility
    3. started in Safe Mode and run TechTools Deluxe
    Any help would be much appreciated.
    Thanks
    Tony

    Hi-
    I assume it may also be accompanied by a grayish screen.
    This would be a kernel panic:
    http://support.apple.com/kb/HT1392
    Since you just did some plugging/unplugging, I would remove all cables again, open the tower and reseat the graphics card.
    Reconnect monitor, keyboard and mouse only, and try starting again.
    If still a no go, I would open it once again, and reseat the RAM.
    While you're in there, make sure all other connections are tight.
    Reconnect and try starting.
    If that doesn't do it, you will have to look deeper:
    http://www.thexlab.com/faqs/kernelpanics.html

  • Display - Black rectangle on upper right corner.

    After some reboots, for any reason (updating software, etc.), a black rectangle approximately 3" wide and 1" high shows in the upper right corner of the display, about 1/3" from the display sides.
    Restarting the laptop, sometimes twice, makes the black rectangle disappear.
    I have been unable to recreate any situation where the black rectangle appears, or disappears. It seems to be random.
    What could be the cause, and remedy?
    Although not very young, the laptop works fine.
    Another question, NOT related: is it possible to use a SATA internal HD in this PCC laptop? Its current HD is an ATA Toshiba.
    TIA
    Charly

    My guess is bad video RAM, but I suppose it could be a bad graphics chip or even a bad LCD connection. Try scrounging an external display and see if it has the same problem. Try gently flexing and squeezing the screen a little when this crops up. Unfortunately, bad VRAM is a permanent part of the main logic board.
    No, SATA drives won't work inside the PB G4. I think I have heard of adapters, but I doubt they would fit.

  • When drawing with polygon tool, a solid black rectangle appears??

    When I use the polygon tool to draw, a mysterious black rectangle appears underneath, and grows with my cursor movement, obscurring whatever is underneath. The black shape has nothing to do with the shape I'm creating. I am tracing boundary locations on a map, for example, and the black shape blocks out the lines I'm trying to trace, if my opacity is set at 100%.  It mimics the opacity I'm using to draw.  I never saw this in AA7.  Why would anyone want this function, and is there a way to turn it off?

    Hey leonieDF
    Thanks for your reply. I am exporting edited versions - export seems to work OK when exporting originals. But all my images are edited a bit, even if just simple cropping etc.
    I tried adjusting the color sync profile as you suggested but this didn't help. I also adjusted the gamma and watermark and again, no change.
    It seems like I have some kind of bug or something within Aperture, because it is doing all kind of strange things, like now eny time I edit a photo at all it appears solid black in my "browse" view (but OK when I double click it). Similarly, when I duplicate a photo it does random funky stuff to the photo in browse view (from being solid black, to solid red, to appeairng to have some random color filter, to appearing like static from static TV). These issues are all secondary though from the main issue of not being able to export images, since I have a friends wedding photos I am trying to get out to them!
    Any other ideas of what might be causing this?
    Thanks for your help!

  • A small black rectangle appears in place of my minimize/close buttons and prevents these functions.

    The small black rectangle is just large enough to cover the minimize/resize and close buttons in the upper right corner of the screen. It appears after I have been using the browser for a while. In other words, it is not there when I first launch Firefox. I am able to close the window by using the task manager but not by clicking where the black rectangle is. Sometimes when I click all through the black triangle, it resizes the window somewhat but not consistently.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    In Firefox 4 and later [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    Try to disable hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • Method to Import graphics using se78

    Hi Friends ,
    Can anyone tell me how to import graphics in bmp format using se78.
    I import a image but image becomes blur .
    Give me solution how to upload the images using se78 with same as orginal image.
    Regards,
    Anish

    Hi,
    Edit your photo with 'Windows Live Photo gallery' or 'Windows Picture and fax viewer' based on your operating system.  You will have auto adjustment, resolution etc.
    Keep optimal size of the picture to fit in the window size of your form.  If you keep it too small, it might be zoomed and blurred.  Also, try uploading it through black and white option.  It would be more highlighted.
    Regards,
    P Gomatheeswaran

  • An internal error occurred while writing imported graphics in this document. The file has been saved

    An internal error occurred while writing imported graphics in this document. The file has been saved, but has lost some image data. Please report this error to Adobe Technical Support.
    How do i fix this, there are no images in the document
    thanks
    emma

    We are running FM version 7.2b144 on MS Win xp Pro (32 bit), and I did not notice this until service pack 3 was installed. I believe I have found a work around to the situation and another contributing cause. If graphic files are placed directly in an anchored frame instead of importing by reference, the file somehow becomes misplaced. If you right click the graphic and open the Object Properties dialog box, and see the phrase "no referenced file" below Main Editor: Referenced File: in the lower left hand corner, this has happened. I found if I removed all graphics files without references and imported them by reference, the source file may then be properly saved. I am also using a program called CCleaner, which removes cookies, temp files, browsing history and the like from a system. If the program settings are chosen too aggressively, and the application runs when FM has a file open, this same error will occur, even if all files are referenced properly. I don't know if SP3 has some similar application which is now running in the background and causing this.
    To summarize, if you want to retain SP3, I have eliminated this error by confirming the links to referenced graphics files and avoiding using 3rd party "cleaners" while FM is open.

  • Black rectangles after 10.4.5 Upgrade?

    Help! I just did the automatic update to 10.4.5 and now I have black rectangles around many of the field windows, desktop icons, etc. It's especially annoying while using Quark.
    If I open a window box, the black rectangle superimposes itself over my layout.
    Is anyone else having the same problem?
    Can I uninstall 10.4.5 and go back to the former version?
    G5   Mac OS X (10.4.5)  

    katarina,
    Welcome to Apple Discussions.
    Mac OS X 10.4: Computer speaks unexpectedly, or a black box unexpectedly appears around a file, folder, or other item: If a black outline (or box) unexpectedly appears around a file, folder, icon, button, or other item when you click it, VoiceOver is probably enabled. Your computer might also be unexpectedly speaking items that you click on.
    If you don't want VoiceOver on, turn it off in the Universal Access preference pane, or by pressing Command-F5 (or Fn-Command-F5 if you have an iBook or PowerBook).;~)

  • B&W G3 gets Black Rectangle on Boot - Hangs

    My B&W G3 will not boot OS X 10.4 anymore. It worked fine before. Now when it boots I get the Apple logo then I get a solid black rectangle in the middle of the screen and it hanges.
    I put the 10.4 DVD in the drive and pressed C on boot. It starts to boot from the DVD then bang I get the solid black rectangle.
    I took all the cards out except the video card. I droped the RAM to 1 stick (256 MB). No help.
    It is booting from an Apple 6 GB IDE drive.
    It is a revision 1 board.
    I replaced the battery, pressed the CUDA ect.
    I put in OS 9.2 CD and tried to boot from it as well. No luck. It hangs as well.
    No network is connected.
    I tried USB keyboard & Mouse and ADB. No help.
    Why am I getting the solid black rectangle on the screen after the Apple logo?
    Thanks!
    Tony

    Will it boot in Safe Mode? See
    What is Safe Boot, Safe Mode? (Mac OS X)
    http://docs.info.apple.com/article.html?artnum=107392
    Also *Resolve startup issues and perform disk maintenance with Disk Utility and fsck*
    http://docs.info.apple.com/article.html?artnum=106214
     Cheers, Tom

  • Why are iCal alarms coming up with a black rectangle?

    Why are iCal alarms coming up with a black rectangle? I'm running 10.3.9 and iCal v. 1.5.2. This started after I did software updates this week.
    iMac   Mac OS X (10.3.9)  

    I solved it in my case by going to System Preferences>Internet & Network>QuickTime>Advanced, then clicking the checkbox to Enable Flash. I also had to quit and restart iCal.
    I think the Quicktime715 update that recently came out had something to do with it.
    It seems that the black box is supposed to be a movie of a vibrating alarm clock, and apparently that movie uses Flash.
    I hope this fix works for you too.

Maybe you are looking for

  • How to batch convert PDF forms to XML?

    We have a PDF form to monitor project progress. Steakholders fill the form and send to main project office. They get about 20 PDFs like this every day. End of day,  these PDFs (all in one format) should be read one-by-one and converted to XML. How do

  • Error in "Reading the Accounting document Attachments"

    Hi all, I have a requirement to read the attachments from the accounting document. I am using below Function Modules. BDS_BUSINESSDOCUMENT_GET_URL , to get the link of the attachments  based on the object key. DP_GET_STREAM_FROM_URL , To get the cont

  • Icloud for windows xp does it exist?

    i was wondering if icloud for windows xp exist?

  • Strange Mail behavior

    OK, this just started yesterday: I can enter ONE (1) addressee for a new email message. If I want to add another name (Boba...), this is what I get: BBoBobBobbBobbaBobbaBobba If I touch the delete key, I just get another "Bobba." If I highlight the w

  • PSE-12: where is the Lighting Effect filter?

    PSE12--Lighting Effects Filter IS NOT IN THE PSE-12 THIS WAS A NICE AFFECT ON YOU PHOTOS ADOBE WHY? DID YOU TAKE IT OUT PLEASE BRING IT BACK...THANKS