Illustrator CS5 PDF Dimensions Incorrect - 72dpi for web

Issue in a nutshell: I'm wire-framing sites in Illy CS5 for it's snap to pixel grid features. I have my document set up to use pixels as units, raster effects at 72dpi, and RGB color. So as far as I can tell everything should be formatted correctly. The issues arise when I save the comps to PDF so I can e-mail them to clients. Two things happen, from what I can tell so far, that are most likely related. First, the PDF artboard size doesn't match the Illy artboard size. Comparing 100% zoom size side by side on each, the PDF appears to be 33% too large (i.e. they look identical when the PDF is at 75% zoom and Illy at 100%.) Second, what I thought was a separate problem originally, when placing PSD's at 72dpi they look crisp in Illy and Photoshop but appear blurry when saved as PDF (I'm assuming because of the 33% scale distorting them.) When saving the PDF I've tried using "Smallest File Size", "High Quality Print", and some custom settings (downsampling images to 72dpi) just to see if I can get anything to work. Everything comes out oversized though. Also, I know there are options to export as .png, .jpg, ect... and that you can "Save for Web and Devices." I want to avoid using these if possible because they tend to be slow, don't favor multiple artboards, generally handle text poorly, and are not as good as a PDF for emailing to clients for review.
In the reading I've done searching for a solution it looks like most people have their artboard or PDF preferences set up incorrectly. Usually resulting in a drastically larger or smaller image, roughly 4 times, because the file is being saved at 300dpi instead of 72dpi. What throws me for a loop is the 33% scale because I'm not seeing a direct relationship between print quality dpi and web dpi mussing things up. There must be some setting or box I'm not checking to save the file correctly, but am not sure where to go about it.
Thanks for all your help, and let me know if you need any more info. 

Arnbly,
Forget monitor resolution. It has nothing to do with monitor resolution. Discussion of monitor resolution just confuses the issue.
Comparing 100% zoom size...
That's the key.
You are using two different applications. (Never mind that they are published by the same software vendor.)
Regardless of your monitor's specs, it's neither the monitor's dot pitch (102 PPI) nor its pixel count (1920 x 1080) that makes Illustrator's display of 1" smaller than Acrobat's on that same monitor. It's how many monitor pixels (on any size monitor) that the two programs use to render a representation of a real-world inch at 100% zoom.
Illustrator always assumes 100% of one inch of actual linear measure in the document corresponds to 72 monitor pixels. In other words, at 100% zoom, it uses 72 pixels to "paint" an inch. When set to Inches, the major tickmarks of Illustrator's rulers are 72 monitor pixels apart, therefore display smaller (take up less of your monitor's space) than the rulers do in Acrobat.
Reader (and Acrobat), by default, assumes 100% of one inch of actual linear measure in the document corresponds to 96 monitor pixels. In other words, at 100% zoom, it uses 96 pixels to "paint" an inch. When set to inches, the major tickmarks of Acrobat's rulers are, by default, 96 monitor pixels apart, therefore display larger (take up more of your monitor's space) than the rulers do in Illustrator.
In a nutshell, it boils down to this: Zoom is just the currently-displayed ratio between real-world measure and number of monitor pixels used to paint a picture of it. Illustrator and Acrobat (by default) simply label different zoom levels to be "100%". Illustrator clings to the MacOS convention of using 72 monitor pixels to paint an inch-worth's of page content. Acrobat's default uses the Windows convention of using 96 monitor pixels to paint an inch-worth's of page content.
Neither one necessarily matches physical reality. That is, even without switching between programs, if you hold a ruler up to any given monitor displaying a given application, what the software labels "1 inch" at "100%" will quite likely not match your physical ruler. Obviously, for example, if you view your PDF on a cell phone and zoom to "100", the display will measure in real-world physcial measure much smaller than the same PDF does on your laptop, which will likely in turn be smaller than when displayed on your desktop--even if all three devices have Acrobat zoomed to "100%."
As you can see above, Illustrator's "72 pixels to paint an inch" uses less of your monitor's space to display an inch at 100% zoom, but shows less detail because it has fewer pixels (72 x 72) available for rendering that square inch . Acrobat's default "96 pixels to paint an inch" takes up more of your monitor's space to display an inch at 100% zoom, but shows more detail because it has more pixels (96 x 96) available for rendering the same square inch.
The above screenshots, however, are of vector-based artwork. If the artwork were a raster image, display quality , not just size, would also differ between the two programs when zoomed to 100%. The display would be sharpest when the actual number of pixels contained in the scaled-to-one-inch image matches the number of monitor pixels that the program displaying it uses to render an inch. So if the above artwork were a 96 x 96 pixel raster image scaled to 1 inch on the page, its display would be better at 100% in Acrobat than in Illustrator. If its were a 72 x 72 pixel raster image scaled to 1 inch on the page, its display would be better at 100% in Illustrator than in Acrobat.
So to make your PDFs display at the same size as your Illustrator documents at 100%, set your Reader (and/or Acrobat) display preferences to what Illustrator considers an inch:
But understand: Pixels Per Inch means nothing to a web browser. Web browers ignore PPI. They just display image pixels to monitor pixels, 1:1. So if your client is on Windows (by far more likely than not), Acrobat's default setting of 96 PPI is going to be more representative of the size he sees your web-destined design when viewed in his web browser.
JET

Similar Messages

  • Saving two dimensions od image for web

    Hi there,
    I have made script (with your help ) to export images for web with dimensions 300x300 px. Now I want that my script do one more resize of that files so that i get two files one 300x300 and another 66x66 px. I will post my script and ask you to hel me find the bug
    And one more question. My script exports file name + jpg but it also keeps orginal extension so I get ie. FileName.psd.jpg
    can you help me fixing this in my script... else is fine...
    thank you,
    Voah
    Edit:
    In the meen time I managed to resolve the problem so here is the new script
    But I have one more thing I would like to do. I have to manually make folder "300x300 and "66x66" or my script stops. How coud I make that script make that folders? (under inputFolder/300x300/ and inputFolder/66x66/)
    // Save current dialog preferences
    var startDisplayDialogs = app.displayDialogs;    
    // Save current unit preferences
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    var inputFolder = Folder.selectDialog("Select the input folder");
    //var outputFolder = Folder.selectDialog("Select the output folder");
    ProcessImages();
    function ProcessImages() {
      var filesOpened = 0;
    //   if ( inputFolder == null || outputFolder == null)
         if ( inputFolder == null) {
                alert("No source folder selected");
    //     if ( outputFolder == null) {
    //       alert("No output folder selected");
    //else{
      var fileList = inputFolder.getFiles();
      for ( var i = 0; i < fileList.length; i++ ) {
           if ( fileList[i] instanceof File && ! fileList[i].hidden) {
                     open( fileList[i] );
                     ResizeImage();
                     filesOpened++;
      return filesOpened;
    function ExportPng(filePrefix, fileSuffix){
    try
    var docRef = app.activeDocument;
    var docName = app.activeDocument.name.slice(0,-4);
    var saveOptions = new ExportOptionsSaveForWeb();
    saveOptions.quality = 70;
    saveOptions.format = SaveDocumentType.JPEG;
    saveOptions.optimized = true;
    docRef.exportDocument(File(app.activeDocument.path+'/300x300//'+docName+'.jpg'), ExportType.SAVEFORWEB, saveOptions);
    catch (e)
    alert("Error encountered when attempting to save the image. \r\r" + e);
    return;
    // funkcija export 2
    function ExportPng2(filePrefix, fileSuffix){
    try
    var docRef = app.activeDocument;
    var docName = app.activeDocument.name.slice(0,-4);
    var saveOptions = new ExportOptionsSaveForWeb();
    saveOptions.quality = 70;
    saveOptions.format = SaveDocumentType.JPEG;
    saveOptions.optimized = true;
    docRef.exportDocument(File(app.activeDocument.path+'/66x66//'+docName+'.jpg'), ExportType.SAVEFORWEB, saveOptions);
    catch (e)
    alert("Error encountered when attempting to save the image. \r\r" + e);
    return;
    function ResizeImage()
    if (app.documents.length > 0) {
        var docRef = app.activeDocument;
        var n = docRef.pathItems.length;
            if((n>0)&&(docRef.pathItems[0].name!="Work path" ))  {
                 docRef.pathItems[0].makeSelection();
                 docRef.selection.invert();
                 docRef.selection.clear();
                 docRef.selection.deselect();
       function fitImage() {
    var docRef = app.activeDocument;
    docRef.trim()
    var docWidth = docRef.width.as("px");
    var docHeight = docRef.height.as("px");       
    if (docWidth / docHeight > 4.8)
        docRef.rotateCanvas (315)
        docRef.trim()
    else if (docHeight / docWidth > 4.8)
        docRef.rotateCanvas(45)
        docRef.trim()
    if (docWidth < docHeight)
              docRef.resizeImage(undefined, UnitValue(270,"px"), 72,  ResampleMethod.BICUBIC )
          else if (docWidth > docHeight)
                          docRef.resizeImage(UnitValue(270,"px"),undefined, 72,  ResampleMethod.BICUBIC )
          else if (docWidth == docHeight)
                    docRef.resizeImage(UnitValue(270,"px"),UnitValue(270,"px"), 72,  ResampleMethod.BICUBIC )
    docWidth = docRef.width.as("px");
    docHeight = docRef.height.as("px");       
    if (docWidth < docHeight)
                        docRef.resizeCanvas(UnitValue(300,"px"), UnitValue(300,"px"), AnchorPosition.MIDDLECENTER);
          else if (docWidth > docHeight)
                docRef.resizeCanvas(UnitValue(300,"px"), UnitValue(300,"px"), AnchorPosition.MIDDLECENTER);
          else if (docWidth == docHeight)
                docRef.resizeCanvas(UnitValue(300,"px"), UnitValue(300,"px"), AnchorPosition.MIDDLECENTER);
    var docRef = app.activeDocument;
    var savedState = docRef.activeHistoryState;
    fitImage();
    app.displayDialogs = DialogModes.NO;
    ExportPng( File( "",".jpg" ))
    docRef.resizeImage(UnitValue(66,"px"),UnitValue(66,"px"), 72,  ResampleMethod.BICUBIC );
                ExportPng2( File( "",".jpg" ))
    docRef.close(SaveOptions.DONOTSAVECHANGES);
    docRef = null;
    // Reset app preferences
    app.displayDialogs = startDisplayDialogs;
    preferences.rulerUnits = originalRulerUnits;

    Does this help?
    main();
    function main(){
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    var inputFolder = Folder.selectDialog("Select the input folder");
    if(inputFolder == null) return;
    var fileList = inputFolder.getFiles(/\.(jpg|tif|psd|png)$/i);
    var outputFolder1 = Folder(inputFolder + "/300x300");
    if(!outputFolder1.exists) outputFolder1.create();
    var outputFolder2 = Folder(inputFolder + "/66x66");
    if(!outputFolder2.exists) outputFolder2.create();
    for (var a in fileList){
    open(fileList[a]);
    var Name = decodeURI(activeDocument.name).replace(/\.[^\.]+$/, '');
    app.activeDocument.trim(TrimType.TRANSPARENT);
    FitImage(300,300);
    var saveFile = File(outputFolder1 + "/" + Name + ".jpg");
    SaveForWeb(saveFile,70);
    FitImage(66,66);
    var saveFile = File(outputFolder2 + "/" + Name + ".jpg");
    SaveForWeb(saveFile,70);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    preferences.rulerUnits = originalRulerUnits;
    function FitImage( inWidth, inHeight ) {
    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 );
    function SaveForWeb(saveFile,jpegQuality) {
    var sfwOptions = new ExportOptionsSaveForWeb();
       sfwOptions.format = SaveDocumentType.JPEG;
       sfwOptions.includeProfile = false;
       sfwOptions.interlaced = 0;
       sfwOptions.optimized = true;
       sfwOptions.quality = jpegQuality;
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);

  • Illustrator CS5 don't place file for recent folder but instead goes to default

    Hi,
    I recently updated my mountain lion os...and since than, my Illustrator cs5 act strangely.
    I cannot PLACE an image from my subfolder anymore, but instead it goes back to default.
    For example:
    Before : I was able to click PLACE and it will open to folder titled PROJECT: showing all images.
    Now: when I click PLACE, it open to DESKTOP folder instead, then I have to go to the subfolder and select "PROJECT"  to place images.
    Does anyone have a solution?
    Thanks in advance.

    Hi,
    I recently updated my mountain lion os...and since than, my Illustrator cs5 act strangely.
    I cannot PLACE an image from my subfolder anymore, but instead it goes back to default.
    For example:
    Before : I was able to click PLACE and it will open to folder titled PROJECT: showing all images.
    Now: when I click PLACE, it open to DESKTOP folder instead, then I have to go to the subfolder and select "PROJECT"  to place images.
    Does anyone have a solution?
    Thanks in advance.

  • PDF displays incorrectly within embedded web frame

    pdf files in an embedded frame using iframe tag display incorrectly in Firefox V.22 and earlier;
    On opening the webpage, the pdf is displayed too large.
    The pdf displays correctly only after refreshing or reloading the webpage.
    In Internet Explorer, Safari and Chrome, the pdf displays correctly when one first views the page.
    I have already reset Firefox to use Adobe Acrobat plugin. The scaling still works only after reset.

    Make sure your not Zoomed the PDF File
    Hit > CTRL + 0 (zero) for Normal view,
    Try to use the In-built PDF Viewer
    *Firefox > Tools > Options > Application > Search for "PDF" > Preview in Firefox
    If your facing the problem, please provide the screen shot of that.

  • I created a logo in AI illustrator and saved it as "save for web and devices" to get a transparent background. the logo save in png format. Now the problem is I want to print it on a flex but when I zoom it, it looks like a scalar random image. please hel

    ???

    Also when I open it in illustrator.. and starting editing it but the objects are unable to select..what i do know.WoojinAmy_WongIllustrator@ I

  • All graphics / vector in Save for Web are getting blurry / unsharp from Illustrator

    All graphics / vector in Save for Web are getting blurry / unsharp from Illustrator. Same problem with save for web in Photoshop. Frustrating to be working as a designer and not be able to create sharp logos for mail sign, word templates, PPT templates etc etc.  I purchased this Adobe Creative Cloud package in Sept, and are working on my Mac HD, OSX, Vers 10.9.4. I have been using the same programs on a PC for years and never had this same problem. Its frustrating!! What to do??

    gif, jpg and png are pixel formats, so please clarify what the problem is supposed to be.
    Screenshots or posted files might help.

  • CS5 ''Save For Web & Devices'' Help

    Hello
    This is my 1st post on this forum, Hope its in the proper place
    When i'm finished processing images on CS5 i click on ''Save For Web & Devices'' to save it & also to remove the EXIF image info, As of late though it has not been removing the info from the image when i click save. Anyone had any issues with this before, Any help on this issue would be great
    Thank you

    EXIF is a file format used by digital cameras to store metadata associated with an image.
    This metadata can be any of several things:
    date/time
    f-stop
    shutter speed
    camera make/model
    lens make/model
    GPS location
    Some photo libraries (such as Flikr) will display the EXIF data alongside the photo.

  • Batch processing "save for web" color shift problem

    In Illustrator CS3, when batch processing "save for web and devices," there is a dramatic color shift in resulting files.
    Is there a workaround for this problem?
    Thanks!
    Karen.

    Make sure the color mode of your documents is RGB (not CMYK) and that your workspace is sRGB.

  • Save for Web is disabled

    I downloaded and installed the Picture Package for Photoshop CS4. Once installed the Save for Web option became grayed out and I can no longer access that function. I deleted the preferences to see if that would help; it did not. How can I resolve this conflict?

    It's disabled for me today as well. I'm starting to think that it's related to the ACrobat 8.2 update, which caused problems opening CS and CS2 illustrator and Indesign, which is listed as an issue http://kb2.adobe.com/cps/534/cpsid_53468.html
    That fix resolved my problem of opening Indesign and illustrator cs2, but today Photoshop Save for Web is broken. I'm hoping they are related, and a fix for the new issue is forthcoming, but I don't know for sure this is the cause.... or if it it's just coincidence.
    Anyone else?

  • Illustrator CS5 15.0.2 crash when Save for Web and Devices (Mac)

    Hi baffled with this.
    When Saving for Web and Devices in Illustrator CS5 (15.0.2), the application now freezes and has to be force quit.
    HOWEVER if I delete the Users/~/Library/Preferences/Adobe Illustrator CS5 Settings/en_GB folder all works well until I quit the application, then the freeze will happen again. I had this happen before so under the advice of Adobe I created a new user and all was fine for that user so I transferred everything across... a laborious task.
    So my question now is why now?... what has triggered this AGAIN?...
    Hope you can help... anyone.
    Running:
    Mac OS X 10.6.6
    Mac Pro tower.
    Note:
    have uninstalled, reinstalled, updated 15.0.1 - 15.0.2
    have deleted all font caches
    have deleted everything... that could be related...
    HOWEVER have narrowed it down to the 'Adobe Illustrator Prefs' file in the Users/~/Library/Preferences/Adobe Illustrator CS5 Settings/en_GB folder
    Please too note this is not the folder permissions issue, am aware of that and have thoroughly checked all permissions, ran disk utility and disk warrior.
    thanks

    If you use cocktail I suggest you get rid of it it can cause serious problems if you select the wrong settings, instead download ONYXwhich is free and will not harm your system or corrupt anything by deleting something you actually need.
    I hit the wrong setting using cocktail and it locked me out of all of the hard drives installed or connected to my Mac it is very dangerous. And I cannot imagine a reason for a setting that would protect your hard drives from yourself to the point of not recognizing your own password.
    I know it cost money and has advanced settings but having the ability to kill your system is crazy.
    Also to repair your permissions use the disk utility or ONYX as the permissions can become changed when installing software or if cocktail changes it locking you out of folders etc.

  • Saving for web in Illustrator CS5

    I am a complete newbie/novice in Illustrator CS5. I've only had it for a couple of weeks. Previously I had version CS. And I was a novice/infrequent user with that. So forgive me if this is an ignorant question.
    Since CS didn't have artboards, I would start with whatever size document and I would create an item, say a button for a webpage. It was nowhere near the size of the overall document. I didn't really pay attention to document size. In any case, once I had created the button and its label, I would group everything, then select it, then choose Save For Web. And what it saved was only what I had selected - not the entire larger document.
    With CS5, if I have an artboard that is larger than the piece of artwork that I am creating, if I select the artwork and choose Save For Web, it is saving the entire artboard, not just what I have selected. Now I know I could revise the size of the artboard. But is there another way? In this case, I have several little related buttons on a single artboard. And it's convenient to have them all on one board. Is there a way to select one of them and export just the selected artwork, and not the whole artboard?
    I appreciate your input.
    Scott

    If you want to export them using Save for web, you'd have to create either slices or additional artboards around every single graphic. It would be more convenient to use slices, since you can then export all of your graphics in one go.

  • Illustrator CS5 - Save for Web

    Hi,
    In Illustrator CS4 when I create a graphic on my artboard and choose Save for Web, the 'export area' is trimmed to fit the artwork exactly.
    After upgrading to CS5, this no longer happens and I have to adjust the size of the artboard manually before using Save for Web.
    Is there a preference somewhere that changes this behaviour or is this new & expected?
    cheers,
    kevin

    Hi Jacob,
    Yes this is still possible - but still an extra couple of steps vs just hitting Command+Option+Shift+S
    I can't find a specific preference for this in CS4 - yet I'm still able to Save for Web and get trimmed art (I just reconfirmed).
    Interesting & annoying...
    It just occurred to me that I could create a custom keyboard shortcut -  so I assigned Command+Option+Shift+1 to Object->Artboards->Fit To Selected Art
    So now 2 key combos give me the same result.
    cheers

  • Is it possible for illustrator (cs5 or later) to open/maintain original PDF layers?

    I want to edit a map that I found on the USGS.gov website.  From that site, I've downloaded a PDF file which is organized into a few layers.  Of course when I open it, illustrator has all the content grouped together and on one layer.
    I am a long time user, but some of the program details evade me.  I just want to know once and for all... is this just impossible?, or is there a way to work around this?
    *One other thing I've considered but haven't tried yet, is to export or re-save each layer as its own individual PDF.  Then maybe I can open each one in illustrator and reassemble the map from there.
    **Here is a link to the map, if anyone wants to download it and experiment.
    http://store.usgs.gov/b2c_usgs/catalog/setCurrentItem/(isQuery=yes&xcm=r3standardpitrex_pr d&query=*Milwaukee%2C+WI*&layo…
    Best,
    Alex

    The real issue here is that of editability of general PDF files in Adobe Illustrator.
    The fact is that Adobe Illustrator is not, repeat not, repeat one more time not a general purpose editor of PDF files, popular beliefs and perceptions not withstanding. The only PDF files that can fully and properly be edited by Adobe Illustrator are PDF files that were originally saved from Adobe Illustrator using the save editability option when created and if the PDF file has not been subsequently modified by any other software. In that case and that case alone, Illustrator “opens” and allows editing of the PDF file but instead of using the PDF constructs, uses “private data” that Illustrator itself put into the file at creation time describing the original .ai Illustrator content, styles, layers, etc.
    In all other cases, Illustrator attempts to open the PDF file and convert it into an Illustrator file, but since Illustrator's imaging model is a subset of the full PDF imaging model, you can expect possible content loss or modification, color space changes (Illustrator only supports either CMYK and gray or RGB in an Illustrator file), and text re-encoding. Note that in all cases, Illustrator never uses the fonts embedded in the PDF file, but in fact requires the fonts referenced in an Illustrator file (including PDF converted to Illustrator format)  to be installed on the system itself; thus font substitutions are possible. Layers from a non-Illustrator PDF file are not preserved upon opening such a file in Illustrator.
    Thus, to address your particular scenario, unless the map you downloaded in PDF format from the usgs.gov website is a PDF saved from Adobe Illustrator using the save editability option, you cannot access the layers in Illustrator. Furthermore, ignoring the layers issue, you may find the rest of your editing PDF in Illustrator experience somewhat lacking.
              - Dov

  • Saving Sliced files in Illustrator CS6 like it was in CS5 "Save for web and devices" gone?

    Hello,
    I used to save all my slices in CS5 and it would give me the option to save for web and devices, then when I was in there it would let me choose the option at the bottom Other... then I could go in and save it as a html and images and then it would automatically make div's for me when I brought it in to dreamweaver.  Where did this option go in CS6?  Can someone help I am on a big deadline, and I lost all my work transfering it back into cs5 to try it there like I used to.  Attached is a .png to show what I mean.
    Thank you,
    DariusB
    These options are not here in CS6 and I cant find it.  I would really appreciate the help.
    Thanks again.

    Hi,
    There have been some other changes too - here is the link to the article that describes the changes: http://blogs.adobe.com/ivandavid/illustrator_cs6_save_for_web/.
    Cheers,
    David

  • Converting InDesign File to PDF for Web

    Hi,
    I designed an ad that is to be used for web view only in InDesign (CS3 on PC). The file restrictions I have been given require that it is 72dpi and a PDF file. When I convert to PDF(smallest file size,no spot colors, compressed), I end up with a file that is 4MB. I'm assuming a file that is 72dpi and 6.25"x9.25" shouldn't be that big. When I look at the "Audit Space Usage" window, 90% is under "Contents Stream" (I don't know what this means).
    I'm new to creating files for web viewing so I'm not sure how to go about accomplishing this without losing image quality. I've tried "reducing file size" and the "PDF Optimizer" in Acrobat. I always get the message "The PDF document contained image masks that were not downsampled." when I attempt this.
    What do I need to do to create a PDF file with these specifications that will retain some of the image quality (won't look pixelated and be read-able)? I don't mind recreating the ad in Illustrator, or Photoshop if I can guarantee that I can end up where I need to be.
    I would really appreciate any tips on this!!

    You mention pictures. If the file is mostly pictures, then the first step is to reduce the picture content, possibly by using 256 colors rather than millions and such. Check the properties of the settings file for the conversion (I don't have current versions available to check right now - you also did not mention your Acrobat version). It is probably best to down sample in a graphics program such as Illustrator or Photoshop (depending on the image being vector or bitmap) and then include them in the original. It is always a good idea to work on a copy and leave the original in place. Trying to do the reduction in Acrobat is not the best approach.

Maybe you are looking for

  • JDBC and MySQL connectivity problem

    The code i hav attached generates Connectivity exception.. the prob is with the part in bold.. can anyone help import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class testconn {   public static void main(

  • Preview in LifeCycle Designer ES

    When I try switching to the preview tab it momentar ily brings up adobe acrobat professional with an error box it doesn't say error it just has a question mark in the box and an okay at the bottom right.  It is a major hassle to close the form and th

  • Re: How to interpret firewall log?

    I am presently employing advanced firewall settings on my iMac G5 running Tiger 10.4.7, i.e., block udp traffic, enable firewall logging, and enable stealth mode. When I opened the firewall log for the first time today, I realized I didn't know what

  • Applying style sheets to Jato

    Is there an example of this somewhere or some documentation? I'm using Jato 1.2. Also, in the emails that fly back and forth I have seen a date sample mentioned. Where is this? I have got the JatoSamples.war deployed and I don't see a date example. I

  • Stack Overflow in External Interface call

    Hi - I'm trying to make a call to he javascript function present in my aspx viz external inerface. I have 3 such calls. One of the call is always erroring out with error Error: Error #1023: Stack overflow occurred.     at flash.external::ExternalInte