Create pdf without 3rd control etc

i want to create pdf in silverlight,write code to achieve this.
i don't wnat a third party control

Hi,
If you want to create pdf in silverlight, we can just use code to implement it without using any 3rd party control.
Here is blog tells how to create pdf in silverlight step by step, please have a see:
http://www.c-sharpcorner.com/uploadfile/0d4efc/create-pdf-in-silverlight/ .
http://silverlightpdf.codeplex.com/ .
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Create PDF without image compression?

    How do i create a pdf from multiple images without any compression?
    Seems like even if i do optimize pdf and select png(edit the settings to do max res and no downscaling), when it saves the pdf, at 100% zoom, it's obviously bigger than my original png and compressed(or maybe it looks blurry because it's being upscaled when i never requested).
    In short, if my png is 500x500, i want it to be exactly that size at 100% maginification once the pdf is saved out. I don't want any compression, i don't want any scaling...why is it so hard to do this???
    Any help is much appreciated!

    However... the conversion can be lossless.  If you make a PDF file from a SINGLE image (different option) and select the image format in Files of Type you can click Settings and choose the format for compression. Choose ZIP and compression equivalent to PNG is used.
    You also have fine control when printing to PDF.
    It's just the Combine Files function, which is fast and simple, that lacks choices.

  • How to create PDF without embedded fonts from Indesign

    Can anyone tell me how to create from Indesign a PDF that certainly does not contain any fonts I don't want to include? But that would appear in the same layout in a substituted font, including italics and small caps?

    You can't, InDesign will embed the fonts for  you.
    To unembed fonts you need Acrobat Professional. Go to Tools>Print Production>Pdf Optimiser
    go to Fonts
    And select the fonts to unembed.
    You could select any text and change the Transparency to 99.9%.
    Then in Edit>Transparency Flattener make a new one using High as a base for the new
    Select Convert Text to Outlines.
    When you Export to pdf, choose Adobe PDF 1.3, and go to Flattening, choose the new Flattener Preset that you just made.
    And when you export it, any text forced through the Flattener will be converted to outlines. (this could violate the terms of the Font Licencing.)

  • Flex, Printing / Create PDF  without Server?!?

    Hi,
    after some days of searching a printing solution for flex without using a server or using a second languag (Java), I found the following solutions:
    www.alivepdf.org
    and
    www.bentbit.com
    Is there something else out there?!?!?
    I can not understand why Adobe, the "mother" of PDF, does not have a nice solution for it?!?!?!
    Cheers!
    mz

    It would probably be a good idea to explain why the solutions you've found are unsuitable.

  • Can I create a PDF with form controls using JAVA?

    I have a web site running on linux (Ubuntu). I'm programming in Java. Presently I use open office to create PDFs with form controls (checkboxes, lists and text fields). I'd like to be able to create in my program (Java) with form controls. JasperReports is not good because I don't see a way to create form controls. Help!!!

    I am not sure what this has to do with the Acrobat SDK, as we don't have a version of SDK for Linux (or Java).

  • What do I need to create PDF files on my iPad?

    So, in trying to resolve the frustration I am having in using Adobe Reader for iOS to create PDFs (without having to pay Adobe another 25% of my current Creative Cloud subscription....) I logged a sales eqnuiry via Adobe website.
    I get a call back withint a couple of hours. Not bad.
    He immediately asks how many computers I have enabled for my Creative Cloud account. Only one, I say.
    Well, he says, then you can install Creative Cloud on your iPad.
    No I can't, I said - Creative Cloud for iPad is a very skinny client, only handles Photoshop, and view some file formats. Not a full Acrobat function.
    Oh, he says, let em check. Eventually comes back. Yes, you are right he says. You have to pay us another $15 per month on top of the $50 per month Creative Crowd (even though CC already includes Acrobat Pro) you already pay, just so you can create PDFs on your iPad.
    That's ridiculous, I say - Adobe does not know how customers want to use your products. More people are going to use a desktop plus tablet - or laptop only. But if I have a desktop and a laptop I can have Creative Cloud on both. I accept that they are different OS, but don't make excuses like "Acrobat.com is a different product to Acrobat Pro" - I already pay for the latter in my CC subscription, so why should I be price gouged another 25%? Makes Adobe look plain greedy - and still they don't want to pay tax in Australia....
    If it was no more than $5 per month on top of the CC subscription, maybe I would go for it - but anything more is DAYLIGHT ROBBERY in my opinion. 

    Hi GrattanGuru,
    You have creative cloud subscription as you have mentioned. Under Adobe Reader to convert PDF to other formats Adobe offers online service called Acrobat.com services: https://www.acrobat.com/en_us.html
    That would be the reason support person might have told you on call, that you have to pay for that service.
    Under creative cloud you are getting Adobe applications. However under Acrobat.com you are getting online services which are providing Acrobat functions online.
    Regards,
    Ajlan Huda.

  • Creating PDF file in XI using iText

    Hi all,
    I am trying to create a PDF file in XI using itext. The PDF file is getting created in my target ftp server but I am not able to open the PDF. It is throwing the below error while opening.
    "Adobe Reader could not open the sample.pdf because it is either not a supported file or because the file has been damaged(for example,it was sent as an e mail attachment and wasn't correctly decoded)"
    I am using the below code in my udf
    String filename= "Sample.pdf";
    try
    Document document= new Document();
    PdfWriter pdfwriter=PdfWriter.getInstance(document,new FileOutputStream(filename));
    document.open();
    document.add(new Paragraph("Hi How are you?"));
    document.close();
    DynamicConfiguration conf = (DynamicConfiguration) container
           .getTransformationParameters()
           .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    conf.put(key,filename);
    catch(Exception e)
    return "";
    Kindly let me know if you have any information on this.
    With Regards
    jaisu.
    Edited by: jaisu118 on Feb 12, 2010 8:04 AM

    hi,
    I had used custom adapter module for creating the PDF file.
    you have to use java mapping if you want to create pdf without using adapter module.
    You need to import iText library available at http://itextpdf.com/.
    How to use external jar files ??
    External Jar files in UDF
    code may look like this:
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    //1. AbstractTransformation class is imported.
    // The associated jar file is: com.sap.xpi.ib.mapping.lib.jar
    import com.sap.aii.mapping.api.AbstractTransformation;
    import  com.sap.aii.mapping.api.DynamicConfiguration;
    import com.sap.aii.mapping.api.DynamicConfigurationKey;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import com.sap.aii.mapping.api.TransformationInput;
    import com.sap.aii.mapping.api.TransformationOutput;
    import com.sap.aii.mapping.api.InputHeader;
    public class xyz extends AbstractTransformation {
    public void transform(TransformationInput inp, TransformationOutput out) throws StreamTransformationException {
         getTrace().addInfo("JAVA Mapping Called");
                         InputStream inData = inp.getInputPayload().getInputStream();
                        // pdf conversion code
                        out.getOutputPayload().getOutputStream().write(outData.getBytes("UTF-8"));
    check http://help.sap.com/javadocs/pi/SP3/xpi/index.html for java mapping api.
    Thanks.

  • Adobe PDF Maker has detected that document is protected. Could not create PDF using Pro

    Hi All,
    I am new to this forum and have just started recently using Adobe Pro to  convert huge number of Microsoft Office documents into PDF.
    I get this error when I am batch Processing.
    Adobe PDF Maker has detected that the Document is Protected. It will be unable to create Tags,links and notes with protection on. Do you wish to continue and create PDF without Tags.
    I click Yes , but still I do not see the PDFs created.
    By the way where do i look for the failed documents . Is there any log file. Just to scroll down at the end of batch processing is time consuming.
    Thanks for all your input.

    There is typically a log file produced and located in the folder with the file I think (I don't run into the errors much and so do not look for the files). It is also possible you have turned off retaining the file.

  • Netweaver 2004 :  How to create an pdf without need to use Adobe Control ?

    Dear WebDynpro experts,
    in my application I use Adobe interactive forms to create a pdf document for printing purposes.
    I provide it as download using the file download GUI element.
    There's no need to work with the pdf document afterwards, sionce it is only needed for printouts.
    If I use my application with Firefox this works great. I can download my pdf without any problem.
    But if I try to use Internet explorer and wand to download the pdf I always get the message that I have
    to install Adobe Control into my Internet explorer.
    Is it possible to configure my application the way that I don't need the adobe control on my Internet explorer ?
    Is there a better way to provide non interactive pdf documents ?
    Best regards,
    Daniel

    Dear Ruturaj,
    thanks for your answer.
    Unfortunately Í don't have an "display type" property for Interactive form.
    I have beneath the Event and Event properties the following properties in my
    property list for the Interactive Forms element :
    data source
    enabled
    height
    id
    mode
    pdfsource
    templatesource
    tooltip
    visible
    width
    I also checked the Form Properties within the designer and didn't find a display type property.
    I assume this is due to the fact I use an old version of Netweaver Developer Studio since I have
    only Netweaver Developer Studio 2004 SP 20.
    is there a way to switch off Active X using such a version ?
    Best regards,
    Daniel

  • I'm wondering if there is any way to view the results of the form other than in a spreadsheet?  Is it possible to print responses one by one in PDF format, or word, etc?  I'd like to create a form for proposal applications, and the spreadsheet format resu

    I'm wondering if there is any way to view the results of the form other than in a table?  Is it possible to print responses one by one in PDF format, or word, etc?  I'd like to create a form for proposal applications, and the spreadsheet format results are nearly unusable for this type of form.

    Hi Nalani500 ,
    Yes, you can print the response in a PDF by following the steps suggested below.
    1) Go to the response file
    2) Select the response you want to print
    3) Click on Save as PDF button and it would save the selected response in PDF format.
    Thanks,
    Vikrantt Singh

  • How do I create PDF from word without bookmarks?

    We have several forms that we create to PDF using "Combine" - "Merge Files Into A Single PDF" using Acrobat 9.0. Sub-bookmarks are created for each of these forms off of the headers in word. Is there a way (some setting) I can create the PDF withOUT getting the sub-bookmarks? We create several for each meeting and have 196 meetings a year. I realize I can highlight them all and delete them for each main bookmark, but would like to not have to do that as we have several main bookmarks.

    It would be best to give a link to an HP document you are having problems with.  Someone could try to duplicate the problem.
    What program are you using to print the document?
    Try a different program for printing.  Preview or Acrobat reader
    Are you saying other pdf documents print fine?
    Here are some ideas…
    I'd look first at your page setup options.
    file > page setup...
    Secondly, when you get the print window, look around at the various print options.
    Robert

  • Is it possible to create and save a .PDF without any compression to the resulting .PDF?

    I need an uncompressed file so I can use the resulting PDF to do a find/replace. Can't do it with compression.
    Thanks
    JDRHC1115

    Dave,
    Thanks for the reply. Of all the suggestions I've received this seemed to
    be most promising. I gave it a try and the problem is that when I attempt
    to save as optimized a message box pops up and says I have to save my
    document first. Low and behold when I save it, compression occurs. Even
    when I select the options you suggest I'm left with a compressed document.
    I'm using Acrobat Pro X
    Jeff
    From:   Dave Merchant <[email protected]>
    To:     Jeff Ross <[email protected]>
    Date:   01/06/2011 09:35 AM
    Subject:        Is it possible to create and save a .PDF
    without any compression to the resulting .PDF?
    You don't want the UncompressPDF plugin - that's designed to split out the
    COS objects but doesn't remove the Flate encoding (plus if you've never
    compiled a plugin before, it's not really the time to learn).
    Instead, simply save your PDF file using the PDF (Optimized) file type,
    click the Settings button and under "Clean Up" - "Object compression
    options", choose "Remove compression". Turn everything else off if you
    want to retain the PDF content exactly as it was before.
    Your document-level scripts will then be in the file as plain text.

  • Create a pdf without showing it in the UI?

    Hello!
    I'm trying out Interactive Forms for Java for the first time, so please bear with me if this is obvious.
    Is there a way to create a pdf and not display it in the ui? If I for example just want to download or email it.
    I've tried setting visibility to None and Blank but that prevents the PDF from being generated at all.
    It sort of works if I use FireFox and choose DisplayType activeX since FireFox can't display ActiveX. Our customer runs IE so that is not an option however.
    Thank you for any input!
    Kind regards,
    Richard Linnander
    Edited by: Richard Linnander on Jun 18, 2010 1:49 PM
    Edited by: Richard Linnander on Jun 18, 2010 1:52 PM

    Hi Richard,
    You can create a pdf without displying it in UI.
    Follow the below steps :
    1. Copy your xdp file under mimes folder.
    2. create a pdfsource context and DataSource node for pdf.
    3. Create a File Download UI element in Ui and bind the data property with pdf source context.
    4. Now copy the below code in wdDoInit() which is genrating the pdf from xdp.
    wdContext.getNodeInfo().getAttribute("pdfSource").getModifiableSimpleType();
    ByteArrayInputStream pdfInputStream = null;
         String templateUrl = null;
         try {
              templateUrl = WDURLGenerator.getResourcePath(wdComponentAPI.getDeployableObjectPart(),"Name of XDP with extension");
         } catch (WDAliasResolvingException e1) {
              // TODO Auto-generated catch block
              e1.printStackTrace();
         try {
              IWDPDFDocumentHandler pdfDocumentHandler = WDPDFDocumentFactory.getDocumentHandler();
              IWDPDFDocumentCreationContext pdfDocumentCreationContext = pdfDocumentHandler.getDocumentCreationContext();
              pdfDocumentCreationContext.setData(WDInteractiveFormHelper.getContextDataAsStream(wdContext.nodeDataSource()));
              pdfDocumentCreationContext.setTemplate(getByteArrayFromResourcePath(templateUrl));
              //pdfDocumentCreationContext.setDynamic(true);
              IWDPDFDocument pdfDocument = pdfDocumentCreationContext.execute();
              pdfInputStream = (ByteArrayInputStream)pdfDocument.getPDFAsStream();
              wdContext.currentContextElement().setPdfSource(pdfDocument.getPDF());
         } catch (WDPDFDocumentRenderException e) {          
              wdComponentAPI.getMessageManager().reportException("An error occured: "+e.toString(), true);
         }catch(Exception e){
              wdComponentAPI.getMessageManager().reportException("An error occured: "+e.toString(),true);
    5. create a another method in global section
      private byte[] getByteArrayFromResourcePath(String resourcePath)
         throws FileNotFoundException, IOException {
         FileInputStream in = new FileInputStream(new File(resourcePath));
         ByteArrayOutputStream out = new ByteArrayOutputStream();
         int length;
         byte[] part = new byte[10 * 1024];
         while ((length = in.read(part)) != -1) {
         out.write(part, 0, length);
         in.close();
         return out.toByteArray();

  • Creating PDF from HTML without background

    Hi,
    I want to create a PDF from a html-page. I tried several ways without success to get a PDF without a background (white). I need a transparent background to add different backgrounds for different pages in Acrobat X Pro.  I use an iMac with OSX 10.10.2, Safari 8.0.4 and have the MasterCollection 6 installed. I tried:
    - print page -> create PDF Result: white background which hides added background
    - print page -> save as Adobe-PDF Result: white background which hides added background
    - in Acrobat: create PDF from web Result: white background which hides added background
    In all cases it doesn't matter if I select "print background" or not. And it doesn't change if I add in the CSS for the web a body {background-color: rgba(255,255,255,0)} or body {background-color:transparent}.
    How can I create a PDF with no or transparent background?

    Hi Manoj
    If your application generate a static html page, you can open those html files with Reports 9i and add a dynamic data sections which would be fetch the data in your html pages with Report servcies. However you can only run those modified pages as a jsp and show the output to browser window.
    Thanks
    Rohit

  • OAF: Creating PDF output without calling concurrent program.

    Hi Everyone,
    i want to Create PDF output in OAF.
    I wil be having one button “Convert PDF” on my OAF page. On clicking on that button my page should generate pdf output without calling concurrent program(Because running a concurrent program may take much time sometimes.).
    How can I do that?
    I have never generated pdf outputs so plz help me to get out of this.
    What are the possible ways to get this?
    Any example?
    Any suggestions wil be really useful.
    Thanks.....

    Hi ,
    Please refer to -
    http://apps2fusion.com/at/85-daxesh/515-oa-framework-xml-publisher-integration
    http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    Regards,
    Ashish

Maybe you are looking for

  • Wireless Network Printing Issue

    Hi there, I use an Airport Express to put a wireless arm onto our offices mac-only network. Everything was a-ok but, over the weekend, the express seems to have reset itself it changing its name back to 'Apple Network 43124' I reconfigured and everyt

  • Numbers are not comming in Arabic stle in PDF o/p

    Hi, Thanks alot...... The font used in the Report is Arial In uifont.ali file under PDF[subset] Arial="arial.tty' has been added. Your advice helped me alot. Arabic characters are comming properly in PDF O/p. But Still the numbers are not comming in

  • Aperture/iPhoto to Photos workflow

    I have an iMac and MBA - plus an tPhone 5c and IPad Mini. The latter 2 I use the MBA for syncing always as I travel a lot. Over the years, i have tried to keep my MBA aperture library somewhat synced to my iMac library-often manually.  The Merge func

  • ... Jobs Schedules in Oracle

    Dear All, Our business requirement is such that we need to process some data in the morning till lunch , and after lunch that data is useless for us. Is there any way we can schedule a JOB in oracle , so that on a specific time , it will delete aroun

  • I want to get rid of blue link-highlight

    How do I avoid getting the blue highlight around linked images and text?  Thank You