Saving a pdf doc optimized for the web

i am trying to find out if there is a way to set the subject and keyword fields before saving as a pdf.
What i am trying to achieve is that the pdf is optimized for the web, so search engines can read the pdf document for keywords etc.
Thank you

Inspector > Document > Info
Peter

Similar Messages

  • I saved a PDF doc in adobe and then added text to the form. But every time I try an email it it only

    I saved a PDF doc in adobe and then added text to the form. But every time I try an email it it only sends the original form without text. Once I've changed a doc in Adobe, how can I save it so that I'm able to use it with added text and notes? Also, I'm using a new iPad.

    If you are using those apps or websites, they are likely viewing the PDF using iOS' built in PDF previewing, which will not show annotations and markup to the PDF. We have informed Apple of this issue, but do not have any insight into whether or when they will fix it.
    Regarding the qustion about importing pictures, Adobe Reader does not provide any capabilities to import pictures into a PDF. To do this, you'll need to use Acrobat, available on your desktop computer.

  • Saving JPG to PNG using Save for the Web

    Morning
    I came across Paul Riggott's script for saving PSD to PNG which I changed to JPG to PSD.
    The only problem with this is that the file size in most cases is larger than the original.
    Is there a way to do a save as for the web as well?
    Here is the  original code:
    #target photoshop
    var imageFolder = Folder.selectDialog("Select top folder to process");
    var folderList=[];
    if (imageFolder != null)  {
    processFolder(imageFolder);
    folderList.unshift(imageFolder);
    createPNGfromJPG(folderList);
    function createPNGfromJPG(folderList){
    for(var a in folderList){
      var fileList = folderList[a].getFiles ("*.jpg");
       for (var z in fileList){
        var file = fileList[z];
        open(file);
        var Name = fileList[z].name.replace(/\.[^\.]+$/, '');
        var saveFile = File(decodeURI(fileList[z].path+"/"+Name+".png"));
        SavePNG(saveFile);
        app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    function processFolder(folder) {
        var fileList = folder.getFiles()
         for (var i = 0; i < fileList.length; i++) {
            var file = fileList[i];
    if (file instanceof Folder) {
      folderList.push(file); 
           processFolder(file);
    function SavePNG(saveFile){
        pngSaveOptions = new PNGSaveOptions();
        pngSaveOptions.embedColorProfile = true;
        pngSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
        pngSaveOptions.matte = MatteType.NONE;
        pngSaveOptions.quality = 1;
    pngSaveOptions.PNG8 = false;
        pngSaveOptions.transparency = true;
    activeDocument.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE);
    Any help or support to head me in the right direction would be appreciated.
    Iain

    This uses "Fitimage"....
    #target photoshop
    var imageFolder = Folder.selectDialog("Select top folder to process");
    var folderList=[];
    if (imageFolder != null)  {
    processFolder(imageFolder);
    folderList.unshift(imageFolder);
    createPNGfromJPG(folderList);
    function createPNGfromJPG(folderList){
    for(var a in folderList){
      var fileList = folderList[a].getFiles ("*.jpg");
       for (var z in fileList){
        var file = fileList[z];
        open(file);
        var Name = fileList[z].name.replace(/\.[^\.]+$/, '');
        var saveFile = File(decodeURI(fileList[z].path+"/"+Name+".png"));
        FitImage(640,640); //Resizes  to the longest size
        //FitImage(128,128);
        savePNG8SFW(saveFile);
        app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    function processFolder(folder) {
        var fileList = folder.getFiles()
         for (var i = 0; i < fileList.length; i++) {
            var file = fileList[i];
    if (file instanceof Folder) {
      folderList.push(file); 
           processFolder(file);
    function savePNG8SFW(saveFile) {
        var desc8 = new ActionDescriptor();
            var desc9 = new ActionDescriptor();
            desc9.putEnumerated( charIDToTypeID('Op  '), charIDToTypeID('SWOp'), charIDToTypeID('OpSa') );
            desc9.putEnumerated( charIDToTypeID('Fmt '), charIDToTypeID('IRFm'), charIDToTypeID('PNG8') );
            desc9.putBoolean( charIDToTypeID('Intr'), false );
            desc9.putEnumerated( charIDToTypeID('RedA'), charIDToTypeID('IRRd'), charIDToTypeID('Sltv') );
            desc9.putBoolean( charIDToTypeID('RChT'), false );
            desc9.putBoolean( charIDToTypeID('RChV'), false );
            desc9.putBoolean( charIDToTypeID('AuRd'), false );
            desc9.putInteger( charIDToTypeID('NCol'), 256 ); //Number of colours.
            desc9.putEnumerated( charIDToTypeID('Dthr'), charIDToTypeID('IRDt'), charIDToTypeID('Dfsn') );
            desc9.putInteger( charIDToTypeID('DthA'), 100 );
            desc9.putInteger( charIDToTypeID('DChS'), 0 );
            desc9.putInteger( charIDToTypeID('DCUI'), 0 );
            desc9.putBoolean( charIDToTypeID('DChT'), false );
            desc9.putBoolean( charIDToTypeID('DChV'), false );
            desc9.putInteger( charIDToTypeID('WebS'), 0 );
            desc9.putEnumerated( charIDToTypeID('TDth'), charIDToTypeID('IRDt'), charIDToTypeID('None') );
            desc9.putInteger( charIDToTypeID('TDtA'), 100 );
            desc9.putBoolean( charIDToTypeID('Trns'), true );
            desc9.putBoolean( charIDToTypeID('Mtt '), false );
            desc9.putInteger( charIDToTypeID('MttR'), 255 );
            desc9.putInteger( charIDToTypeID('MttG'), 255 );
            desc9.putInteger( charIDToTypeID('MttB'), 255 );
            desc9.putBoolean( charIDToTypeID('SHTM'), false );
            desc9.putBoolean( charIDToTypeID('SImg'), true );
            desc9.putBoolean( charIDToTypeID('SSSO'), false );
                var list3 = new ActionList();
            desc9.putList( charIDToTypeID('SSLt'), list3 );
            desc9.putBoolean( charIDToTypeID('DIDr'), false );
            desc9.putPath( charIDToTypeID('In  '),File( saveFile) );
        desc8.putObject( charIDToTypeID('Usng'), stringIDToTypeID('SaveForWeb'), desc9 );
        executeAction( charIDToTypeID('Expr'), desc8, DialogModes.NO );
    function FitImage( inWidth, inHeight ) {
    if ( inWidth == undefined || inHeight == undefined ) {
      alert( "FitImage requires both Width & Height!");
      return;
    var desc = new ActionDescriptor();
    var unitPixels = charIDToTypeID( '#Pxl' );
    desc.putUnitDouble( charIDToTypeID( 'Wdth' ), unitPixels, inWidth );
    desc.putUnitDouble( charIDToTypeID( 'Hght' ), unitPixels, inHeight );
    var runtimeEventID = stringIDToTypeID( "3caa3434-cb67-11d1-bc43-0060b0a13dc4" );
    executeAction( runtimeEventID, desc, DialogModes.NO );

  • Problems with PSE 10 when saving for the web.

    I'm having problems saving for web with PSE 10. I edit in RAW, edit in PSE 10, save as Jpeg, resize and save for the web.  Results are muddled and not sharp (looks cartoonish). Also, there is no metadata when you look at the image properties.  I uninstalled the program and installed again. No change.

    Are you resizing the photo before save for web?
    What settings are you using in the save for web dialog for the jpeg quality?
    If you compress the jpeg too much (low quality settings below 60), that can make your photos look bad.
    And save for the web in pse 10 automatically strips any metadata in order to keep the file sizes smaller.
    Also, the save for web in pse 10 has a bad habit of not remembering your last used settings, so it's good to verify that your actually set to jpeg instead of the default GIF setting.
    Message was edited by: R_Kelly

  • Advice on saving DVD video and re-sizing for the web

    Hello...
    I'm looking into purchasing a copy of Adobe Premiere - but I need advice on which version I need - and if it can do what I'm after.
    I want to transfer my own video work from DVDs and save them as MPEG4 files. I then want to upload them on to my website. They'll be about 10 minutes each each DVD will have several videos on them.
    Is Adobe Premiere able to do this...? If so which version would suit me best? It's simply to do the above with no editing, just re-sizing for the web and saving as an MPEG4 file.
    Thank you for your help and time in advance.
    philip

    For web video creation, I use a program called V2F. It creates Flash rather than mp4, but if you're not stuck on that format, the files are very good quality.

  • Disappearing color profile when saved for the Web

    Hello.
    I have a problem with the “Save for the Web” results using Photoshop CS6 running on Win 7 x64.
    My photos are already in 8 bits and in sRGB and when I save for the Web I check the option “embed color profile”, uncheck “convert to sRGB”, metadata to “copyright and contact info”.
    When I open the resulting photos in Photoshop, everything is fine as it recognizes the embedded color profile. Same thing when I open these files in Firefox, Safari or Chrome: the colors are correct.
    Now, when I right-click on a file in the Win Explorer and look its properties, the line about the color profile is blank, as if there wasn't any. This doesn't bother me but the problem appears on my Website created with Joomla and using for the display a module, Responsive Image Gallery, which creates resized copies of the photos. At this point the copies have completely lost their color profile. I entered in contact with the module's support and they assured me that it preserves the embedded profile, so I come here to gather some information about how this “Save for the Web” embeds the color profile because may be I just didn't understand how it does and if it's different from the “Save as” way.
    The fact I can't see the profile through the Win Explorer makes me think Joomla's module doesn't either.

    Incredible how much gballard's site is famous! Lol. I use it for a while now and checked again right now with the three Web browsers and everything is all right.
    As indicated in my first post, when saving for the Web I checked the “embed color profile” option. I already resized the file and converted it in sRGB first in Photoshop.
    Yes it's pretty confusing to see some software not able to see the color profile when the file is saved with that option.
    To illustrate, here are three screenshots from Windows' file browser => right-ckick on the file => properties => details:
    Opening that “saved for the Web” file in PS, it's ok, the CP is recognized.
    Opening it directly (from the file browser => “open with”) in Web browsers: ok in Firefox, Safari and Chrome (CP recognized in all).
    Copying that file in my working site on localhost (no modification), integer it in Joomla's module gallery (which is CP aware) and then opening my site on localhost with Web browsers: ok in Firefox (because it considers a non-tagged file by default as beeing sRGB), NOT OK in Safari neither in Chrome.
    Now, if I do the same with the “Save as” version of the file with embedded sRGB CP:
    PS: ok
    Opened directly in Web browsers: ok in the three cases
    Opened in Web browsers through my Joomla site on localhost: OK IN ALL THREE BROWSERS
    Good point gator_soup: I'll post a bug report. I'm new here on the forum and thought Adobe's staff would post here.

  • How do I change the dpi setting when I am saving for the web?

    I need to chnge the dpi setting from the default of 72 to 300 when saving for the web.  How do I do that?

    You go by pixel dimensions for the web because that's all that computer screens use.
    dpi or rather ppi is a print specification.
    In this example, Image > Image Size    I have unchecked resampling and set the ppi to 300. You can see how small it's going to print on paper as opposed to maybe 100 ppi.  It will still retain the same pixel dimensions.
    You basically focus on a good pixel size for the the browser display.

  • D2000 Reports for the web PDF and FDF

    Has Oracle considered tighter integration of Adobe FDF (Forms
    Data Format) and Oracle Reports for the web?
    null

    Hi
    I think Portal applications are much more simple to build and lighter than developer apps, but Portal fits better to "simple" apps, without many business rules, complex validation/navigation etc. If the app you need to build has such characteristics, maybe you must use developer.
    lc
    Hello,
    I am thinking of creating an extranet and was going to use Portal - but coming from a forms/reports background I am thinking of looking at 9i forms/reports. Are they still thick clients as when I played around with web-deployed forms before they seemed pretty slow. Would I be better off writing it in Portal ?

  • Turn off "Optimizing for fast web viewing"?

    I downloaded a .doc file from the internet with Firefox and saved it to hard drive. Then I had it converted to a .pdf format online via zamzar.com. Then I opened it with Adobe Reader XI and saved it to hard drive, but it changes size in that process. There's a popup near lower right of screen saying "Optimizing for Fast Web Viewing" (see graphic below) which I never saw before. This is very disconcerting and upsets all notions of file identity based on size. I don't want it to change the size automatically. How do I turn that off?
    (Windows XP Home SP3, Adobe Reader XI)

    Back up and restore using iTunes.

  • Exporting Clipped images for the Web... CONFUSED! ? Help ..? AI CS3

    Hi folks,
    I don't use Illustrator as much as I'd like, since my workflow is mostly on
    the web, but I'm finding it nearly impossible to export images I receive
    from print designers for web use. Many of these images are EPS or AI.
    They are clipped images, which is great, BUT when I try to Save for the Web,
    the error comes back that they are too large for the web and may crash AI.
    OR if I export to PNG or PSD, the files lose their transparency and I have
    to extract them manually from the white backgrounds, which defeats the whole
    purpose. I have tried opening in Fireworks and Photoshop with the same
    result. I've changed the originals from CMYK to RGB, but it doesn't help.
    Plus the images export with a huge crop area instead of just the image
    itself.
    I'd really like to be able to use AI, but I'm finding this situation
    unworkable. I am sure I'm missing something simple , but I'd appreciate any
    help greatly!
    Thanks
    Jeff
    ~~~~~~~~~~~~
    Jefferis Peterson, Pres.
    Web Design and Marketing
    http://www.PetersonSales.com

    Thanks for your help Jean et al.
    I only use Illustrator occasionally and when I have to. Not because I don't
    like the idea, but I'm almost completely web oriented and I find its layout
    is not as instinctive and smooth as Fireworks, and I use Photoshop for
    original layered images. The problem comes when I get a file from a printer
    who uses Quark and knows nothing about web prep and exporting for other
    uses. He couldn't export a layered file for some reason even though he had
    the backgrounds layered for print work.
    You are right, I've opened the tiff and eps docs from the printer before and
    played with them in AI, and saved them to ai native formats. I *thought* the
    eps files were created in ai by the printer, because they had the clipping
    paths and artboards. Obviously they were not. They had just opened with the
    default 14400 artboard which is why I thought they had been "set." So when I
    set the new 30x30 custom, I started seeing these files with a new
    artboard...
    So, in sum, I first tried to use these files in Photoshop, but they open
    as flat files and the clipping paths are lost. Only by experimenting with
    ai, did I find the files had clipping paths. I guess what threw me was that
    ai could extract clipping paths from eps that Photoshop could not.
    Jeff
    ~~~~~~~~~~~~
    Jefferis Peterson, Pres.
    Web Design and Marketing
    http://www.PetersonSales.com

  • Can you open word doc. In pages? (Opening a doc. From the web) in the iPad or iPod tuch?

    Can you open word doc. In pages? (Opening a doc. From the web) in the iPad or iPod tuch?

    NH,
    This may seem a fine point, but iWork apps don't actually Open Office apps. They Import them. The reason I make this distinction for you is that when you view the result of the import, you may see some variations from what was in the Office document because of an imperfect translation, and when you make edits, you are editing an iWork document, not the original Office document.
    Jerry

  • HT5182 How can I convert Raw images from iphoto to jpg for the web?

    I have some pictures in Raw mode stored in my Iphoto that I need to convert in JPG for the web and to print in business cards, I have been going around e-mailing the pictures to myself in large or medium size and then saving them again to my iphoto. Is there a way to do this from iphoto directly?

    iMac (24-inch Early 2009), iOS 6
    Are your pictures on your iMac or on an IOS device?
    On your iMac use "File > Export " set the jpeg quality and size you want:
    Regards
    Léonie
    Sorry, Ralph, I see, we have been cross posting

  • Save for the web - Colors and Shift key

    Hi Everyone,
    With CS3 and Save for the Web, while saving a transparent image using GIF, you could use the Eyedropper Tool (i) and hold Shift key to select multiple colors at a time ON the image itself.
    Trying this in CS4 and it doesn't look like it's working. Anything changed? No I have to select the colors one at a time and this is painfull when you're on 256 different colors.
    Thanks!

    It would appear this functionality is no longer available. Shift clicking on the swatches is, though that doesnt help much here.

  • Save for the web seq

    I need to save for the web an animation of about 100 frames. The problem is the only way to do that seems to be saving the file as a gif but I need to keep them frame by frame. I was wondering if there is a way to save for the web the entire sequence and keep it as a jpg or png.
    Tx

    Simply render the animation to whatever format you find suitable using File --> Render Video, then convert the result using batch processing.
    Mylenium

  • How to create clean text for the web in Photoshop/Illustrator

    I am puzzled to death on how in the world to get clean text for the web in Photoshop/Illustrator, particularly white text. I want my text to turn out exactly like the text at this website: thepainteddoor.org
    If you scroll down to the bottom of that page, notice the titles "Featured Media", "Social Networking", and "Contact Information". They are all .gif images. I have tried to replicate what these images look like for about 3 hours now to no avail. Can anyone tell me how to do this? It just looks like a simple outline or drop shadow, but I can't get it to show up like that. If someone could help me replicate that effect with text (aka make it show up clean as an image), I would graciously give them money through PayPal*.
    * = I will only give cash if it will replicate it exactly (and I mean exactly)..and it won't be too much..I'm a poor college student. :-P
    Thanks in advance!
    Thomas

    You would do it the way I created it:
    Select the Text tool in Photoshop and set the font and parameters as I have listed.  Then enter whatever text you like.  It will be rendered over the top of the lower layers you may have in the document.  Save as an image of the appropriate type and you're there.
    Note that "lower layers you may have in the document" could conceivably be none at all (i.e., you render the text over a transparent document).  You could imagine saving that as a .png with transparency and get light text in an image that could then be put over the top of anything else.  The alpha mixing will see to it that the edges smoothly blend with the background.  I haven't actually tried this (I usually do try my own suggestions) because of lack of time right now.
    -Noel
    Edit:  Markerline and I seem to be on the same crystal-controlled wavelength. 

Maybe you are looking for

  • DVD won't play in my DVR player

    I've read the other posts on this already, but they don't seem to address what I believe is my issue. I took an mp4 movie into iDVD as "One step DVD from movie", it took 8 hours to burn a 120 minute movie. When the screen said "done" it also said the

  • Pointer not working properly in mozilla browser alone wat to do??????

    pointer moves around the page but unable to select using the pointer.each time i had to press backspace to type something on the search box.i cannot get a dropdown box in gmail to sign out because of pointer not working properly.how do i rectify it??

  • MiniSAP tp problem - please help

    Hi! I am trying to follow the Microsoft installation guidelines for installing the ADO.NET data provider for SAP.  I have a miniSAP 4.6D system on Windows 2003.  Some of the instuctions from Microsoft are below.  Item 2 below (addtobuffer) worked fin

  • Saving word document

    Hi ppl, I have an application where I am displaying word document in a jsp page(using iframe). But I am not sure, if the user makes some changes in the document how can I send the content of word back to the server, so that server can save it. pls ad

  • Apple TV won't connect to the iTunes store.

    At first, when I tried to access iTunes stores on my ATV to rent movies I got a message "iTunes Store is not currently available."  I tried signing out and back in, and resetting the device but nothing works. Now the Movie rental doesn't even show up