Converted GIF Images Does Not Display In Report

I have a wmf file that contains an image. I converted the wmf file into a gif using software A. This image displays correctly in Oracle Forms and Reports (9.0.4). I take the same wmf file and use software B to convert the file into a gif. Using the same form and report, the gif image displays in Oracle Forms but doesn't display in Oracle Reports. I don't see why a gif image coverted from software A works properly but not when converted from software B. They are both gif images as a result of the conversion from the same wmf source file.
The reason I prefer software B is because it's a command line executable and the output is close to the original wmf file. When using the command line executabe from software A to convert the wmf file, the resulting gif file is 1/4 the original size and blocky when resized to the original wmf dimensions.
Is this an Oracle Reports issue/setting or the converter I'm using?

Thanks Clare!
Yes I run IE as Administrator. please find screen shots.
Also, SQL Server is running in SQL server and windows authentication mode. and when i connect data source in BIDS with windows authentication, test shows success but with another login id ReportServerLogin it does not connect. ReportServerLogin login has
all rights given and is there as sysadmin.
please find the screen shots.
Adnan

Similar Messages

  • Image does not display on MacBook Pro (does on PowerBook G4!)

    I created a slide in Keynote on my PowerBook G4 with an image dropped in (a pdf, I can't remember whether it was originally cut and past or dragged and dropped in). When transferring the Keynote presentation to a new macBook Pro (copying via a USB thumb drive), the presentation opens but the image does not display (everything else is OK).
    The weird thing is that the image does show up in the thumbnail in Navigator View. It disappears in Light Table View, and then is gone when I return back to Navigator View. However, when I close and reopen the file, it appears again in the thumbnail.
    When I click on the area where the image should be, the open squares show up around something. If I try to copy this object and past into another application (like Photoshop), I only get a blank image.
    I have managed to get around this by laboriously copying the affected images on my PowerBook into separate pdf files, then transferring those files to my MacBook Pro and dropping them into place. However, I know I will find a missing image at some later date, when I no longer have access to my old PowerBook.
    How to solve this problem?
    P.S. Both machines are running Keynote 4.0.2 and Mac OS 10.5.2.

    Thanks for taking a look!
    The original image was created using Photoshop to cut out an image from a pdf file. Then it was either cut and pasted or dragged into Keynote.
    Here are screenshots of what I get when I open the "droppedimage-17.pict" file (shown in the Show Package Contents window) using QuickTime on both machines. For the PowerBook:
    http://www.cems.umn.edu/download/attachments/Powerbook.png
    For the MacBook Pro:
    http://www.cems.umn.edu/download/attachments/MacBook_Pro.png
    Strangely, the Powerbook version looks like a correct grey-scale image, while the MacBook Pro looks like a B&W image.

  • Image does not display have editing

    I'm wondering if anyone is have this issue. On some of pictures after I make an edit (i.e. crop, spot/patch, etc). the image does not display. If I switch to full screen the updated image displays. When I switch back to the browser and viewer mode the image does not display in the viewer.
    This problem certainly makes editing pictures quite difficult.
    Any help would be great!!!
    Here's my system configuration:
    Aperture 2.1
    Mac Pro Dual Core 2.66Ghz
    5GB RAM
    2 x Nvidia GeForce 7300 Graphics Cards
    4 x 24" monitors.

    Karsten, thank you for your response, but the problem still seems to exist. I rebuilt my entire Aperture library then started to generate new previews. The rebuilt library and new previews work fine, however, again if I make an edit to the image and the apply the change the updated image does not display. If I resize the image in the viewer the image appears.
    This seems to be a very weird problem.

  • Image does not display on Webi/Information Analyzer report BO XI 4.O

    In Information Analyzer ( Webi ) I am using BO XI 4.0 ramp up version. I have create one report with image on it. I moved the image to image directory on BO server .
    While creating the report I am able to see the image fine. However when I call the report from a hyperlink the image does not get displayed.
    If I go and refresh the data, then the image comes back.
    But I want to be able to see the image without having to refresh the report each time.
    I restarted services and removed cookies and cache from IE broweser and tested with many other machines, but still same problem.
    Can someone please advice..soon..

    Is this a custom application that is viewing the report or is it Infoview or urlreporting?
    If it isn't a custom app, you may be better off posting this question [here|SAP BusinessObjects Web Intelligence; instead.  You may also want to open a case with support for this.

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • Control mouseover image does not display when contained in an array of clusters.

    I have been using system booleans (with some customization) for the ability to impement mouseover animations.  For example (default system booleans):
    The mouseover feedback works well with my UI, and for the most part everything is going great.
    However, the mouseover image does not load if the the boolean is contained within an array of clusters (a single cluster with the boolean inside or an array of booleans works as expected):
    The mouseover animation does work for a single array element in the above case (the one which was most recently clicked), but this behavior isn't desirable and it seems buggy if I were to leave this on my UI as it is.
    So I guess I'm just wondering if anybody has encountered this or has any suggested workarounds?  The few that I've thought of so far (maintain a separate array for any set of system boolean controls, check coordinates myself on mouse move event and try to update the proper element in the array, avoid using mouseover animations entirely for this set of controls) aren't all that desirable.  Even though this issue could be considered cosmetic, the UI is very important to me as this code is something shipped to customers.
    This is LV 2011 by the way, so if by some chance the behavior in 2012 is correct please let me know (this alone might be reason enough to convert the project up).  If there is a CAR ID for this behavior and an NI employee wishes to share it I would also appreciate that.
    Best Regards,  
    John Passiak
    Solved!
    Go to Solution.

    Hey Jason,
    A reproducing VI would be any VI that contains an array of clusters with a system control boolean inside.  Here's an example:
    Single Boolean, Single Cluster, and Array of Booleans all show the proper mouseover image.
    Array of Clusters always shows the mouseover effect on the last element which was clicked, but does not show the mouseover effect on other array elements (actually, it seems to be inconsistent--every now and then it does show the mouseover effect on other array elements but it is not at all reliable).
    Best Regards,
    John Passiak
    Attachments:
    MouseoverTester.vi ‏9 KB

  • Converting GIF images to JPG - display problems in browser

    I am currently writing a program that uses the ImageIO package (javax.imageio.*) to take GIF and PNG images and convert them to JPG images. The program seems to convert them correctly, especially for the PNG images, but the converted GIF images don't open in a browser. They open just fine in Windows Picture and Fax viewer, but when I try to open them in IE or Firefox, it only diplays the little red 'x'.
    Is anyone familiar enough with Images and the ImageIO package in Java that they may have some insight on why these converted GIF files won't display in a browser.

    Bonjour,
    In my [website|http://iweb.debutersurmac.com>, all the images are JPG files,
    By default iWeb '09 converts images to JPG (yes, it's true)...
    ...unless you use masked images*
    !http://i32.servimg.com/u/f32/09/02/44/99/masked10.jpg!
    Crop your images (with Preview) before you paste them in iWeb. Don't use mask, Unmask an image if it's masked. That's the trick!
    !http://i32.servimg.com/u/f32/09/02/44/99/unmask10.jpg!
    (* images with transparency areas (ex : some PNG and GIF), rotation and shapes in iWeb make also PNG files in your website.)

  • Image does not display when selected

    Images are not displayed on opening. Progress bar "Reading Photoshop format" runs and fnishes. Layer info is displayed at right. But the image is not shown in the work space.
    (Added) Problem occurs with PSD and DNG (ACR) file types only. JPG files open fine. DNG opens in ACR but the "Open" button has no effect. PSD does not appear at all, when selected.
    Any ideas appreciated.

    Looks like stopping/restarting PS resolved this issue, at least for the moment. I'm quite new to the Mac World, and may have pressed some wrong keys/combinations (?).

  • Favicon.ico image does not display consistently for our application,

    Hi,
    We have configured a favicon.ico for our application as below code snippet and referring to the favicon.ico image correctly. The icon file is available in our war file post deployment. The problem is some times it displays correctly and sometimes it does not display correctly.
    <af:outputText value="&lt;link rel='SHORTCUT ICON' href='#{facesContext.externalContext.requestContextPath}/images/favicon.ico'/>" id="favicon" escape="false"/>
    Can anyone point to any issue related to browser caching or application server caching and any possible fix to this intermittent behavior.
    regards,
    Chandra.

    Browser caching might be a problem, but we can't help as it is a browser issue. All I can say is to clear the browser cache and see if the problem can be reproduced. If yes it doesn't look like a browser problem. Then you have to check if you are connection via proxy which might cache images too. Ask your network admin for help then.
    Do you see this problem only with one browser? Have you check other browsers?
    Timo

  • Image does not display on my podcasts

    I had tried everything but the image linked to my podcast does not display.
    Here is the link:
    http://www.researchtopractice.net/podcast/feed/bcu.xml
    The feeder is validating, I have the correct sizes but cannot understand why the image does not show up.
    Any help will be appreciated.
    Joao

    There are two different images you need. One for the feed. This is the one that shows up on the main iTunes store page for your podcast. This image does not get added to the individual episodes when it is downloaded.
    To get Album Art work into the individual episode you need to add the image into the ID3 tags BEFORE you upload the MP3 file. See this tutorial on how to do that.
    http://www.podcast411.com/id3tags.html
    Rob @ podCast411

  • Dreamweaver CS4 Live View - background-image does not display

    I'm teaching a basic Dreamweaver CS4 class, and one of my students happened upon a unique problem. 
    Although the students were not required to use LiveView for their assignment, the student noticed that when he clicked the LiveView button to look at his assignment, that the background-image property that he set on the #header DIV does not display.
    I tried duplicating his problem by building a similar site to his, using the exact same Dreamweaver Starter Page he used, but I'm not able to reproduce it the problem. If I define a new site using the files the student sent me, the problem comes back.
    I'm completely stumped. What could possibly be causing the background-image CSS property to stop rendering in Live View?
    Thanks for any help at all!

    Hi
    Check your students css code for invalid or missing mark-up, or linking to the background image. Another possible problem, (occurs on some sites but not all) is to check if the url is enclosed in quotes as these are occasionally required but not always, also check for spaces in file names
    e.g. - background-image: url(../images/yourimage.jpg); should work but occasional requires quotes as in - background-image: url("../images/yourimage.jpg");
    PZ
    www.pziecina.com

  • Bkg image does not display

    A background image shows up in my "container" div in design view (DW CS4), but does not display in preview or Live View.
    What might be preventing the image from displaying?
    Note: bkg colors do display.

    How To get Help Quickly
    http://forums.adobe.com/thread/470404
    Upload the  test page to your web server and post a URL for us to see.  It could be bad image type, a bad path to the file itself or a half-dozen other things.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Image does not display in Applet

    Hi people,
    I'm trying to display an image (gif image) in an applet,
    however, it does not show up when the applet is run.
    Here is my code:
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.awt.Image;
    // An applet that loads an image and
    // displays it.
    public class DrawImage extends Applet
    Image image; //an 'Image' object
    //initialise applet
    public void init()
    //Load Image into object 'image'
    //URL url , String file
    image = getImage(getCodeBase(), "gifpic.gif");
    //applet's paint function
    public void paint(Graphics g)
    if(image != null)
    { //if image is found then drawImage()
    g.drawImage(image, 0, 0, this);
    else
    {     //if image is not found, then display message
    System.out.println("image not found");
    -----------------------------------------------------------------------

    Applets cannot access the system resources. To come out of the sand box of the applet you need to create policy files and certificate for the applet.
    Please refer this site for further details.
    http://java.sun.com/developer/technicalArticles/Security/Signed/
    Regards,
    EclipseOrg

  • Image does not display

    Hello,
    I am experimenting with Apex at the Oracle site (this should define the version and the environment, which I don't know much about).
    I uploaded a picture and created a region on a page to display it, but it doesn't get displayed, while a picture referenced as a URL does.
    Why?
    Please see these pictures for further info:
    <ul><li>The code I used: [http://www.flickr.com/photos/mazagare/3344789594/|Code]</li>
    <li>The display I get: [http://www.flickr.com/photos/mazagare/3344789608/|Display]</li>
    <li>The error I get after right clicking the picture not displayed and selecting "View Image": [http://www.flickr.com/photos/mazagare/3343955061/|Error]</li>
    </ul>
    The image is 467x700 pixels and it's file name is logo3_700.jpg.
    Any help would be highly appreciated! Thanks,
    Gabor

    Hi,
    In your screenshot, the "Not Found" refers to a URL of /i/logo3_140.jpg. The browser is trying to load an item directly from the Apex server. As the image is not loaded into the images directory, it can not be found in /i/ (which is a shortcut to the images folder (this is a standard setting for all apps - see the Application Definition for you application, it's the Image Prefix setting)
    #APP_IMAGES# and #WORKSPACE_IMAGES# both refer to files uploaded through Shared Components. All uploads are done onto the same table - the example page that I linked to (app 267 page 11), shows how these can be moved into custom tables. The difference between APP and WORKSPACE is whether or not you have stated that an uploaded image relates to an application or not. When displaying these images, Apex does not generate a link to the server's images directory but creates a reference to a procedure that does the download to the page. This will look somethng like: wwv_flow_file_mgr.get_file?p_security_group_id=7303113458208607&p_flow_id=267&p_fname=+filename+.+gif+. wwv_flow_file_mgr is the package that handles this and get_file is the procedure name. This will download the image to the page as long as the remaing parameters match for the file you need.
    As these are all handled for you by Apex, there's no "debugging" as such, it's more a case of knowing which substitution string to use in which instance - hopefully the doc I linked to will explain this for you
    Andy

  • Animated Gif Image does not render correctly on screen

    I have added animated gif image to the scene it does not render correctely.it shakes on the screen. plz give me any suggestion
    i use following code
    Image logo= new Image(getClass().getResourceAsStream("images/image.gif"));
    logoLabel.setGraphic(new ImageView(logo));

    Hello user,
    I think gif are rendered smoothly.
    Are you sure you are not making many object of same images everytime?
    Thanks.
    Narayan

Maybe you are looking for

  • Was told by Michael store manager at West Hollywood verizon store to get out or he will call security to boot me and my two kids out.

    I ordered a new iphone 6+ to be delivered to my house. It was shipped on 12/30 and was to arrive on 12/31. At 6pm I did not receive phone and tracked the package with fedex. Fedex site stated that phone was delivered and signed by some last name that

  • Wrt54g as a wireless access point

    alright i recently changed around my configuration with my wrt54g wireless router. I have made it into an access point which i was unaware is better. Im kinda new to the networking deal though it is what i want to do as a career and access points are

  • Can't add cover to albums

    Now first off all, I apologize for the english and spelling, but i am from Denmark. Second off all i have problems in itunes with some of the albums. I simply can't add album artwork to the the album, not even manually. Now these pictures should expl

  • JSP image button problem

    Hello I have a noob problem. I am trying to create an image button in my JSP page. I want to have an image as the background for the button with dynamic text on top of the image (in the foreground). This is what I have so far. <html:link href="javasc

  • PSE 7 empty folder

    I just purchased 7 (subject of another thread), imported files into a newly created subfolder (and they are there in Win Expl)and when the window that shows only the new files had none (had the same problem with 6) I pressed show all, highlighted the