Freehand and converting to pdf problem

for some reason when i try to convert a freehand document to pdf ready for printing im losing an "inline" effect around some of the text.
i've put an example to illustrate
http://simonboard.com/photos/pdf.html
can anyone on these forums help?

Distiller is part of Acrobat Pro and used to set up files for output to an imagesetter.
How are you printing these? Is the printer going to make films for burning plates or is this direct from computer to printer?
If it's direct, as I suspect, then merely save the file as an EPS, then import it into Illustrator to check it over and make sure everything is good. Or just import it into Preview to look at it. They should be able to print from a Freehand EPS, but best to check with them first.
Instead of using Freehand's export to PDF simply print then instead of clicking on the Print button on the right, look to the left for a button that says "Save as PDF". This would probably be better than the EPS file, but either one can be imported into Illustrator.

Similar Messages

  • ABAP list to spool and converting to pdf problem in QAS

    Hi
             i am converting the report output to PDF by submitting the spool. i done evrything. but my problem is
    in DEV -everything is ok.when i downalod pdf is coming fine with all fields.
    in QAS- pdf is coming with half page. some fields are cutting off.
    in program i given the format like this.
    wa_pri_params-paart = 'X_65_80'.
        wa_pri_params-linsz = '185'.
      can anyone suggest?? and also can i increase programatically the size becoz it is displaying with small size??

    Programatically you can specify the size by giving
    REPORT XXXXXX NO STANDARD PAGE HEADING
                                         LINE-SIZE 255
                                         LINE-COUNT 90

  • I want to create a Pdf file - do i misunderstand the product?  I thought i could create a PDF similar to excel or word file or do i have to create there and convert to PDF? I bought the pack for $89.PDF Pack!

    I want to create a Pdf file - do i misunderstand the product?  I thought i could create a PDF similar to excel or word file or do i have to create there and convert to PDF? I bought the pack for $89.PDF Pack!

    Hi Brian,
    You can create it in Word or excel and then you can Convert it into .pdf Format
    Here's a feature list that depicts benefits of PDF pack: Convert Word to PDF, Convert PDF to Word & Merge PDFs | Adobe PDF Pack
    Please revert back if you have any other questions or need any help.
    Regards,
    Rahul

  • With Adobe Illustrator I may open doc documents(word) and convert to pdf

    With Adobe Illustrator I may open doc documents(word) and convert to pdf ?

    Ise,
    You can, although (maybe) only the first page of the .doc; this may depend on the Illy version.

  • Will buzzword allow to upload word template, edit and convert to PDF.

    Hi,
    we have a module in our project where we need to Upload a word template - Edit the template - and save the changes - and attach exisitng uploaded files (for e.g. Word, excel and pdf file) and convert the word template along with the attached file into single PDF.
    So is this possible?
    Can any one help me in this?
    Is there any free download?

    Hello,
    Buzzword is an online word processor that will absolutely allow you to upload a word .doc, edit it in Buzzword format, then export as a PDF. The one part that you can't do with Acrobat.com is to merge files - so you'd either need to merge the word .docs first and then upload, or use Adobe Acrobat desktop software if you need to merge PDF files. There is nothing to download as this is an online tool. Basic accounts are free - you can sign up at www.acrobat.com.
    Please let me know if you have additional questions or concerns.
    Kind Regards,
    Michelle

  • Read a Word/Excel doc and convert to PDF

    Can any one suggest a way or source to read a word/excel document and convert it to an PDF.. using Java
    Thanks,
    Satya

    Parse the Excel document with the Apache POI API and generate a PDF document with the Apache FOP API.

  • Read word/excel doc and convert to pdf

    Can any one suggest a way or source to read a word/excel document and convert it to an PDF.. using Java

    Parse the Excel document with the Apache POI API and generate a PDF document with the Apache FOP API.

  • Printing and converting to pdf

    Hi,
    any ideas how should I do following tasks? I have a chart which I need to print or convert into pdf. Following code does the basics and now I need some advices.
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.SwingUtilities;
    import javax.swing.JPopupMenu;
    import javax.swing.JMenuItem;
    public class MyChart extends Frame  {
         final Draw panel;
         public MyChart(){     
              addWindowListener(new WindowAdapter()     {     
                   public void windowClosing(WindowEvent ev)           
                   dispose();               
                   System.exit(0);
              setBounds(1,1,670,450);     
              panel = new Draw();     
              add(panel);          
              setVisible(true);
              MouseListener ml = new MouseAdapter() {
                public void mousePressed(MouseEvent e) {
                   if (SwingUtilities.isRightMouseButton(e)) {
                     Point p = e.getPoint();
                     System.out.println("Mouse pressed");
                }//mousePressed
                public void mouseReleased(MouseEvent e) {
                  if (SwingUtilities.isRightMouseButton(e)) {
                        Point p = e.getPoint();
                        MyPopupMenu jPopupMenu1 = new MyPopupMenu();
                        jPopupMenu1.show(panel, p.x, p.y);
                        System.out.println("Mouse released");
                }//mouseReleased
              };//mouseListener
              panel.addMouseListener(ml);
         public class Draw extends Panel{     
              int xt[] = {1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1};     
              int yv[] = {40,15,30,90,105,128,120,98,199,250,269,203,90,210,200,145};          
              int sx = 40;     
              int sy = 30;     
              public Draw(){     
                   super();     
                   setBackground(Color.pink);
              public void paint(Graphics g){      
                   g.setColor(Color.white);     
                   for (int i=0; i < 21; i++)     {          
                        g.setColor(Color.white);          
                        g.drawLine(i*30+sx,sy,i*30+sx,sy*10);          
                        g.setColor(Color.blue);          
                        g.drawString(""+i*30,i*sy+sy+2,30*10+30/2);     
                   for (int i=0; i < 10; i++)     {          
                        g.setColor(Color.lightGray);          
                        g.drawLine(sx,i*30+sy,20*30+sx,i*30+sy);          
                        g.setColor(Color.blue);          
                        g.drawString(""+i*30,10,i*sy+sy+2);     
                   g.setColor(Color.black);     
                   for (int i=0; i < xt.length-1; i++)     {          
                        if (xt[ i ] == 1)          
                             g.drawLine(i*30+sx,yv[ i ]+sy,(i+1)*30+sx,yv[ i+1 ]+sy);     
              public void update(Graphics g){     
                   paint(g);
         public class MyPopupMenu extends JPopupMenu {
              JMenuItem menuItem, menuItem2;
              public MyPopupMenu() {
                        menuItem = new JMenuItem("Print chart");
                        menuItem.addActionListener(new ActionListener() {
                          public void actionPerformed(ActionEvent e) {
                            System.out.println("Printing...");
                        menuItem2 = new JMenuItem("Convert to pdf");
                        menuItem2.addActionListener(new ActionListener() {
                          public void actionPerformed(ActionEvent e) {
                            System.out.println("Converting...");
                        add(menuItem);
                        add(menuItem2);
         public static void main(String[] args ) {     
              new MyChart();
    }

    I wrote a document a while back describing how to use JFreeChart and iText to generate charts in PDF format. You can download it from the JFreeChart project page on SourceForge:
    http://sourceforge.net/projects/jfreechart
    Look in the 'Files' section under 'Documentation' for a file called 'jfreechart2pdf-v2.pdf'. It should give you some pointers.
    Regards,
    Dave Gilbert
    JFreeChart Project Leader

  • Download and convert to pdf

    I am attempting to convert a file to a pdf file. It has been sitting on my screen as an upload but has not completing the action. What do I do?

    HI,
    Please try to use another browser if you are using CreatePDF web ui(https://createpdf.acrobat.com/signin.html). If you are using Adobe Reader X or XI then restart Reader then try it again.
    Or try the other way as follows:
    Using Web UI
    Log into https://createpdf.acrobat.com/signin.html with your Adobe ID and password
    Select “Convert to PDF”
    Click “Select Files” button then choose your file
    Click “Download” button in the progress bar after completion of the process to download the PDF file to your computer.
    Using Adobe Reader:
    Launch Adobe Reader X or Reader XI
    Select “Tools” and click “Sign In” link to sign in with your Adobe ID and password
    Select “Create PDF” then click “Select File” button
    Click “Convert” after select your file
    Click “Download Converted File” to download the PDF file to your computer.
    Click “Download Converted File” link to download the file to your computer after the process is completed.
    thank you.
    Hisami

  • Weird Print problems and conversion to PDF problems...

    I edited a logo in Illustrator for a hat using spot colors. 3 colors total. I saved as illustrator and then placed in InDesign for sizing. I printed it and some of the color didnt show up. So I figured it was the spot colors screwing with our printer. I printed again, but this time, in the ink manager of the print dialogue, I converted all spots to process. That substantially changed the colors in the image. I saved to PDF and then opened in Photoshop, and I get missing color plus changed color. Whats up? Looks great on screen when in Illustrator, and placed in InDesign.. but when It prints or is converted to PDF and opened in Photoshop, it goes to hell.
    All Creative Suite 2 files on a Mac

    Yep.. it's an overprint issue. When I open the PDF, the overprint version is all screwed up... and over print preview OFF looks fine.
    Why is overprint doing anything? I dont intentionally do anything with overprint..I dont really know what overprint is, let alone want anything to do with overprint. I want whats on screen to print...
    Chris

  • Automator keeping JPG keyword tags and converting to PDF?

    I scanned a bunch of documents and put them into iPhoto and meticulously tagged them.
    Now I've decided I'd rather have them as PDFs so I can run OCR on them)
    I do not want to lose my keywords.
    I can export the images from iPhoto and preserve the keywords
    the problem is... whether I use Acrobat Pro or Preview, there's no way to convert the JPGs to PDF and keep that embedded metadata.
    How can I export from iPhoto and get my keywords put into the file's spotlight comments?
    Some way with Automator?

    A solution is now available thanks to me. I wrote the author of the Photoshop CS3 Automator Action Pack and upon my suggestion he has added a new Copy IPTC data to Spotlight Comments action.
    Now you can use Photoshop and Automator to convert iPhoto exported JPGs with Keywords embedded in the IPTC field to PDF's with Spotlight comments.

  • Insert HTML and export to PDF problem (ID CS6)

    Greetings,
    A new feature in Indesign CS6 is to insert HTML snippets in an Indesign document via the Object > Insert HTML option.
    This will insert a frame in the page containing the rendered HTML content.
    There are several issues that I have encountered using this feature in Indesign CS6. Can anyone advise if these are bugs/ux issues and provide any alternatives/solutions.
    1) After inserting any HTML content (even the default "This is an HTML snippet"), when I try to export to PDF format (Interactive or Print), the  HTML content or rather its frame container is rendered in black. I've noticed that the HTML content is exported as a image so all I get are black rectangles.
    There is no problem when I try to export to HTML format.
    2) There seems to be a paste size limit in the Insert HTML text area/field as I can only paste 16566 characters of HTML code. (Haven't checked yet if the limit is in characters or tags or newlines).
    3) How can you set such that the HTML object frame will span multiple pages for cases where the HTML content is larger than the height of the page? Since it is not a text frame, I can't find a threading feature or a possible workaround. Or is the "Insert HTML" feature not really applicable for PDF export workflows but only for epubs?
    Thanks

    Oh ok. I guess direct HTML import is still not possible in ID CS6 (either import as XML or convert to DOC/RTF) for PDF export.
    Thanks

  • Fax the output type and convert to PDF and then to save in UNIX Directory

    Hi,
      I wan to Fax the my sales order acknowldement and at the same time I want to convert that output into PDF and save in the UNIX Directory .
    I also need the code for faxing the sales order acknowledgement.
    Thanks in Advance
    Moderator message: please search for available information/documentation before asking, also see Brad's remarks below.
    Edited by: Thomas Zloch on Dec 20, 2010 9:51 PM

    These are standard processes which are covered in the help files and have been discussed many times here.  This is NOT a training forum for newbies where experts just give you the solution for your requirement.  Once you have proven that you've actually made an effort to solve the issue yourself and have a SPECIFIC technical question, you'll get some help...

  • Indesign CS4/CS3 and Export to PDF problems

    Hello,
    I have been having problems with both Indesign CS3 and CS4 and exporting large documents to a PDF-file. Exporting halts with error messages like: "Failed to Export the PDF file" in CS4 or "Error encountered while reading JPEG image" in CS3.
    Problem can be corrected by simply closing InDesign and restarting it and opening the same file again. It appears that problem occurs more often the file is large. Any suggestions how to fix this problem?
    I'm using Vista 64-bit and have 8GB memory.

    Handling of missing links HAS changed, and in my opinion for the worse, but at the request of users, so that missing links no longer open the Links panel automatically or ask you to update on opening as they used to, though you should still receive a warning that the links are missing UNLESS YOU HAVE TURNED IT OFF IN YOUR PREFERENCES. It's on by default and you will find the option under the file handling section.
    The rationale is that many workflows do not require that links be intact to accomplish the current editing, and longer documents with hundreds of missing links used to take many minutes to open while ID searched, essentially costing those users lots of money.
    IF you have stored the links in the same directory as the .indd file, and IF you have moved the entire directory and IF you have enabled finding missing links when opening files, InDesign will find and update the locations for the links when the file is opened. If ID is unable to locate a link, because it is not in the current directory or a subfolder, you will see a warning message (in the past you would have had the option to browse for the missing files), and you must open the links panel if you wish to fix them manually.
    In my opinion this is a very acceptable situation, and a great benefit to all types of workflows. I need to know links are modified or missing, so I've left that enabled. Those who don't need to know are no longer bothered or delayed. I suggest you pay a visit to the preferences and make sure that missing/modified checks are enabled, and if you are still having problems then your links aren't stored in the same directory, and that has always been an issue in ID when things get moved.

  • Losing pdf data after closing and reopening the pdf problem

    i have a problem with a pdf file i did with livecycle , which is when i fill the tables into the pdf opened in acrobat professional and save the file then reopen the file again i found some tables lose the data i have inserted before closing although there is other tables did not lose the data , and i tried to compare between tow tables one dont lose the data ana the other one lose it but i found no differences and the have the same properties . so please any one know what solves this problem replay me .

    Such a behavior indicates that you keep the cookie(s) that verify that you are logged on to a web server.
    Are you using session restore to open those tabs automatically?
    * Tools > Options > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"
    You can set the <b>browser.sessionstore.privacy_level</b> pref to 2 (never) or 1 (non-HTTPS, default in Firefox 3 versions) on the <b>about:config</b> page to disable saving cookies via session restore.
    You can change the browser.sessionstore.privacy_level_deferred pref that is used when you do not reopen the previous session automatically via "Show my windows and tabs from last time".
    * http://kb.mozillazine.org/browser.sessionstore.privacy_level
    *http://kb.mozillazine.org/about:config

Maybe you are looking for

  • Report or Query for analysing Changes made in a Purchase Order

    Hi All, Item changes to a PO can be seen easily by using Environment-->Item Changes. Is there a way to use this as a query or report so it is possible to search many PO's at the same time to find the date of a specific change. For example, delivery d

  • Booting a B&W via PCI Firewire?

    I know the B&W won't boot from the on board Firewire, but can it boot from a PCI Firewire card? I know the Beige can't but can the B&W? Rick

  • Skype audio call to a mobile - data usage

    I wondered how much data is used per minute or per hour if I use the Skype client to make an audio call to a mobile. I see people saying 2Gb/hr for video but what about audio calls? Thanks.

  • Tools Menu not displaying Scripts

    I found and posted to another thread about this, but am not getting any responses - I'm hoping a fresh topic will bring me some help. I just found out about creating an InDesign contact sheet from within Bridge, and wanted to try it out, and that's w

  • Is it possible to get data from N80 when screen br...

    Hi guys I have pictures and data on my on my old Nokia N80 that i cant get to, there on the phone not the card The big problem I have is the screen is broken and so are all the nav buttons on the front of the phone, so all I have is the keypad workin