Preview not saving when converting multiple .eps files to .pdf

Hi,
I have a macbook pro with snow leopard. I open a group of .eps image files using preview into the same window. I then shut the window with "cmd w". It says do you want to save all. I click save all. But then no saves are made.
If i open the group of .eps files using preview into separate windows and click "cmd w", then click save, it tries to save as untitled.pdf as opposed to "filename".pdf.
I previously used preview on a powerbook to convert .eps images to .pdf. In that version of preview the files would open in their own window. When i hit "cmd w" and save it would use save file as "filename".pdf.
Why does the newer version of preview not at least do this? Preferably the new version of preview would save all the .eps files as a batch as stated in my first sentence.
Does anyone have any ideas what i can do?

Possibly similar problem:
When I open a JPEG in Preview, adjust the quality, and try to Save As, it simply saves as the original, not the new reduced-quality file. This is true even if I save it in a new location.
- open a 200kb JPEG
- try to Save As with quality reduced to only 50kb
- it saves as the original 200kb file

Similar Messages

  • Converting Multiple .EPS files into .PDF

    Dear Forum:  We have tried converting multiple .eps files into PDF using article 325977. This article in Adobe help is really designed to convert .ai files into either .eps or.pdf, our situation is to convert multiple .eps files into PDF. Everytime we run the macro, it simply takes the eps file and saves it as another eps file and does not convert. We have a "Save As" step that we have in the macro that is set to "Save As" PDF, but it still does not work. What are we doing wrong?

    Hi mephisto11757,
    You can convert the following file types to PDF with the Adobe CreatePDF service:
    Adobe Creative Suite® file formats Examples include: .psd, .ai, .indd
    Microsoft Word (2000, XP, 2003, 2007, 2010, & 2011) .doc, .docx
    Microsoft Excel (2000, XP, 2003, 2007, 2010, & 2011) .xls, .xlsx
    Microsoft PowerPoint (2000, XP, 2003, 2007, 2010, & 2011) .ppt, .pptx
    Microsoft Publisher (2000, XP, 2003, 2007, 2010, & 2011) .pub
    Text Files .txt
    Rich Text Format .rtf
    Adobe PostScript .ps
    OpenOffice Format .odt
    Star Office .sxw, .sxi, .sxc, .sxd, .stw
    Corel WordPerfect .wpd
    Image file formats .gif, .png, .jpg, .bmp, .tiff
    Regards,
    Florence

  • Www does not display when converting a Publisher file to pdf

    Does anyone know what settings need to be changed in Adobe Acrobat 9.0 in order for it to display the www in web addresses? I am having trouble converting a file from Publisher that includes 2 website addresses and the pdf has the correct links, but the display in my pdf leaves off the www. (For example, www.amazon.com displays as ".amazon.com") Please help if you can!
    Sheila

    You have to either use PDF Maker (I think Publisher can do that) or enter the links in Acrobat itself.

  • Setting Font for converting multiple text files into PDF using VB 6.0

    Dear All,
    Am converting multiple text files into PDF using VB6.0. Currently, am unable to control the font face and size for the generated files. Below is the procedure am using for each file;
    Public Sub proc_convert_to_PDF(srcFilename As String, destFilename As String)
    Dim p_AcroApp As CAcroApp
    Dim p_VDoc As CAcroAVDoc
    Dim p_DDoc As CAcroPDDoc
    Dim IsOk As Boolean
    Set p_AcroApp = CreateObject("AcroExch.App")
    Set p_VDoc = CreateObject("AcroExch.AVDoc")
    Call p_VDoc.Open(srcFilename, "")
    Set p_VDoc = p_AcroApp.GetActiveDoc
    If p_VDoc.IsValid Then
    Set p_DDoc = p_VDoc.GetPDDoc
    ' Fill in pdf properties.
    p_DDoc.SetInfo "Title", Format(Date, "dd-mm-yyy")
    p_DDoc.SetInfo "Subject", srcFilename
    If p_DDoc.Save(1 Or 4 Or 32, destFilename) <> True Then
    MsgBox "Failed to save " & srcFilename
    End If
    p_DDoc.Close
    End If
    'Close the PDF
    p_VDoc.Close True
    p_AcroApp.Exit
    'Clear Variables
    Set p_DDoc = Nothing
    Set p_VDoc = Nothing
    Set p_AcroApp = Nothing
    End Sub
    What I need;
    1) to be able to set the font face of the destination file ( destFilename)
    2) to be able to set the font size of the destination file ( destFilename)
    Am using Adobe Acrobat 7.0 Type Library
    Kindly Help.
    Thanks in advance

    We didn't say it doesn't work. We said it isn't supported.
    There are a number of other ways to make a PDF. The one which would
    give the most control is if your application directly printed to GDI,
    controlling the font directly. This could print to Adobe PDF.
    You could look for an application that gives control of font for
    printing.
    You could use a text-to-PostScript system and distill the result. You
    could even look for a non-Adobe text-to-PDF.
    Working in the unsupported and dangerous world you chose, the font
    size for text conversion is set (and this is very bad design from
    Adobe) in the settings for Create PDF > From Web Page. There is no API
    to this.
    Aandi Inston

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • Converting multiple bmp files to PDF using acrobat 7.0 from DOS prompt

    Hi,
    I have a requirement to convert multiple BMP files in a folder to one PDF.
    I can use multiple file conversion option in acrobat to combine and convert them to one PDF .. but I have 2000 such folder to conver to PDF.
    PDF should be name after the folder name.
    Is there a to automate this in acrobat.. or can we run this conversion from DOS prompt using commands.. so that I can create a bat file and have them converted. Pls let me know.
    Thanks
    Pugazh

    I have not tried BMP files, but do JPeg, GIF, TIFF, and PNG files regularly. I simply open Acrobat, then select the graphics files in explorer and drag & drop to Acrobat. I then organize the graphics if needed (using the pages tab) and save to a PDF.

  • Distortion of excel charts when converting microsoft publisher file to pdf

    I am using the print "Adobe PDF" function in publisher to convert a publisher file to pdf.  Some exel pie charts that were pasted into the publisher file become distorted at the edges in the pdf file.  I have tried playing with various settings and using the "print quality" settings but nothing has helped.  See the attached files for an example of the excel chart, publisher file, and results I am getting when converting to pdf.
    Thanks all.

    I'm sorry I didn't make it clear.  What I'm trying to say is that the graphic looks just fine in publisher.  But when it is converted to a pdf, the graphic has distorted edges, if you look at the publisher and pdf files I attached I think you might see what I'm talking about. 
    Please let me know if it's still not clear.

  • How do I correct spacing errors that occured when converting a word file to pdf?

    I have a microsoft word file that when converted to pdf is changed. If I import it I loose the font style if I upload it I keep the fonts but the spacing on the document is all wrong. Any suggestions?

    Hello there,
    Thanks for posting; this is an error that we see from time to time, and typically has to do with the document's formatting. Sometimes a font used in the original document is not available on our conversion servers; while we do have a lot of fonts installed on those servers, we don't have every font in the world. A missing font will be substituted and those substitutions can lead to the results you observed. Additionally, image placement, line breaks, and page breaks sometimes change if you save to other formats. Although there's not a specific button to click to fix the problem, you may want to toy with any strange or special spacing that you've used in the document, or substitute a more standard font of your own choosing. Please let me know if you need more help or information!
    Best regards,
    Rebecca

  • How do I ensure that a semi-transparent background stays that way when converting a pptx file to PDF

    I can't seem to get a semi-transparent background image when converting to PDF file.  Every time I try it - the image converts to a full color - zero transparency background, muting out the text on the page.
    Please help.
    Thank you.

    Hi LeighAnnie,
    If you're running Windows, you could try setting up the CreatePDF Desktop printer. 
    -David

  • Why are my edited pictures from bridge not saving when I automate batch files through PS?

    When I edit my photos through adobe bridge (open camera raw, make adjustments to 1 picture), then automate (batch) my file folder in PS, the edits I have made don't save. Example, I crop an image & lighten it, I can view the adjusted image in bridge & camera raw, but when I batch my photos the editing I have done is gone.

    Raw files need to be opened and saved before the adjustments are applied.  I have no clue what your "batch save" does.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Automator: Cannot convert multiple .doc files to PDF

    Hi everyone!
    I can't get my automator to print PDF files correctly. Once I have run the workflow I try to open the files and they are "messed up" preview and adobe both tell me that the "File cannot be opened. It may be damaged or use a file format that Preview doesn’t recognize."
    When I go to Automator I see an error message - (1728) The object you are trying to access does not exist. However, if I manually create the PDF from Word or Pages, I have no problem.
    I really appreciate the help, I need this to grade student papers and I have 200 students. Figuring this out would really make my life better.
    Thank you for your time!
    Diana

    Here's the screenshot.
    I tried using several different files and it seems not to be the problem.
    /Users/arqanaid/Desktop/Screen shot 2011-03-04 at 2.32.46 PM.png
    Thank you all for being so helpful!

  • Printing issue when converting an .indd file to .pdf

    All,
    I have two .indd files that loose color when printing after .pdf conversion. The first file looses all color and changes the text font. The second file prints correctly on the first page but not the second. The seond .indd file looses it's color all the way through.
    When I view the .pdf, they both look fine. Also, If I print directly from indesign, it prints fine.
    Any thoughts?
    Thanks in advance!

    You need to provide us with more information.
    How are you creating the PDF files? Export (recommended)? Print to PostScript (strongly discouraged)? With exactly what settings?
    If you examine the PDF file in Acrobat, does the document information indicate that all the fonts are embedded?
    More information and we can try to begin assisting you.
              - Dov

  • Converting a .tiff file to PDF

    I can not seem to convert a .tiff file to PDF, it keeps giving me a error. What can I do? I have Windows 7

    Oh dear!  Unfortunately, it sounds like the problem is specific to the file in question, which means that we wouldn't be able to reproduce the error you've been seeing with another file. Why don't you try creating a comparable .tif file and see if you can upload it? I would be very surprised if you received the same error message, so the goal here would just be to isolate the problem as existing only in the other file. If it's not too much trouble, give it a shot.
    All that being said, if we can't test the file ourselves, it'll be tough to find a workaround for you. Sometimes certain files contain a piece that our servers have trouble with, so we like to be able to examine the files that prove difficult, and often wrestle them into compliance. I'm sorry not to be able to offer more specific instructions, Sharmaine! Let me know how your experimenting goes.
    Best,
    Rebecca

  • In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    In Adobe Pro XI when converting an excel file to a pdf, the pdf is not retaining the page size settings.  Has anyone found a fix for this?

    It shouldn't print each page as a separate job and
    each tab has a different name, so, even if it did, it
    ought to give the printouts the name of the tabs.
    It doesn't print each page as a separate job unless the orientation is different - that's the bug. And the name of the job is taken from the name of the window, not the name of the tabs. That's how every application works, which, I think, is why Excel allows the specific selection or the active sheets to be printed.
    Still, that does sound like a plausible explanation.
    However, even if presented with multiple prints with
    the same name, the spooler should print each one!
    The spooler does print each one - you can watch the spooler process the multiple jobs. I think, though, that they are being overwritten since all the jobs have the name of the window as the job title. And since this happens after the Save Dialog is presented, there's really nothing the application can do. To Excel, it's one job, the multiple orientations don't matter; it's just that Apple doesn't handle it correctly.
    As a workaround, you can print the selections one at a time and give them unique names and then rejoin them in one PDF file.

  • Combining pdf files in Preview not saved

    I'm trying to combine screenshots into one pdf file.  I clicked on the side bar button and dragged the files I wanted into the side bar and then saved this as a pdf file.  It showed it as saving all the pages but when I closed it and reopened it, it had only one file.  (It was now opened in Adobe Reader).  Why is it not saving it as a combined file?
    Thanks,
    Kathy

    In case anyone else has this problem in Snow Leopard, I found the answer: http://tech.michaelerb.net/mac-software/how-to-combine-pdf-files-in-preview-unde r-snow-leopard/

Maybe you are looking for