Image not displaying properly in pdf report

Hi,
I have imported a jpg image on the layout using Reports builder 6i folowing File-Import-Image. Its just a static image. Once i move this report to the server in binary mode and open it from apps(Quote pdf report), the report pdf has the image displayed with half side pitch blank color and the other half side with the actual picture. Can you guide what should i do to display the mage properly.
Thanks.

Hi,
Resolved this problem.
I had 2 more images in the same report, one jpeg & another one in gif format. I removed the image in gif format, converted it into jpeg format & imported back in report layout. Thus, making all three images in the report in the same format(Jpeg).
Once I have all images of the same format in a report. It works fine.
Regards.

Similar Messages

  • Images not displayed properly

    [Migrated from the Syclo Resource Center]
    prashanthi_vangala   01/03/2012 06:44,
    Hi,I am working on Agentry 5.4.0I have a list screen where for one of the columns I have a rule to display images ( I use checked and unchecked images ). Earlier the images were getting displayed properly on the ATE but  it is not working now and I did not make any changes to the image properties then.But after this, I tried couple of things with the image properties to make it work, like when I do not use any mask colour the image does not get displayed but when i use any maks colour the image gets displayed but its completely blacked out ( and thus for checked image, cannot see the check mark and its completely blacked out ).I face same issue with the login image as well. I added a new Image ( Logo ) to my App for the login Screen, but even this image does not appear on the login screen.
    I also tried deleting the Dev folder and re-publishing, but even this does not work.
      -Prashanthi
    Jason Latko   01/03/2012 11:42
    Try deleting the Application directory under your development server where the images reside and publish again.
      Completely clear your ATE and transmit again from scratch.
      Also, what mask color are you using?
      Try using a green hugh and not black or white for the mask.
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/03/2012 12:38
    Hi Jason,Thank you for the reply.I already tried all the  things you have mentioned, but the same issue exits still.
    Prashanthi
    Jason Latko   01/03/2012 12:40
    Is it just the ATE, or do you have the same problems using the WIn32 or PPC clients?
    Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/04/2012 06:21
    Hi Jason,Behaviour in ATE:I have changed the image now and tested with the new image . Now, its behaving strangely:When I do a sync after publishing or a reset of ATE; I see the new image properly displayed on the screen but when I leave the screen and come back to the same screen again, the new image is getting replaced by the old image ( atleast the old image is not displayed properly, it appears like a black square box..and because of the same issue I had with this image I switched to the new image ). Behaviour in Win32 Client:When I tested with the client, I see  the new image properly for the first time and when i leave the screen and come back the image disappears..This is the behaviour in client.
    Please suggest.
    -Prashanthi
    Jason Latko   01/09/2012 11:35
    Prashanthi,What did you use to create these images?
      They are simple bitmaps I assume?
      Try creating some very simple images using Microsoft Paint, then set a mask of green in Agentry.
      Your problem sounds familiar, but I can't find a matching bug in our database.
      Maybe someone else has experienced this?
      You could also try upgrading to a newer version of Agentry to see if the problem goes away.
      We are currently on version 6.0.4.Jason Latko - Senior Product Developer at Syclo
    prashanthi_vangala   01/11/2012 10:02
    Hi Jason,
    Thank you for the reply.
    But strangely, from past few days I see that the image is working fine again.
    But kept this topic open because it was wierd, that the image is working correctly again without making any major change. What I did was to just write the rule again which calls the image ( though i did this before and did not work then but worked now ) and to observe the image behaviour for few days.But it seems like it is fine now.
    Thanks and Regards,Prashanthi

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • Images not displayed properly.Any advice on that?

    Hi,
    I found the following code inside the forum and i'm trying to understand it.
    It appears to be a problem though. In particular the images(chess-pieces) are not displayed properly. The background of the gif images should be transparent but is not. Any advice?
    Thanks
    Here is the code:
    import java.awt.*;
    import javax.swing.*;
    public class ChessBoard10 {
    static final int PAWN = 0;
    JFrame frame;
    JComponent[][] checker;
    public ChessBoard10() {
    frame = new JFrame("CHESS GAME");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container con = frame.getContentPane();
    con.setLayout(new GridLayout(8, 8));
    checker = new JComponent[8][8];
    for (int row = 0; row < 8; ++row) {
    for (int col = 0; col < 8; ++col) {
    JComponent p = new JPanel();
    p.setBackground(setColor(row, col));
    checker[row][col] = p;
    con.add(p);
    frame.setSize(500, 550);
    frame.setVisible(true);
    Color setColor(int y, int x) {
    Color c;
    if (y % 2 == 1) {
    if (x % 2 == 1) {
    c = Color.white;
    } else {
    c = Color.black;
    } else {
    if (x % 2 == 1) {
    c = Color.black;
    } else {
    c = Color.white;
    return c;
    public void setPiece(Piece pc, int row, int col) {
    JComponent p = checker[row - 1][col - 1];
    //one base -> zero base conversion
    if (p.getComponentCount() > 0) {
    p.remove(0);
    p.add(pc);
    p.revalidate();
    /*test*/
    public static void main(String[] args) {
    int Bpawn = 0,
    Bbishop = 1,
    Bking = 2,
    Bknight = 3,
    Bqueen = 4,
    Brock = 5,
    Wpawn = 6,
    Wbishop = 7,
    Wking = 8,
    Wknight = 9,
    Wqueen = 10,
    Wrock = 11;
    ChessBoard10 cb = new ChessBoard10();
    for (int i = 1; i < 9; i++) {
    cb.setPiece(new Piece(Bpawn), 2, i);
    cb.setPiece(new Piece(Wpawn), 7, i);
    cb.setPiece(new Piece(Bking), 1, 4);
    cb.setPiece(new Piece(Bqueen), 1, 5);
    cb.setPiece(new Piece(Bbishop), 1, 3);
    cb.setPiece(new Piece(Bbishop), 1, 6);
    cb.setPiece(new Piece(Bknight), 1, 2);
    cb.setPiece(new Piece(Bknight), 1, 7);
    cb.setPiece(new Piece(Brock), 1, 1);
    cb.setPiece(new Piece(Brock), 1, 8);
    cb.setPiece(new Piece(Wking), 8, 4);
    cb.setPiece(new Piece(Wqueen), 8, 5);
    cb.setPiece(new Piece(Wbishop), 8, 3);
    cb.setPiece(new Piece(Wbishop), 8, 6);
    cb.setPiece(new Piece(Wknight), 8, 2);
    cb.setPiece(new Piece(Wknight), 8, 7);
    cb.setPiece(new Piece(Wrock), 8, 1);
    cb.setPiece(new Piece(Wrock), 8, 8);
    class Piece extends JPanel {
    String[] imgfile =
    "Bpawn.gif",
    "Bbishop.gif",
    "Bking.gif",
    "Bknight.gif",
    "Bqueen.gif",
    "Brock.gif",
    "Wpawn.gif",
    "Wbishop.gif",
    "Wking.gif",
    "Wknight.gif",
    "Wqueen.gif",
    "Wrock.gif" };
    public Piece(int type) {
    add(new JLabel(new ImageIcon(imgfile[type])));
    }

    Well, without actually testing the code which I most unfortunately can't do since my real computer is chrashed at the moment, try checking the
    boolean Component.isOpaque();otherwise try using .png's instead altough it shouldn't matter.
    This is just some general advices =(

  • Crystal Report Toolbar images not displaying properly in IE?

    Hi,
    I am using VisualStudio 2012 ,crystal report version 13.0.2000.0 and sp5.
    My problem is that after loading crystal report, toolbar image icons (such as print,export etc) are not showing properly in internet explorer(version ie10). But it is displaying correctly in chrome and firefox.
    What could be problem ?? Any help will be appreciated ..

    See this re. images:
    Visual Studio 2012 Crystal Report not working on Windows Server 2012/ 0x800a1391 &amp;#8211; JavaScript runtime error: &…
    Also, don't forget to do your own searches - search box is in top right corner and simple search strings are best. E.g.; 'Crystal net red x'.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
      Follow us on
    Twitter

  • Fonts not displaying properly in PDFs in Preview

    When I open a PDF in Preview, fonts are either substituted, or the text doesn't display at all.
    PDFs display properly in Adobe Acrobat, however.
    I've tried deleting Preview's preferences, to no avail. Any clues?

    This is a constant problem for us too (on our new Leopard only machines), any program that uses the OS to display PDFs will keep dropping type.
    This means the finder, preview, keynote and mail applications. Our placed PDFs in keynote slides don't show type. In finder windows, the type in pdfs (the icon) is sporadic at best, in mail and entourage the type on pdfs in email is also sporadic. Preview itself is completely hot or miss. But open the same pdf in acrobat and viola, perfect.
    Clearing the font caches and restarting is only a temporary fix.
    This is an inexcusable bug that makes doing professional design work (the sole reason we have macs) extremely difficult. I wish we had not upgraded any of our computers.

  • Images not displayed properly jv:imageButton tag

    Images are not displayed jv:imageButton tag. I am able to see the images sometimes, but not consistently. I have followed the steps mentioned from the Platform RI. I was able to see the images without any problem before Beta 3/JDev R1 uptake. I had migrated my code base from D7B7/Beta 2 to JDev R1/Beta 3 env. Images were displayed correctly in the iLog, in D7B7/Beta 2 environment properly without any issue.
    Any thoughts as to why this is happening.
    regards,
    Chandra

    We am using "jv:imageButton" tag for displaying the image and below is the tag code,
    <jv:imageButton styleClass="buttonStyle"
    selected="true"
    onclick="networkCanvas.setInteractor(clientSelect)"
    image="../oracle/communications/inventory/ui/images/arrow.png" buttonGroupId="interactors"
    rolloverImage="../oracle/communications/inventory/ui/images/arrowh.png"
    selectedImage="../oracle/communications/inventory/ui/images/arrowd.png"
    title="#{inventoryUIBundle.SELECT}"
    message="#{inventoryUIBundle.SELECT}" />
    The able code is present in the below path,
    ..\public_html\oracle\communications\inventory\ui\network\page\NetworkView.jsff
    The images are present in the following path,
    ..\public_html\oracle\communications\inventory\ui\images\zoomrecth.png
    I am not thinking this is a Platform Beta 3 uptake issue. And I am suspecting an issue with integration of ilog with ADF. Any help in this regard would be helpful.
    regards,
    Chandra
    Edited by: user638992 on Feb 25, 2010 3:40 AM

  • BI Publisher Java API not displaying Barcode in PDF Report

    Hi Team,
    I have used BI Publisher java API in my ADF Application to generate PDF reports. It is not displaying barcodes in the PDF Reports. I have included Code 39 ttf file in my java home as well. Please let me know if any other configuration needs to be done.
    I am using jdev version 11.1.2.0.0. Please help me out if anyone knows the solution to this problem.
    Thanks in advance,
    Kavitha

    {forum:id=245} is the BIP forum.

  • Png button image not display properly

    i have create two png image
    one for default
    and one for selected
    i assing both image to button view...
    but when run it to simulator as well as on iphone
    it will not display clear png image

    Also go through
    Look and Feel for "Button"Thanks
    --Anil                                                                                                                                                                                                                       

  • My programming? JRE 1.4 bug? Images not displayed properly!

    I made this simple card game which you can checkout at http://www.koutbo6.com I used AWT components and used Panels for drawing the cards and the main game panel has a null Layout. It runs perfectly on all java enabled browsers ... except for IE on windows XP.
    I came across a problem where the card images are not displayed at all. some images that are drawn disrectly on the backround are partially drawn or not drawn correctly. The IExplorere had microsft virtual machine donloaded for windows XP. I managed to correct the problem by disabling JIT compiling from IE advanced setting.
    Then I installed XP on another PC and was surprized that Microsoft stopped distributing the Java Virtual Machine for XP, so I opted for sun java plugin V1.4 and the same problems occur. There is no way to turn off JIT compiling and i read in oone of the bug postings that the option has been taken off in versio 1.4.
    when the problem occurs I noticed that g.drawString works perfectly and all the AWT components are displayed even in the main panel with the null layout. the problem occurs with displaying the images. It could be with the way im doing things.
    this is how I draw my images using the paint method:
         public void paint(Graphics g){
              super.paint(g);
              if(cardImage != null){
                   g.drawImage(cardImage,0,0,this);
           }this is how I draw cards images on card panels, if i wana clear the image I would set cardImage to null and repaint. This is how i draw all the images in the client.
    Is there a problem with my way of doing things? or is there a problem with the java plug in? I'v yet to try installing older java plug-ins on this PC, I will try it and post if it solves the problem.
    Thanks in advance

    Well I tried other versions of the plug in and they seem to have the same problem. But I have noticed that images loaded using Applet.getImage() were displayed without problems. And when I ran the server/client locally "without" JARing the files, the images displayed perfectly.
    I am using a load image method that I picked up from the forums to enable the loading of images from jars when using netscape. This is the code I use to load the images from JAR:
         /** get an image from anyt sorce.*/
         public Image getImageFromJAR(String fileName){
              if (fileName == null) {
                   return null;
              Image image = null;
              byte[] thanksToNetscape = null;
              Toolkit toolkit = Toolkit.getDefaultToolkit();
              java.io.InputStream in = getClass().getResourceAsStream(fileName);
              int x = 0;
              try{
                   int length = in.available();
                        thanksToNetscape = new byte[length];
                        in.read( thanksToNetscape );
                        image = toolkit.createImage( thanksToNetscape );
              }catch(Exception exc){
                   System.out.println( exc +" getting resource " +fileName );
              return image;

  • Background image not displaying properly

    My site is not displaying correctly on mobiles and ipads.  I want my background image to span the width of most widescreen monitors but it's not displaying correctly.  I am sure I am doing something wrong.  Also have some problems with the map not spanning the width on some devices.  Any help greatly appreciated.
    Website:  cdic.us
    Thanks in advanced.

    Does it help if you change this:
    html, body {
        margin: 0;
        padding: 0;
        background-color: #F0F0E3;
        background-repeat: no-repeat;
    to this:
    html, body {
        margin: 0;
        padding: 0;
        background-color: #F0F0E3;
        background-repeat: repeat-y;
    Martin

  • Image not displaying properly for SAP GUI for HTML transaction iview

    Hi,
    We have a sap gui for HTML iview for transaction REORRR in portal. After giving enough inputs this leads to Business Document Navigator screen(part of Document management) where i need to display a document(.jpg image in this scenario). When i double click on the image it is opening on the right side of the screen but in a compressed format where in we need to scroll down to see the image. But i would require the image to display with out scroll bar or in a new window.
    When i change the format of the iview as SAP GUI for Windows the image is opening in a new window.
    I would like to know whether there is any configaration settings either in portal or in Document management side. or is this any limitation of the SAP GUI for HTML scenario.
    regards
    Bharat.

    Hi,
    You can open this iview in a new window make the setting in the iview properties that will allow the iview to be opend in a new window.
    Regards,
    Vamshi.

  • Large images not displaying properly in Acrobat Pro 9

    When creating PDF documents from any software (Illustrator, Corel, InDesign, etc), color objects over 50% of the page size have white fill. If object has an outline, the outline will appear normally, but the fill will be white. I've searched forums everywhere and have found no answer. Most forum topics on this are issue focus on settings in the program that exported the PDF. I am 99% sure this is not an export problem, but is something in Acrobat itself (a missed setting? Corrupt program file?)  
    To provide the best information, I've done a little scientific research. Here is what I know:
    Currently running Acrobat Pro 9.5.5
    This is only happening on ONE install of Acrobat 9. Documents display correctly in Reader X and in Acrobat 9 on other machines.
    Started happening a few weeks ago, I have no idea what changed.
    "Show Large Images" in preferences dialog is checked. Unchecking it and rechecking it does nothing.
    Have installed all available updates to the software
    I experimented with different object sizes. At 50% of page size, objects appeared normal, at 51% filled object disappears.
    Does not affect photos, only affects vector objects.
    I welcome all ideas to fix this.
    ALSO - Am running this on Windows Vista 64 Bit

    Hello? Is there nobody in the Adobe universe that has an actual solution to my problem?
    Other things I've tried to solve this:
    repair the install.
    uninstall and reinstall
    cuss at the computer
    throw a tantrum.
    I will pay someone a whole dollar for a solution that works.

  • Images not displaying in CFDOCUMENT PDF

    Hi there,
    Has anyone notice any problems with images in dynamic PDF
    using CFDOCUMENT? I have a site where I create several dynamic PDF
    document (with images) and all of a sudden, they stop displaying.
    The only new addition was a SSL for the site.
    Any help would be greatly appreciated.

    Thanks, Isaac.
    My reason for posting that I was trying the src="file://E:\ solution before putting it in CFDocument was that I figured if it didn't work with the browser, it probably wouldn't work with CFDocument, which was probably presumptuous of me.  I just tried using the IP Address instead of E:\etc and it shows up in the browser.  Good news, the IP Addresses fix the logo problem, but not the CFChart problem.
    Here's the failed img tag:
    <img src="logo_30.jpg" width="96" height="50" border="0" alt="">
    Here's the successful img tag:
    <img src="http://ipaddress/portal/PROD/Forms/monthly_reports/logo_30.jpg" width="96" height="50" border="0" />
    Here's the chart code:
    <CFQUERY NAME="GrabData" datasource="admi-prod">
              sql goes here
    </CFQUERY>
    <cfset gwidth = 450>
    <cfset gheight = 320>
    <cfset min = int(arrayMin(grabData["total_inventory"])) - 1>
    <cfif int(arrayMin(grabData["total_idle_capital"])) LT min>
            <cfset min = int(arrayMin(grabData["total_idle_capital"])) - 1>
    </cfif>
    <cfset max = ceiling(arrayMax(grabData["total_inventory"])) + 1>
    <cfchart scalefrom="#min#" scaleto="#max#" title="Total Closing Inventory & Total Idle Capital" format="jpg" chartheight="#gheight#" chartwidth="#gwidth#">
            <cfchartseries type="line" query="grabData" valuecolumn="total_inventory" itemcolumn="xlabel"/>
            <cfchartseries type="line" query="grabData" valuecolumn="total_idle_capital" itemcolumn="xlabel"/>
    </cfchart>

  • Tiff images not display properly

    After installing iPhoto 6, none of the 1600 files in .tiff format imported via a Lexmark scanner are showing up correctly. (They worked perfectly well in iPhoto 5)
    I get a blurred scribbled squashed image a little like a TV channel that hasn't been set correctly.
    If I go back and click on the files in the Finder, they open beautifully in Preview.
    This lead me to believe there was an issue with the tiff-format and I promptly converted a copy of the files to jpegs.
    Unfortunately this left me with a new problem as three white lines now appear thru all the pictures in jpeg format.
    Luckily I never deleted or moved the .tiff files, so I am still hoping to use those.
    Will there be an Apple update which fixes this or will I have to re-scan and date/title- another (sigh) 1600 pictures? (please, someone tell me no)
    Best wishes,
    N

    I think I found the fix.
    As I mentioned in my previous post, I have also been having trouble with TIFF images and iPhoto 6.
    Today I downloaded the new iPhoto 6.01 update. But, that didn't fix the problem either. So much for Apple fixing it.
    Anyway, I have been experimenting, and finally found a difference between images that worked and those that didn't.
    The images that worked, have an ICC profile embedded in them from the device that created the image (in my case my scanner).
    So, I set out to find out if simply removing the ICC profile would fix the problem.
    And, through my experimenting, I found that if I opened the image in another program, and then exported it as either a TIFF (the same format) or a JPEG that the resulting image would open in iPhoto 6 just fine.
    Further examination demonstrated that the ICC information was removed from the exported file.
    As I understand it, ICC is basically an image color correction / calibration tag. It enables different devices to properly display and print the image with the proper colors.
    Basically, each device has a color profile (scanner, monitor, printer, camera, etc.). This is to make sure that when you see something on the screen that it looks the same as when you print it out. Likewise, you want the image on the screen to match what the scanner and digital camera saw.
    So, these are essentially conversion tables to make sure that each device properly displays or prints the image as the original source "saw" it.
    Anyway, not wanting to manually strip this information from each file, I looked on the Internet for an automated solution. And, fortunately I found one.
    http://www.colormanagement.com/technicalresources/files_targets_and_utilities/mac_os_xscripts/
    The file you are looking for is "Mac Os X ColorSync Toolbar Script: Remove ICC profile". Click on the title just mentioned to download the script.
    It is a Macintosh Script that you simply download to your desktop (or anywhere else you would prefer). It is in a Stuffit Archive, so you'll need Stuffit Expander to decompress it (basically the Mac equivalent of a ZIP file).
    Once decompressed, you should see a "script" icon that is labeled "Remove Profile".
    Simply "drag" your original files and drop them onto this icon / script. The script will then remove the embedded ICC information from the image file.
    Once you have removed the ICC information from your image's file, try importing it into iPhoto 6 again. Then, see if it works
    It is important that you perform this on a backup / duplicate copy of your original files. You don't want to damage your only copy if something goes wrong.
    Now, one further note: If you do this, you may see the image looks different. In my case, the image is truer to the way it really looked when I scanned it in. The paper texture looks right now.
    If you want to do this while keeping the image's appearance the same as it looks now, then here's another way:
    Open the file in Apple's "Preview" program. This is usually the default image view.
    Then, do a "Save As" or "Export" to create a new copy of the image. If you perform an Export, be sure to set the image quality high or you may inadvertently reduce your pictures detail (especially if you export to JPEG).
    This essentially does the same thing. But, it will take more work if you have multiple images.
    Using the previously mentioned script, you should be able to drag and drop multiple files in a group.
    Anyway, I hope this helps the rest of you out.
    Let me know if it fixes the problem for you as well.

  • Quarters are not displayed properly in the reports

    Hi all,
    I'm experiencing some troubles while loading data from PeopleSoft Financials v9 (with demo data) into Oracle Business Intelligence Applications 7.9.6.1 : W_MCAL_DAY_D seems not to be properly filled, as I have some lines where the quarter is empty.
    As a matter of fact, I have GL reports where a fiscal year is split into 5 quarters : for instance 2000 Q1, 2000 Q2, 2000 Q3, 2000 Q4 and 2000 Q.
    !i50.tinypic.com/33e1w8n.jpg!
    Fiscal periods & calendar configuration are loaded from PeopleSoft. Have some of you already experienced this kind of problem ?
    Thank you for your support !

    Solved !
    The problem was due to a table that wasn't loaded in PeopleSoft : PS_CAL_SUMP_TBL.
    By setting up a summary calendar in PS (with quarters), it enabled me to properly load W_MCAL_DAY_D with MCAL_QTR and MCAL_PER_NAME_QTR.

Maybe you are looking for