Image quality issue while exporting video to FLV

Hi, I have a major problem: I am using Adobe Media Encoder to export a movie (FLV format) and the image quality is so bad I can't read the text in my logo. The movie was created with Adobe Premiere Pro CS4. No matter what settings I chose from Media Encoder dropdown menu, I get the same bad quality.
Can anyone help me?
Thanks!
Laurent

Hi and thanks for the answer. The datarate is 1 500 Kbps, I increased it to 2 500 and I haven't noticed any differences. The source media is MPG from a camcorder. The export settings are 720 X 480 px. What are the sequence settings? I am not familiar with that.
Thank you,
Laurent

Similar Messages

  • Image quality issues in PS - word to PDF

    Hi,
    I am having major image quality issues when trying to make my word document a clean, clear PDF. Images become distorted. Borders for tables and text that are equal px size look like they are different sizes throughout the document.
    I have searched the internet, read help, and tried many different things:
    Word 2007 - Changed image %, image size, export options, adjusted px for borders, used different styles
    Acrobat 9 Pro - Changed import settings, import options, print options, tried press quality, high quality, etc.
    Photoshop CS4 - Changed ppx, file format, compression options
    What can I do to get a clean, clear PDF file with the images and borders preserved?
    Thank you.

    In converting a MS Office file to PDF, Photoshop cannot help in any way and will likely cause more harm as it may rasterize vector data. Expect your ideal answer in the Acrobat forum.

  • Image Quality issue with script

    So I recently wrote a simple script to output an image at a bunch of different resolutions. However, I am running into an image quality issue that I don't run into when I do the same thing manually.
    Here is an example image showcasing the image: http://terminalvelocity.ca/temp/notworking.jpg
    As you can see along the top of the model's forhead there is destinct color fragmentation. Which seems very strange.
    Here is the script, it is pretty simple, it asks for a few simple config options. (the above image was created using default settings). It then figures out the correct ratios and loops through doing each resize, saving the image, then reverting the history so each iteration uses the original image data and not the resized version:
    doc = app.activeDocument;
    openFilePath = Folder.selectDialog ("Where do you want the images to be saved?");
    maxSize = Number(prompt("What would you like to be the maximum length of the long edge? (Image is never upsized) (pixels)", 2800)); 
    minSize = Number(prompt("What would you like to be the minimum length of the long edge? (pixels)", 100));
    gap = Number(prompt("How much smaller should each image be? (pixels)", 100)); 
    quality = Number(prompt("What quality would you like the JPG exported as (0-12)", 10)); 
    var size;
    var primary;
    var secondary;
    if(doc.width > doc.height){
              primary = doc.width;
              secondary = doc.height;
    }else{
              primary = doc.height;
              secondary = doc.width;
    var ratio = secondary/primary;
    var size = [];
    for(var i = maxSize;i>minSize;i-=gap){
              var  p = i
              var s = i * ratio;
              size.push([p,s]);
    var w;
    var h;
    var n;
    for(var i in size){
              if(doc.width > doc.height){
                        w = n = size[i][0];
                        h = size[i][1];
              }else{
                        w = size[i][1];
                        n= h = size[i][0];
              if(doc.width >= w && doc.height >= h){
                        doc.resizeImage(w,h,null,ResampleMethod.BICUBICSHARPER);
                        jpgFile = new File(openFilePath+"/"+n+".jpeg" )
                        jpgSaveOptions = new JPEGSaveOptions()
                        jpgSaveOptions.embedColorProfile = false
                        jpgSaveOptions.formatOptions =
                        FormatOptions.STANDARDBASELINE
                        jpgSaveOptions.matte = MatteType.NONE
                        jpgSaveOptions.quality = quality
                        app.activeDocument.saveAs(jpgFile, jpgSaveOptions, true,Extension.LOWERCASE);             
                        doc.activeHistoryState = doc.historyStates[doc.historyStates.length-2];
    In comparison, here is an example of an image of the exact same resolution that does not exhibit this issue at all:
    The steps taken to save this image were as follows: http://photography.terminalvelocity.ca/content/images/2012/avery_konrad_6/horizontal/1500. jpg
    Image > Resize > Bicubic Sharper (1500px);
    Save For Web
         Jpeg
         Quality 75
         Optimzed: true
         Progressive: false
         Blur: 0
         Convert to sRGB: true   
    Anyway, as you can see, The manually exported image does not have any of the quality issues that are present within the scripted image. I am pretty new to photoshop scriping so am assuming it has something to do with me missing some sort of option in the save settings. Any help would be swell.
    Also note, this doesn't occur on all images, I usually don't see an issue when using the script, however, something about the tones of this particular photo make it really obvious.
    I am using the latest version of Photoshop CS6 (creative cloud) on Max OSX
    thanks so much!

    I'm on windows find the bicubicsharper does not work well it the image being resized has been highly sharpened all ready. Because of my Photoshop preferences I had to make minor modification to your script. I'm also a bit colorblind so i don't see many color issues so I include a screen capture if what windows does with your image and script.
    var orig_ruler_units = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;          // Set the ruler units to PIXELS
    doc = app.activeDocument;
    openFilePath = Folder.selectDialog ("Where do you want the images to be saved?");
    maxSize = Number(prompt("What would you like to be the maximum length of the long edge? (Image is never upsized) (pixels)", 2800));
    minSize = Number(prompt("What would you like to be the minimum length of the long edge? (pixels)", 100));
    gap = Number(prompt("How much smaller should each image be? (pixels)", 100));
    quality = Number(prompt("What quality would you like the JPG exported as (0-12)", 10));
    var size;
    var primary;
    var secondary;
    if(doc.width > doc.height){
              primary = doc.width;
              secondary = doc.height;
    }else{
              primary = doc.height;
              secondary = doc.width;
    var ratio = secondary/primary;
    var size = [];
    for(var i = maxSize;i>minSize;i-=gap){
              var  p = i
              var s = i * ratio;
              size.push([p,s]);
    var w;
    var h;
    var n;
    for(var i in size){
              if(doc.width > doc.height){
                        w = n = size[i][0];
                        h = size[i][1];
              }else{
                        w = size[i][1];
                        n= h = size[i][0];
              if(doc.width.value >= w && doc.height.value >= h){
                        doc.resizeImage(w,h,null,ResampleMethod.BICUBICSHARPER);
                        jpgFile = new File(openFilePath+"/"+n+".jpeg" )
                        jpgSaveOptions = new JPEGSaveOptions()
                        jpgSaveOptions.embedColorProfile = false
                        jpgSaveOptions.formatOptions =
                        FormatOptions.STANDARDBASELINE
                        jpgSaveOptions.matte = MatteType.NONE
                        jpgSaveOptions.quality = quality
                        app.activeDocument.saveAs(jpgFile, jpgSaveOptions, true,Extension.LOWERCASE);            
                        doc.activeHistoryState = doc.historyStates[doc.historyStates.length-2];
    app.preferences.rulerUnits = orig_ruler_units;          // Reset units to original settings

  • Bizarre Lightroom image quality issue

    I have a weird image quality issue with Lightroom, when opening RAW files (haven't tried it with any other file format, admittedly).
    Here's an example of how the image appears in Lightroom.  As an experiment, I exported the image as a TIFF and opened it in Gimp to see if it was just down to a display issue, but the exported TIFF showed the same quality issues as Lightroom. Aside from exporting as a TIFF (and then saving as a Jpeg), this image is SOOC:
    <a href="http://www.flickr.com/photos/swisstony10/4912360565/" title="IMG_4134 by swisstony10, on Flickr"><img src="http://farm5.static.flickr.com/4093/4912360565_5891c0160f.jpg" width="333" height="500" alt="IMG_4134" /></a>
    If I open the same image in Canon's own DPP software, this image quality issue does not occur, so I know that it's not an issue with the memory card, the camera, or my laptop's monitor.  The SOOC image from DPP (exported as a Jpeg) looks like this:
    <a href="http://www.flickr.com/photos/swisstony10/4912362053/" title="IMG_4134b by swisstony10, on Flickr"><img src="http://farm5.static.flickr.com/4116/4912362053_1ca92078c9.jpg" width="333" height="500" alt="IMG_4134b" /></a>
    Has anybody else experienced this, and if so, is there a fix?  (there had better be - I'm not going to be overly chuffed if my expensive Adobe software is being outperformed by the free stuff..  )
    Russ.

    This is proving to be an extremely helpful forum!
    Thanks for the advice on embedding my calibrated colour space - I don't very often send files anywhere other than my own home network (where all the monitors are calibrated), and when I do upload any to Flickr, it's never caused a problem in the past (and if I get anything printed by a lab, I use their ICC profile).  I'll definitely keep that all in mind though..
    Here's the original RAW file of the image I used as the example  https://www.yousendit.com/download/aHlUa3ZONmNFd2Z2Wmc9PQ   - I hope that helps someone to shed some light on what's going wrong.  From what you've said though, it does look as if this is just an extreme example of something that Lightroom isn't very good at doing.
    As I said in my original post, it'll be a bit disappointing if that's the case though, because a fair amount of the pictures I take tend to be of bands playing in what are, let's face it, diabolical conditions for photography.  (At the festival I was attending at the weekend for example, all of the photographers - even the seasoned pros - were moaning about how awful the lighting was in the Big Top, and how much it sucked to try and get a decent picture there, as opposed to the main stage where everybody wasn't completely backlit by either red or purple lights.  I appreciate that Lightroom is a much more powerful tool than Canon's DPP - the noise reduction controls on their own completely rock - but I must admit I'm a bit surprised that it can't handle highlights terribly well...

  • Issue while exporting report in PDF using crystal report XI

    Hello,
    I am facing issue while exporting a report to PDF through crystal report XI. Reports are generating properly in the crystal report browser but when I am exporting the reports in PDF or trying to get print by clicking on print button, reports not generating properly.
    Allignment in the exported PDF reports getting changed and reports margin is also changes. Due to this some part of report is chopped and printed on the next page.
    I have deployed my application on IBM WebSphere 6.1 server and I am getting following error which might help to identify this issue.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: The response has already been commited.---- Error code:0 Error code name:succeeded
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown Source)
         at com.crystaldecisions.report.web.component.o.a(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)
         at com.ibm._jsp._CrystalReportViewer._jspService(_CrystalReportViewer.java:107)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:115)
         at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:168)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1812)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    Caused by: com.ibm.wsspi.webcontainer.ClosedConnectionException: OutputStream encountered error during write
         at com.ibm.ws.webcontainer.channel.WCCByteBufferOutputStream.write(WCCByteBufferOutputStream.java:80)
         at com.ibm.ws.webcontainer.srt.SRTOutputStream.write(SRTOutputStream.java:96)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.writeOut(BufferedServletOutputStream.java:438)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.flushBytes(BufferedServletOutputStream.java:344)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.flush(BufferedServletOutputStream.java:323)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.flushBuffer(BufferedServletOutputStream.java:478)
         at com.ibm.ws.webcontainer.srt.SRTServletResponse.flushBuffer(SRTServletResponse.java:452)
         at com.ibm.ws.webcontainer.srt.SRTServletResponse.flushBuffer(SRTServletResponse.java:436)
         at com.crystaldecisions.report.web.viewer.JSPViewerResponse.flushBuffer(Unknown Source)
         ... 33 more
    Caused by: java.io.IOException: Async IO operation failed, reason: RC: 64  The specified network name is no longer available.
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:203)
         ... 3 more
    Thanks in advance
    Alok P.

    The stack trace is caused by whitespace in your CrystalReportViewer.jsp file.  Look up SAP Note 1199025 for the resolution.
    It's not related to the PDF formatting issue.  There's been changes to the formatting with the most recent version - Crystal Reports for Eclipse 2.0 - so if you haven't already, I recommend you upgrade.
    Note that there's differences in font metric calculation when using Adobe PDF format such that there's no way to get exact agreement between output of the CR and PDF.  But the latest version helps greatly.
    Sincerely,
    Ted Ueda

  • Hello! help me, please! while exporting video i faced an Unknown error compiling movie

    while exporting video i faced an Unknown error compiling movie. the problen somewhere in the biginning of the video. the sistem automatically chooses user's type of export and cuts the beginning(

    Error Compiling Movie... some past discussions and ideas
    -http://helpx.adobe.com/premiere-pro/kb/error-compiling-movie-rendering-or.html
    -http://helpx.adobe.com/premiere-elements/kb/error-error-compiling-movie-render.html
    -and nested sequences http://forums.adobe.com/thread/955172
    -and WMV files frame rate http://forums.adobe.com/message/4629210

  • Image quality issues - Sony Handycam (MPEG) to iMovie / iDVD

    I have read through dozens of posts but the recommendations vary widely and am hoping I can get some guidance specific to my situation. The image quality I am getting from home movies I edit in iMovie11 and burn to DVD in iDVD are far inferior to the original material.
    I have a Sony DCR-TRV17. This camera is a little over 10 years old. It is a miniDV with 500 lines resolution, 680K gross pixels and uses MPEG. While not HD, the image quality is exceptional. The DVDs I used to create using my Sony Viao likewise looked fantastic. But the results I get from iMovie and iDVD are on par with VHS -- very poor, especially in low-light.
    I hope the issue is just the settings when I import, edit (iMovie) and share to iDVD. I generally use the default settings, and often alternate settings don't seem to be selectable. It also sounds from other posts like iMovie sacrifices quality for reduced file size and increased simplicity? I would appreciate help with the following:
    1) Please list the settings I should be adjusting from default when I  a) import, b) edit in iMovie11 and c) share to iDVD and burn -- and the recommended settings for each
    2) Is there a process I should be trying? Should I be creating test DVDs using different settings at each stage and then reviewing various setting combinations to find the best one?
    3) I will most probably buy an HD camcorder very soon, and plan to burn to Blue Rays. I have no problem with going ahead and buying Final Cut and an external drive to burn Blue Rays. Should I just go ahead and do it and get away from iMovie / iDVD entirely. Will Final Cut solve this issue for my old miniDVs without a whole lot of hair pulling? Or will I still have to tinker with a bunch of settings or convoluted processes to get it "right." I never had to tinker with settings on my Viao. Really expected Mac software to be more user friendly…
    Thanks very much for any help or advice!

    On Import you could try unchecking Optimize video and choose Full Size. Your disk space however will get eaten up incredibly quickly choosing these settings as each hour of video = 40GBytes of disk space. So be forewarned about how big those files will expand as they come off the MiniDV tapes.
    Another thing you will immediately see a difference in is how you move files from iMovie to iDVD. Share to iDVD while named in an intuitive way, is NOT the best way to get good quality DVDs out of iMovie. Instead you want to Share to Media Browser. Choose the Large Size setting. Then quit iMovie. Open iDVD, click the Media button, the Movies button. Find your project listed under the iMovie star icon and drag it into the iDVD project. Burn the Disc and see if you get a higher quality disk by Sharing to Media Browser instead of Share to iDVD.
    If you choose a Blu-Ray burner, also get a copy of Roxio Toast. The encoding to Blu-ray that Toast provides will be top notch and prevent you from making mistakes as the recordable Blu-ray disks are more expensive than DVDs. So every mistake will be expensive.

  • Image Quality Issues from FCE to iDVD

    I've been attempting to take a 16 minute video shot in DV to a DVD and have been disappointed with the results. Using Final Cut Express, I've tried every codec but have found the image quality to be quite a bit less than the original DV footage. Also having a difficult time retaining the original 4:3 aspect ratio of the footage, despite specifying NTSC 4:3. When converting the footage to a Quicktime movie, the quality of the movie appears fine when played back on the Mac, but degraded when the final DVD is burned. Haven't used iDVD much, so the issue may lie there, but it's hard for me to believe that such a relatively small amount of footage would require so much compression that the final DVD image would show this much degradation from the DV footage.
    Is there some magic combination of codec and size that I'm missing when converting to Quicktime?

    Your FCE Easy Set should be DV NTSC.
    Your FCE Sequence Settings should also be DV NTSC.
    Export a QuickTime Movie using Current Settings, Self Contained.
    Bring that file into iDVD where it will be converted internally to MPEG 2.

  • Flash in Premiere Elements Image Quality issue

    Hello,
    I've decided now that I am going to create animated films in Flash and then edit them in Premiere Elements. the problem is, is that when I export it from Flash to Premiere Elements the Image quality is detiereoreted (i.e fuzzy, blurry, out of focus, general ugly to look at). I first realised that I couldnt use an swf file in Premiere and isntead I should use an AVI. So I did. Problem is I'm still having the same problem. the Image quality is still terrible and doesn't equal up to the origonal image quality. And then tried Uncompressing it and all that did is make the video clip jump over about 80 frames and still the image quality is terrible. Is their one little thing that I'm doing wrong or Am I altogether not getting this right.
    Programs I'm using:
    Macromedia Flash MX 2004
    Adobe Premiere Elements 3.0
    Adobe Premiere Elements 7.0 (currently not working)

    The MS DV CODEC should be installed on your system already. Whether Flash can Export to it could still be an issue. I'll have to check my version of Flash (think that it's Studio 8, but I've had it around from version 2) to see what all of the options are.
    I've been handed many Flash animations that were Exported as .MOV with the Animation CODEC, and these have edited fine.
    Other than the huge file sizes, AVI [Uncompressed] should work fine too. You might have resource issues, but that would depend on your system, more than on your NLE. I've used these with no issues many times.
    Another likely candidate would be the free Lagarith Lossless CODEC. I use it for intermediate transfer and it edits fine in PrPro. I would assume that it would be the same in PrE, but cannot verify this.
    On Monday, I'll be on my workstation with Flash and will tell you the exact version, plus the Export options available.
    Good luck,
    Hunt

  • Image quality issue in ACR

    Hi, Can anyone help me?
    I have been using ACR for a while now as a professional photographer, however I have recently started using Alamy picture library. They rejected all my submissions on quality grounds, as they 'lacked definition'. In consulation with another photographer, we have tracked the problem to ACR; the images appear perfect on his mac, and they also appear perfect on mine when I use the Nikon Software. The same quality issue appears in lightroom as well, therefore it is Adobe related. The Sharpening settings are as per ACR default.
    I am using CS3 and ACR 4.6; Some have suggested upgrading to CS5, however surely I shouldnt need to do this, as the Nikon D3 was brought out before I started using CS3, so it should work?
    Please please any help would be appreciated as this problem is driving me insane; I currently have to open all of my RAW files in the Nikon software and save as TIFF to then open in CS3, rather than using the more simple and logical workflow.
    Thanks,
    Rob

    Click the little fly-out menu icon at the upper-right and choose Save New Camera Raw Defaults.
    But be careful, any setting you have changed from default will be saved, so you could inadvertently save a particular color balance setting (instead of As Shot) for example, and that wouldn't be good.
    mijbil250456 wrote:
    I am using CS3 and ACR 4.6; Some have suggested upgrading to CS5, however surely I shouldnt need to do this, as the Nikon D3 was brought out before I started using CS3, so it should work?
    One thing I'd like to add that goes to this comment that you made in the original post:  There's not just one result that can be made from a raw file.  The quality of conversion results is continunuing to improve as Adobe refines their algorithms and more powerful computers are being built to run them. 
    The quality of conversions of the very same raw files from Photoshop CS5, using the PV2010 conversion process can indeed be superior to that from Photoshop CS3.
    In turn, the quality of conversions from Photoshop CS6 can be better than that of conversions from Photoshop CS5.
    We are seeing real improvements to this technology before our very eyes.
    -Noel

  • Issue while exporting report in Excel Format

    Hello,
    I am facing problem while exporting the report in Excel Format. After analysis, I think that it could be due to two reasons, either we are using wrong versions of Jars, or we are using wrong API. Here is the code, approaches and problems we are facing. Please help.
    First approach we are using is:
    // using basic API
    import com.crystaldecisions.reports.sdk.ReportClientDocument;
    // get client document from crystal report API and open the report by specifying the report name, with path
                   ReportClientDocument reportClientDoc = new ReportClientDocument();
                   reportClientDoc.open( reportPath, 0 );
                   // give chance to extending classes to configure the report document by POJO or by sql parameter etc, just adding the parameters infromation using ParameterFieldController
                   configureReportDocument( reportClientDoc, reportMetadata, reportData, reportContext );
                   // get data source of crystal report
                   Object reportSource = reportClientDoc.getReportSource();
                   // export the data - we have also tried with MSExcel format
                   ReportExportFormat exportFormat =  ReportExportFormat.recordToMSExcel;
                   LOGGER.debug( "exportFormat[" + exportFormat + "]" );
                   ByteArrayInputStream byteArray = (ByteArrayInputStream) reportClientDoc.getPrintOutputController().export(
                             exportFormat );
    Problem Faced: Specified Excel format is not supported.
    Second Approach: We come to know that excel format is supported with new releases and with occa package.
    Then we tried with import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument; It ask to set the ReportServer. When we are trying to set the server as
                   reportClientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
    Application is unable to find 'ReportClientDocument.inprocConnectionString' property. It seems like we are using some old jars. However we have downloaded the latest released jars for eclipse 2.
    Please help for it. Issue is to export the report in excel format, which is currently working fine for PDF. If this problem is related to Jars, please suggest the path to download the latest jars. We also looking for the latest jars like rasapp and rascore etc. But these are not available with Crystal Report for Eclipse 2 release.
    Waiting for urgent help. Thanks you..
    Regards,
    Mohit

    Hi,
    Send me Environment Details .
    Here is the code  snippet for exporting report to excel format:
    <%@ page import="com.crystaldecisions.sdk.occa.report.application.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.definition.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.lib.*" %>
    <%@ page import="com.crystaldecisions.sdk.framework.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.managedreports.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.exportoptions.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.io.*" %>
    <%
    String username ="Administrator";
    String password ="";
    String cmsname ="localhost:6400";
    String Authen ="secEnterprise";
         //connecting to Enterprise
         IEnterpriseSession es = CrystalEnterprise.getSessionMgr().logon(username,password,cmsname,Authen);
         //get the report App Factory form the Crystal Enterprise
         IReportAppFactory appFactory = (IReportAppFactory) es.getService("","RASReportService");
         //get the infostore service form the Crystal Enterprise
         IInfoStore istore = (IInfoStore) es.getService("","InfoStore");
         //get the report by name from crystal Enterprise
         IInfoObjects iobjects = istore.query("Select * From CI_INFOOBJECTS Where SI_NAME = 'sampleramz2.rpt' and SI_INSTANCE = 0 ");
         //open the report in the report doc object.
         ReportClientDocument Doc = appFactory.openDocument((IInfoObject)iobjects.get(0), 0, Locale.ENGLISH);
         // WORKING WITH THE PRINT OUTPUT CONTROLLER
         //Use the report documents PrintOutputController to export the report to a ByteArrayInputStream
         ByteArrayInputStream byteIS = (ByteArrayInputStream)Doc.getPrintOutputController().export(ReportExportFormat.recordToMSExcel);
         // EXPORTING THE REPORT
         //Create a byte[] (same size as the exported ByteArrayInputStream)
         byte[] buf = new byte[2000 * 1024];
         int nRead = 0;
         //Set response headers to indicate pdf MIME type and inline file
         response.reset();
         response.setHeader("Content-disposition", "inline;filename=ramz");
         response.setContentType("application/xls");
         //Send the Byte Array to the Client
         while ((nRead = byteIS.read(buf)) != -1)
              response.getOutputStream().write(buf, 0, nRead);
         //Flush the output stream
         response.getOutputStream().flush();
         //Close the output stream
         response.getOutputStream().close();
    %>
    Let me know any information is needed,
    Regards,
    Rameez

  • Issue while exporting report to excel

    I have a report created using ssrs.
    In that i have set the body background property to an image
    And also set a header in the report
    Now while exporting it to excel, I need to remove the body background  image and header
    Need Help
    Thanks
    Abhinav

    The workaround is to use a parameter that control the hidden properties and image/value properties of the header contents and background image path respectively. We need to place the header contents to a textbox or a rectangle so that the "hidden"
    properties can be set or reset. Similarly for the image path or value properties of body section can be set or reset using expression. I am using external image URL. Refer below step.
    1. Add a parameter "Export". Set the Available values
    as "Specify values" and add the below labels and values.
    Label                                 Value
    Header/Image                    Header/Image
    No Header/Image               No Header/Image
    For Default Values,
    Select Specify values option and add value as "Header/Image". Click Ok to close the parameter properties.
    2. As my header section contains a textbox and wanted to hide while i export, select the textbox properties and set the visibility/hidden expression as, =IIF(Parameters!Export.Value <> "Header/Image", True, False)
    3. Similarly in the report body properties, select the image source option as "External" and set the expression as,
    =IIF(Parameters!Export.Value <> "Header/Image", "" , "http://localhost/Testing/NEW_06.jpg")
    4. Preview the report and select the export parameter option as "No Header/Image".
    Regards, RSingh

  • Issue while exporting report - OBIEE 11g - IIS 7.5

    Hi,
    We are currently on OBIEE 11.1.1.7.0 version of OBIEE and we have set up proxy through IIS 7.5 on Windows 2008 R2 server.
    While exporting our reports, we need to ensure that both Export to excel options (2003 and 2007+) are working fine. However, for some reports, when we try to download the reports to Excel 2007+ format, we get a "Internet Explorer cannot display the webpage" error message. This issue does not appear if we change the URL to directly access Weblogic server (instead of routing through IIS). Wanted to know if anyone have faced similar issue and have found any solution/workaround for same.
    Thanks
    Hyder

    Hyder,
    I have achieved this.We have deployed our OBIEE application on Weblogic server not on IIS.
    Sasi Nagireddy: How to Export Analysis in Excel 2007 +
    Thanks,
    Sasi Nagireddy..

  • C#/SharePoint -View State related issue while exporting data to excel

    We have web application based on SharePoint. We have a list view to display data based on Search Criteria. We have total of around 16000 data. When we try to export all data to excel it gives an error. The cause of the issue is:
    View State is used to save the state of page i.e. the previous state. When the export to excel link is clicked, the data present in the grid is actually saved in view state so that the overhead of again generating
    the data(as per the selection criteria) can be avoided. Now, this View state has a limitation of storage of these records. When we put in some selection criteria, the no. of records is less hence no problem in actually storing the view state. But when there
    is no selection criteria, 16306 records are too much to be stored in view state. Hence the error occurs.
    We tried to solve this issue by creating a compressor class and overriding two methods:
     LoadPageStateFromPersistenceMedium
    SavePageStateToPersistenceMedium
    This has resolved the issue with Export to Excel. However, there is now some issue in the paging of the list view. The list view has a column with hyperlink which opens related data in a form. While we click on the link in 2<sup>nd</sup>
    page of the list view, it displays data for the link in the 1<sup>st</sup> page at same row.
    Please suggest how to resolve this issue or any workaround for this

    We have web application based on SharePoint. We have a list view to display data based on Search Criteria. We have total of around 16000 data. When we try to export all data to excel it gives an error. The cause of the issue is:
    View State is used to save the state of page i.e. the previous state. When the export to excel link is clicked, the data present in the grid is actually saved in view state so that the overhead of again generating
    the data(as per the selection criteria) can be avoided. Now, this View state has a limitation of storage of these records. When we put in some selection criteria, the no. of records is less hence no problem in actually storing the view state. But when there
    is no selection criteria, 16306 records are too much to be stored in view state. Hence the error occurs.
    We tried to solve this issue by creating a compressor class and overriding two methods:
     LoadPageStateFromPersistenceMedium
    SavePageStateToPersistenceMedium
    This has resolved the issue with Export to Excel. However, there is now some issue in the paging of the list view. The list view has a column with hyperlink which opens related data in a form. While we click on the link in 2<sup>nd</sup>
    page of the list view, it displays data for the link in the 1<sup>st</sup> page at same row.
    Please suggest how to resolve this issue or any workaround for this

  • Issues with exporting video from MacBook Pro to flash drive

    I cannot sucessfully transfer [export] video taken on my gopro camera, from my MacBook Pro to any flash drive and play them on other computers.  For some reason the files are not playable, even with quicktime.  They will not play with ANY of my video softwares such as divx or any AVCHD software on a windows computer.  I need to make a presentation for a club trip in a few days! Can any one please suggest what is wrong?  They play on the Mac using Flip player but not quicktime!
    Oh, and I don't have issues with transfering or exporting Jpegs or other photo formats.  Only video.
    Message was edited by: gmob25

    hmmm.. the files from GoPro are already mp4 format.  The Flash is already FAT32, brand new 16gig...
    I am new to Macs but have no problems with PC's.  I suspect that because the files are exporting as shadowed files which won't play and are very small kb files, yet they are actually in excess of 140 mb each that it might have something to do with the iphoto software?  That's where the pics and video are, they imported to there by default, not to a folder in the home folder [which is where I would have expected them to be]
    By the way, the GoPro is already in mp4 format so it is easy when transferring to computers. No need to convert. I tried converting them to see what the outcome might be, and none worked!  I tried every format I could find using Video converter ultimate software, which is excellent.
    And the problems began when quicktime wouldnt play the file, the screen was black.

Maybe you are looking for

  • My iTunes content will not sync to my iPhone 4 even though it shows that it is syncing, content is not on the phone.

    My iTunes content (music) will not sync to my iPhone 4. It shows as syncing on my computer (windows) but does not show up on the phone.

  • Failed to load Connection...

    Dear all, Now that I'm able to use and publish my projects properly, I'm facing a "Failed to load connection" on my first report, on my production machine. I'm using on my development machine SQL Server Express, and getting connected via an ODBC conn

  • Why won't Photoshop PDF's read well on iPads?

    At first, I thought it was specifically Safari on iPad that would not display vector data (such as text) from PDF's created with Photoshop CS6. Then I installed Chrome on my iPad and got the same problem. Displays all the pixel data, but none of the

  • GRI clearing report development

    Dear friends, There is a report Vendor agin , that means how much amount  vendor has to take to the company , Now I have to develop a report on the basis of GRI clearing ( 13110100) , how much amount company has to pay to the vendor and once it has p

  • Rotating clips in Quicktime Pro

    I shot a series of clips in which I rotated my GL2 camera to get the subject into the shots without the distracting background. So now my all my clips are imported of course with the subject not right side up. She's shown standing vertically in the c