How do I compress a pdf with Create PDF so that I can attach it to e-mail?

How do I compress a pdf with Create PDR so that I can attach it to e-mail?

Hi, Blue Mamba.
Your file is automatically compressed when using the CreatePDF service to convert from some other file type (e.g. Word, Excel) to PDF. For example, most PowerPoint files get compressed 50% to 90% over their original size.
If there is a particular file you're converting to PDF using the CreatePDF service, and you are not seeing the size savings that you would like, please provide more details.
Thanks.
Dave

Similar Messages

  • How do I select an image with motion blur so that I can put it onto a different background ?

    How do I overlay a image with motion blur on a white background (like the first image) onto a different background (to look like the second image)? any help would be greatly appreciated, many thanks ,ed
    Message was edited by: motoredd

    I’m afraid you may have bitten off more than you might want to chew.
    The resulting pixels of an in-camera-blur combine information about the color/brightness of back- and foreground (edit: the result of surface properties and lighting conditions) with motion (basically transparency for this task) in such a way that it seems exceedingly difficult (maybe even improssible) to isolate the foreground in a »pure« form.
    One may get a halfway decent mask (as the backgound is at least almost uniform and brighter than the foreground elements) but you may have to manually decontaminate the transparent areas, otherwise the masked object in front of a dark background would have a bright edge.

  • How do I link a textbox with a date so that I can input mm/dd/yy and in the next box have it read the month ie December?

    Basically, I want to know how to do this:
    INPUT:  12/04/2014
    OUTPUT1: December
    OUTPUT2: 04
    OUTPUT3: 2014
    If there's java scripting involved, I'll need a guide, but I have some programming experience. 

    That can only be done using JavaScript.
    The input date is a character string and needs to be converted to the JavaScript date object, from which the month and year can be extracted using one of many different methods.
    var cDate = this.getField("input").valueAsString; // get the date string value;
    var oDate = util.scand("mm/dd/yyyy", cDate); // convert date string to date object;
    var cFullMonth = util.printd("mmmm", oDate); // get full month text from date object;
    app.alert("OUTPUT1: " + cFullMonth, 3, 0);
    var nDate = util.printd("dd", oDate); // get 2 digit month;
    app.alert("Output2: " + nDate, 3, 0);
    var nFullYear = oDate.getFullYear(); // get the 4 digit year;
    app.alert("Output3: " + nFullYear, 3, 0);

  • I need help with creating PDF with Preview...

    Hello
    I need help with creating PDF documetns with Preview. Just a few days ago, I was able to create PDF files composed of scanned images (notes) and everything worked perfectly fine. However, today I was having trouble with it. I scanned my notebook and saved 8 images/pages in jpeg format. I did the usual routine with Preview (select all files>print>PDF>save as PDF>then save). Well this worked a few days ago, but when I tried it today, I was able to save it, but the after opening the PDF file that I have saved, only the first page was there. The other pages weren't included. I really don't see anything wrong with what I'm doing. I really need help. Any help would be greatly appreciated.

    I can't find it.  I went into advanced and then document processing but no batch sequence is there and everything is grayed out.
    EDIT: I realized that you cant do batch sequences in standard.  Any other ideas?

  • Error message an error occurred while signing in " when I worked with Create PDF and at the signed

    Error message "an error occurred while signing in " when I worked with Create PDF and at the signed in status. Please help so that I can continu my work.

    Hi Stacy,
    Thank you for your attention.
    I have been working with Create PFD under normal procedures including
    sign-in and several documents had been finished. However, when continued
    creating another document the computer took a long time to pprocess and
    finally a mesage appeared: "An error occurred while signing in" and stopped
    there. I clicked the OK button and start creating again and the same
    message appeared once more. I tried to log off and log in again in no
    avail. So I went to the help site and called for help.
    Later, I decided to reboot the computer and tried once more. This time it
    worked and I continued creating. Thanks.
    laozhao39

  • How do I compress a string with  java.util.zip - not a file ?

    How do I compress a string with java.util.zip?
    Is possible to compress something else except a file?

    Of course, compression works on bytes, not some higher level constructs like Strings or files.
    You can use the ZipOutputStream or DeflaterOutputStream for compression.
    And the javadoc for Deflater even has a code example of compressing a String.
    Edited by: Kayaman on May 22, 2011 5:04 PM

  • How do I import my edge animation in indesign so that it can play within a PDF file

    how do I import my edge animation in indesign so that it can play within a PDF file??
    Plz help.

    Hi there,
      Have you tried reading this tutorial on exporting Edge Animate files to be used in InDesign?
    http://www.adobe.com/devnet/digitalpublishingsuite/articles/enhancing-your-dps-folios-with -edge-animations.edu.html
      Edge Animate files can be played in DPS folios. PDFs are not capable of playing Edge Animate files at this time. I did find a work around to get SWF files to play in PDF documents:
    http://indesignsecrets.com/how-to-get-animations-to-work-in-pdf-working-title.php
      I hope this helps!

  • Add Image in PDF with Alive PDF

    Hi community, i need help to add a image in PDF with Alive PDF.
    I try it so:
    [Embed(source="bilder/PDFLogo.png", mimeType="application/octet-stream" )]
    protected var PDFLogos:Class;
    printPDF.addImageStream(new PDFLogos() as ByteArray,15,5,190,0);
    But they gives me an error when i compiling.
    When i try it so
    printPDF.addImageStream(new PDFLogos() as ByteArray,ColorSpace.DEVICE_RGB)
    then i can compile but when i click on the button then can´t download the pdf please help

    Hi Kamil,
    Hello, I attached a piece of code we use, including statements, etc.. In my case, I captured all the content is a canvas to create a report of a bar chart or pie chart.
         import org.alivepdf.display.*;
         import org.alivepdf.fonts.*;
         import org.alivepdf.layout.*;
         import org.alivepdf.pdf.*;
         import org.alivepdf.saving.*;
    protected var pdf:PDF;
    // declared of logo or imagen on top of the PDF's document.
    [Embed(source="assets/logo.jpg", mimeType="application/octet-stream" )]
    protected var jpgBytes:Class;
    protected function savePDF(event:MouseEvent): void {
            pdf = new PDF(Orientation.LANDSCAPE, Unit.MM, Size.LETTER);
            pdf.setDisplayMode(Display.FULL_WIDTH);
            pdf.addPage();
            pdf.addImageStream(new jpgBytes() as ByteArray, 10, 10, 0, 0, 1);
            pdf.setFont(FontFamily.ARIAL, Style.NORMAL, 12);
            pdf.addText("Grafico de Rata de Fallas", 100, 40); // title
            pdf.addImage(imprimirRata, 50, 50, 200, 150); // captured canvas with charts
    //      pdf.addImage(leyendaImprimir, 50, 120, 20,20); // captured leyend of charts
            pdf.addText("RTP Software. Modulo de Score Card.", 10, 200); // header of the document
            pdf.addText("Creado: " + new Date(), 180, 200); // Add the created date as a leyend or footer on document
            var fs:FileStream = new FileStream();
            var file: File = File.desktopDirectory.resolvePath("rtp-ratadefallas.pdf"); // Name of the file
            fs.open(file, FileMode.WRITE);
            fs.writeBytes(pdf.save(Method.LOCAL));
            fs.close();
            Alert.show("El reporte ha sido generado", "Informacion"); // Confirmation message as a pop-up
     

  • How do I get a PDF document put into an attachment form that I can drag to an e-mail.  Usually I get an icon showing an spiral note book which then becomes an attachment when I drag it to the e-mail, but occasionally it stays in PDF and prints out on the

    How do I get a PDF document put into an attachment form that I can drag to an e-mail.  Usually I get an icon showing an spiral note book which then becomes an attachment when I drag it to the e-mail, but occasionally it stays in PDF and prints out on the e-mail.  What have I done differently?

    Thanks again for the detailed instructions Srini!
    And I really hate to be a pest . . . but . . .
    Using your example and not modifying it, I get the e-mail form filled out correctly and the pdf attached, however, I'm not prompted to sign it.
    Any more clues?

  • How do I change a pdf to a word doc that I can add to and change

    how do I change a pdf to a word doc that I can add to and alter

    You can use Adobe ExportPDF to do this.

  • HT3705 How do I save a Pages document to jpeg so that I can share on social media?

    I have created a brochure and would like to post it on Facebook. How do I save a Pages document to jpeg so that I can share on social media and email? Do I have to save it as a jpeg or what other format can I save it in?

    Ashe,
    In Pages, Print to "PDF > Open PDF in Preview". From Preview, File > Export to the format or your choosing, one page at a time. For text, PNG would be better than JPG.
    Jerry

  • The desktop on which I had Lightroom and PhotoshopCC installed failed and I no longer have access to it. How do I deactivate the software on those machines so that I can reinstall it on my new Mac?

    Question: The desktop on which I had Lightroom and PhotoshopCC installed failed and I no longer have access to it. How do I deactivate the software on those machines so that I can reinstall it on my new Mac?

    Absolutely - but I had no idea there were two versions. When I got my new laptop I just went to the Adobe site to download and install LR5. It never asked if I had a license; it just directed me to install CC to start a trial which I thought I could license after downloading. Several sessions and many hours of looking through the forums and Google for an answer I never ran across anything that made this distinction. I still haven't found a path from www.adobe.com that would get me to the standalone download page (it's probably there, wasn't obvious to me) and looking at the download page it doesn't make any CC/standalone distinction.
    There are many places I could have gotten a hint - for instance the license could be tagged "stand alone edition", the CC-version could recognize the stand-alone key and either accept it or produce a more meaningful error message, or the download site or the CC app could ask if I had previously purchased a key, etc.
    It was my error to assume this was a deactivation problem, but it looked the same as a previous deactivation problem with Photoshop.
    In any event, thank you for your help.

  • I want to create a form that I can change at an instance that will store the information without replacing it

    I want to create a form that I can change at an instance that will store the information without replacing it: Here are examples of what i have:
    This is the form:  The True/False in column B are actually check boxes
    Date
    Job Name
    Start
    End
    Hours Worked
    Per Diem
    Wednesday, Mar 5, 2014
    Duke University
    7:30 PM
    2:30 AM
    7.00
    Arellano, Paul
    TRUE
    Wednesday, Mar 5, 2014
    Duke University
    7:30 PM
    2:30 AM
    7.00
    0.00
    Blackwell, Zach
    FALSE
    Christian, Charles
    TRUE
    Wednesday, Mar 5, 2014
    Duke University
    7:30 PM
    2:30 AM
    7.00
    0.00
    Christian, John
    FALSE
    Currence, John
    FALSE
    Curtis, Brandon
    FALSE
    Hawkins, Tyre
    FALSE
    King, Corey
    FALSE
    Nunez, Jose
    FALSE
    Rangel, Antonio
    FALSE
    Rice, Eric
    FALSE
    Salgado, Ricardo
    FALSE
    and the sheet that the index to looks like:
    Saturday, Mar 15, 2014
    Rice, Eric
    Providence College
    9:00 AM
    7:30 PM
    10.50
    1
    Saturday, Mar 15, 2014
    Rice, Eric
    Virginia Beach
    7:30 PM
    2:30 AM
    7.00
    Saturday, Mar 15, 2014
    Salgado, Ricardo
    0.00
    Sunday, Mar 16, 2014
    Arellano, Paul
    Providence College
    7:00 AM
    8:00 PM
    13.00
    1
    Sunday, Mar 16, 2014
    Blackwell, Zach
    0.00
    Sunday, Mar 16, 2014
    Christian, Charles
    0.00
    Sunday, Mar 16, 2014
    Christian, John
    0.00
    Sunday, Mar 16, 2014
    Currence, John
    Providence College
    7:00 AM
    8:00 PM
    13.00
    1
    Sunday, Mar 16, 2014
    Curtis, Brandon
    0.00
    I want to be able to fill out the form and it place itself into Sheet 1 without changing everytime.  I can index the array from the form, but it changes everytime.

    You think it would be the other way around.
    Just speculation, but forms probably came to iOS first because of likely use for data entry in the field that syncs back to the Mac.  On a small screen with a touch interface, forms make inputing values easier.
    On the Mac, with its bigger screen, typing directly into a data table often works well enough.
    SG

  • How do I change the computer's Admin name so that I can give it away?

    How do I change the computer's Admin name so that I can give it away?

    There is copy protected software and a licensed copy of OS X that the next owner isn't allowed to use nor can update.
    Your supposed to erase all software from the machine and return it to the OS X version that came with it, 10.6 is the earliest you can go.
    How do I securely delete data from the machine?
    How to erase and install Snow Leopard 10.6
    How to reformat a used Mac
    Erase, formatting, OS X installs on Mac's

  • My phone will not connect with my itunes so that I can sync them.

    My phone will not connect with my itunes so that I can sync them and update my music on my phone. How can I fix this?
    I have tried everything I know and could find to do.

    Hi kkmk2511,
    If you are having issues with your iPhone not being recognized in iTunes on your Windows machine, you may find the following article helpful:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Regards,
    - Brenden

Maybe you are looking for