'Cropping' complex imported PDF's

Greetigns,
We use Illustrator 10 to import and manipulate complex PDF drawings. I find that I sometimes need to have just a small part of a drawing. Unfortunately, there are enough lines that adding anchor points and deleting lines and the like is a tedious, time-consuming task.
I usually endup using the Direct Select tool to draw a box around the area of interest, then Select > Inverse and delete everything not highlighted. Then I begin the process of shortening all lines that extended from within the selected area. It's a good, effective work-around, but I still have to make a lot of individual changes.
I can use the Add Anchor tool to highlight and delete the portions I don't want, but that's still a tedious process.
Is there a way to carve out a square, like I do with the Direct Select tool, but have the items that cross the line be cut there?
I tried using a cropping method I found online, but it turns out that cropping a huge bunch of disconnected, not filled, not overlapped, paths just deletes everything.
Soooo...  if I'm importing line drawing pdfs and need to crop out portions, is there a way that doesn't require me to either shorten or anchor/delete portions of lines that extend outside my area of interest?
thanks,
Solon

Jacob,
I understand fully about the late night, I've done much worse.
Speaking of much worse...
It works on all the old files that I inherited as .ai or .eps, but no matter what I do, if I open a PDF file in Illustrator, I still get those overhanging lines when I try what you suggested.
I tried doing it with the items in PDF format, then in AI, then in EPS (Which made them HUGE files.. and had a clipping mask on EVERY SINGLE path).
I've scoured the settings of the old files (saved as .ai and .eps) and don't have a way of contacting the person who made them.
Since I was having success with one type of file and not with the other, I tried:
1. Copy/pasting the successful drawing into the unsuccessful file: it worked.
2. Copy/pasting the unsuccessful drawing into the successful file: it failed.
I've tried opening the PDFs in Illustrator, then saving them as .ai or .eps. I've tried opening them in Acrobat and using File > Save As... and choosing .ai or .eps.
The fact that I can make an older drawing work in the new file and a new drawing fail in an old file tells me that there's got to be something about the line drawing itself, the individual paths, that makes this work for the old information, but not the new.
Unfortunately, beyond stroke and color, i don't see anything for determining 'path properties' that might account for this.
If you have any ideas for 'path troubleshooting', I'd love to hear them. As it sits now, I'm back to doing what I was before: Highlight, Select > Inverse, Delete, Clean Up.
:: sigh ::
Solon

Similar Messages

  • Can I change default crop options when importing PDFs?

    When importing PDFs into Photoshop CS3, the default cropping is Bounding Box. I change the popup to Media Box, but it reverts when I quit Photoshop. Is there a way to make Media Box the default?

    I tried it and a Scripted opening of a pdf doesn’t seem to have any bearing on the dialog’s settings.
    If You open with the same settings usually it might be possible to create a Script that opens pdfs with those settings right away – one would have to trade the comparative convenience of dragging the pdf on the psd-symbol and hitting OK for an open-dialog though, I guess.

  • Sharing an imported PDF via a link

    I uploaded/imported an AcroForm to my FormCentral (FC) account, added the submit button in FC and now I'd like to share a link to the file for users to access the form, vs me having to send them a the Submission-Enabled PDF version that I downloaded.
    I thought there was a way to share the PDF via a link, however, the "copy fillable form link" button is greyed out. My understanding is that the form that I uploaded to my FC account is hosted on the Adobe server, so why can't I generate a link that I can have others point to - to access the form?  Or is the option to share direct links to the form ONLY for Web/HTML forms created within FC?
    Please advise.

    Hi; 
    The Import AcroForm feature allows you to use a form you have already authored, not requiring you to re-author in FormsCentral, to collect your data in FormsCentral and access features like Submission Reciepts, Notifications and the reporting available allowing you to share access to the responses etc.  The Imported PDF does not create an HTML fillable form and does not provide any URL to the form.
    You can host your form on a website and create a link to download the PDF from there rather than attaching the PDF to email, but there is no URL provided by FormsCentral.  How complex is your form?  Could you re-create it using our authoring?
    Thanks,
    Josh

  • How can I auto export a PDF File using the "Smallest File Size" preset and set the Exported File Name based on information from an Imported PDF?

    Greetings all,
    I am trying to create a script to automate a PDF export process for my company for inDesign. I’m fairly new to inDesign itself and have no previous experience with javascript, although I did take C++ in high school and have found it helpful in putting this code together.
    We have an inDesign template file and then use the Multi-page PDF importer script to import PDF files. We then have to export two version of each file that we import, then delete the imported file and all of the pages to reset the template. This has to be done for nearly 1000 pdf files each month and is quite tedious. I’m working on automating the process as much as possible. I’ve managed to piece together code that will cleanup the file much quicker and am now trying to automate the PDF exports themselves.
    The files are sent to us as “TRUGLY#####_Client” and need to be exported as “POP#####_Client_Date-Range_North/South.pdf”
    For example, TRUGLY12345_Client needs to be exported as POP12345_Client_Mar01-Mar31_North and POP12345_Client_Mar01-Mar31_South.
    There are two templates built into the template file for the north and south file that are toggled easily via layer visibility switches. I need to get a code that can ideally read the #s from the imported Trugly file as well as the Client and input those into variables to use when exporting. The date range is found in the same place in the top right of each pdf file. I am not sure if this can be read somehow or if it will have to be input manually. I can put North or South into the file name based on which template layer is visible.
    I am not sure how to go about doing this. I did find the following code for exporting to PDF with preset but it requires me to select a preset and then type the full file name. How can I set it to automatically use the “Smallest File Size” preset without prompting me to choose and then automatically input some or preferably all of the file name automatically? (If the entire filename is possible then I don’t even want a prompt to appear so it will be fully automated!)
    PDF Export Code (Originally from here: Simple PDF Export with Preset selection | IndiSnip [InDesign® Snippets]):
    var myPresets = app.pdfExportPresets.everyItem().name;
    myPresets.unshift("- Select Preset -");
    var myWin = new Window('dialog', 'PDF Export Presets');
    myWin.orientation = 'row';
    with(myWin){
        myWin.sText = add('statictext', undefined, 'Select PDF Export preset:');
        myWin.myPDFExport = add('dropdownlist',undefined,undefined,{items:myPresets});
        myWin.myPDFExport.selection = 0;
        myWin.btnOK = add('button', undefined, 'OK');
    myWin.center();
    var myWindow = myWin.show();
    if(myWindow == true && myWin.myPDFExport.selection.index != 0){
        var myPreset = app.pdfExportPresets.item(String(myWin.myPDFExport.selection));
        myFile = File(File.saveDialog("Save file with preset: " + myPreset.name,"PDF files: *.pdf"));
        if(myFile != null){
            app.activeDocument.exportFile(ExportFormat.PDF_TYPE, myFile, false, myPreset);
        }else{
            alert("No File selected");
    }else{
        alert("No PDF Preset selected");
    So far my code does the following:
    1) Runs the Multi-Page PDF Import Script
    2) Runs PDF Export Script Above
    3) Toggles the Template
    4) Runs #2 Again
    5) Deletes the imported PDF and all pages and toggles template again.
    It’s close and much better than the original process which was almost 100% manual but I’d like to remove the Preset prompt from the PDF script and have it automatically select the “Smallest File Size” preset. and then if there’s a way to have it auto-fill in the file name so no user input is required at all other than selecting each file to import. (If there’s a way to setup a batch action for the multi-import script that would be even better!)
    Thanks in advance and if there’s anything else I can provide that would help please let me know! Even a nudge in the right direction will be a big help!

    If you hold down the option key, it will typically show the location. Or you can often hit option-return on the file and it will reveal the file in the Finder, instead of opening it.
    Final option is to open it, and just option-click the filename in the toolbar of Preview and it should show you the location.
    It's probably an attachment to an email you've received. If you have Mail set to cache emails and their attachments it'll be stashed in a subdirectory of ~/Library/Mail. Which is fine.

  • How do you change the quality of imported PDFs?

    I have been creating fillable forms in LiveCycle ES2, using my companies existing PDFs, importing them as fixed images, and adding form elements on top. When I have been looking back at what LiveCycle is producing in terms of quality, versus the PDFs I initially import in Acrobat, the quality is substantially worse in LiveCycle, and any PDFs that I import into and save from LiveCycle look to be a much lower quality. The images of our forms I am importing into Acrobat are 250dpi, 8.5x11. They look crisp and clean in Acrobat. When they are imported, the text looks more grainy when zoomed in, and the logos have jagged edges. I read that LiveCycle, by default, imports PDFs as a medium quality JPG. First, is there any way around this? I can't find an option anywhere to change the quality. If not, is there a workaround that would allow me to accomplish my goals?
    I created a new, blank form in LiveCycle, added an image, and set it as the image of my PDF form. The quality is significantly better, however, the hierarchy is substantially different than when importing a fixed PDF, and I will lose my OCR recognized text from my original PDF.

    Kyle,
    Thanks for your response. To be clear, the way I am importing the PDF is by going to New in LiveCycle, and selecting Import a PDF document, and selecting Create and Interactive Form with Fixed Pages.
    I cannot change the forms or pages, as they are created by our local Board. In otherwords, I have tryed used the flowable content, and upon import, not only are the fonts slightly different, but all the important artwork (trade-related) is gone, and is not in the exact positions it was in. The forms must meet the standards to which they were approved by the regional board, and there are state-mandated forms as well.
    What surprises me is that you say this method of Fixed Content isn't used much any more. I would think that a lot of people would have PDF files they would wish to make into fillable, interactive forms without needing to reconstruct the entire document. Perhaps a company that has always done things on paper, and now wishes to use those exact same forms on the computer, with no deviations to looks so they can be printed and match up perfectly.
    I thought about using Acrobat's internal form creation system. However, some of these forms have sophisticated options and the calculation scripts and systems within LiveCycle are very useful. Not to mention that it has a much larger scalability, should we chose to utilize it.
    Any other suggestions? I am so confused why Adobe would force medium-quality import of a PDF, but be so incredibly flexible about every other option in their program.

  • PDF Reader for IPAD 2: how to import PDF files in the library

    I have installed the "PDF reader" app and it is a great one. but can't import pdf files that are already in my IPAD (I see them in iBooks)

    Documents associated with a specific app, such as iBooks, are not available to other apps on the iPad unless the app that they are associated with is capable of sending docs to be opened in another app, such as GoodReader is capable of doing. iOS is a much less open system than a computer OS like MAC OS  X or Windows, there is no central documents folder which various apps can browse to and open.

  • How to import pdf files in Premiere Elements 8

    Hello,
    I'd like to know if there's a way to import pdf files in premiere elements 8, becouse if I try to import it in "project" it gives me an error saying "this type of file is not supported".
    Thank you
    Sebastian

    Unfortunalty it's not working for me yet. If I try to import the PDF (single page)  into the project, the progress bar reach 100% but then says: "the file is not supported, or the required codec is not installed". I have Acrobat Reader 9.3 installed too.
    I've uploaded one of the PDF's that I want to use if you want to test it yourself:
    http://www.megaupload.com/?d=YB7NT4QR
    One of my coworkers says that I may need Adobe Bridge to do so, is that correct? Otherwise a simple "pdf to jpg" (or other image formats) could solve the problem.
    Thanks for your support.
    Sebastian

  • Cannot import PDF files into iPhoto 4.0.3

    Is it possible to import PDF files into iPhoto 4.0.3? I can't drag and drop them into iphoto folders without the "Unreadable Files" error. I have tried importing them through the iPhoto menu and still get the same results. I have tried importing the PDF files from several places such as my desktop because I wondered if the location of the original made a difference, but that doesn't seem to help. I didn't find anything when I searched for this problem here in the forum so I wondered if anyone else is having the same problems.
    Any help would be appreciated.
    Thanks,
    Morgan

    No because I had iPhoto 4 open and tried to run the Save PDF to iPhoto on a book in that library. I think it's just the different data structure, etc.. It's just not compatible with Automator or at least that particular workflow. I tried printing to PDF from V4 and then do the Save to iPhoto from Preview with V4 open and I still get the error message. So iPhoto 4 is just not compatible with that workflow.
    A workaround is to create a PDF file of the whole book and then manually save each page as a jpg file and import those. That's what I did for my first book. You could do a screen shot of each page in the preview mode and use those but the resolution will be limited to screen resolution, 72dip. You will get resolutions on the order of 150-200 dpi thru the Save As route in Preview or the Save to iPhoto automator method.
    I'm sure you could create an Automator workflow that would take the PDF file and save each page as a jpg file and name it sequentially. I'll have to take a closer look at Automator soon.

  • Is there a way to import PDF files?

    Hello
    I am using RoboHelp HTML Version 5.0.2 and I have encountered problems importing PDF files.  I have tried all the various options but they all loose the original format.  My PDF files can range from one to five pages.  Is there a way to import PDF files?

    Check the RoboHelp HTML's help. In the Index, type "import" and select the "PDF files" subentry from the "Importing" entry.
    Read the "Importing PDF files" topic; see also the link to "Tips for importing PDF files" in which one of the tips is:
    Why is my imported PDF file displaying incorrectly?
    PDF files can display certain font families that HTML cannot display. Consequently, in rare instances fonts contained in a PDF document may not convert correctly when imported into HTML.
    Good luck,
    Leon

  • How to import .pdf files into iBooks?

    How to import .pdf files into iBooks?

    Or send the file from your computer to your ipod by emailing yourself the pdf. Then if you open the Mail client and you open the pdf there is an option to select open in ibooks. It will save it to your device for remote viewing.

  • Imported PDF won't open because it has no forms to fill but it does

    imported PDF won't open because it has no forms to fill but it does

    Can you send the PDF form you are trying to import to [email protected] so we can take a look at it.
    Thanks,
    Randy

  • Help! How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?

    I am a new Indesign user and I have been working with GIMP for the last year creating single colour print-ready PDFs. But now I need to create a document with a FOGRA27 CMYK colour profile and a resolution of at least
    How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?
    I can import the PDF by creating a new document and finding the PDF in places, but it's bad quality.
    The only colour profile I can find under View - Proof Setup is FOGRA39, but I need FOGRA27!
    Help help help, I need to get these files printed in two days!
    Thanks so much..
    xx

    Proof Colors doesn't change the file's color management, it just lets you see what the color values would look like if they are printed unchanged on different output devices. If you want to actually convert the color from one CMYK space to another, it's probably better to do that in Acrobat—Tools>Print Production>Convert Colors.
    There's very little difference between Fogra27 and Fogra39—Fogra27 allows more total ink 350 vs. 330.
    There's nothing you can do to improve the quality of low res images

  • How to import pdf with hyperlink and and maintain its hyperlink while exporting it as HTML?

    We can import pdf in indesign either using plaacemultiplefile script or using place submenu  under file menu but both of them import pdf as graphic object and lost its all hyperlink. no doubt when i again export its as pdf than hyperlink are there as it is but when i export it as HTML,IDML or other format than than all hyperlink are lost so is there any way to maintain this if no than is there any way to write some new script utilities which will do the same .one solution i think is first convert pdf into docx and than import it as docx indesign import  it as text frame and maintain all hyperlink but in this process pdf file lost its some formating while converting it into docx .

    I probably should've remembered "rtfm" before writing all that.  It seems to me now that I need to create a Master Page for each of the different layouts, then dynamically select the one I want to use at run-time, maybe with a script event ?  The Master Page creation is a bit messy ... the only way I seem to be able to get multiple Master Pages is to open each Word doc, let Livecycle import it, then copy all the content into a new Master Page in my main document.  That is, there doesn't seem to be a way to import a series of Word docs directly into separate Master pages of a single Livecycle form.  I'll continue with the "read" part of "rtfm" ...

  • Problem with importing pdf as a backgroung image

          I have a requirement for importing a pdf/doc and map xml data and create a template. Generate a tiff image as the output using the template and mapped xml data. I am looking into your Adobe LiveCycle as one option. I am able to import the pdf but the layout of the pdf has been changed. According to our requirement the layout of the pdf should be the same as the imported pdf. Please, find the attached pdf for reference. Can you please provide me some assistance regarding evaluating this product.

    Try clicking the link below. On the page that appears, click the drop-down and choose the forum that appears to match the software you are using.
    Click here to view
    Best of luck to you in solving your issue... Rick

  • How to import pdf files to iPad

    Brand new to the iPad community!
    How do I "import" pdf files to the iPad, for use by pdf reader and/or annotation apps?
    I have some of the appropriate apps, but whenever I try to sync pdf files ("books"), I get a message that I need iBooks to read pdf files. And when I install iBooks, I see my pdf files but only in iBooks, not the other apps!?
    What am I doing wrong?

    Thanks all for helping with advice -- there's lots to learn moving from a PC laptop environment to a brand new iPad.  Even so, e-mailing yourself as a "file transfer" seems like merely a high-tech version of "sneaker-net", as well as a waste of ever-scarcer bandwidth! And DropBox is only an alternative for non-confidential stuff, the Patriot Act makes it's use (for that matter, even the use of e-mail or the cloud generally) nfg for anything confidential -- in my case, client financial & tax data. So I knew there HAD to be a non-wireless way to do it. So thanks, Fred!

Maybe you are looking for

  • Cannot open iPhoto after downloading yosemite

    After downloading Yosemite, I could not open iPhoto. OSX Yosemite 10.10 1. Click on iPhoto icon 2. pop-up opens stating "To open your library with this version of iPhoto, it first needs to be prepared". I click "Learn more". 3. Library Upgrader opens

  • Receiving javaw.exe error when Installing Oracle SOA Suite 10.1.3.1.0

    Hello, I am installing Oracle SOA suite for Windows 10.1.3.1.0 and when it reaches 12% complete I receive the following error: Error signature: App Name: javaw.exe AppVer: 0.0.0.0 ModName: easfa.dll ModVer: 6.0.0.7 Offset: 0001c799 error report shows

  • Problem converting Publisher 2007 files with PDFMaker

    Hi all I hope someone can help me. I am a technician at a large company and we recently upgraded a users PC to Vista Business (32 bit) from XP Pro. Since this was done, the user has a problem with Publisher files on Office 2007. When trying to conver

  • How to change color of iCal calendars??

    I'm transferring my calendars from my old G4 ical version 1.5.5 to my new imac ical version 3.0.2. I'm trying to change the colors the program assigned to my calendars. I'm a designer and we have kinda weird priorities but, my calendars LOOK horrible

  • [Anyconnect 3.0] "The VPN client driver has encountered an error"

    Hi, A computer get the following error when trying to connect: "The VPN client driver has encountered an error." In setupapi.log, we got this error: #-147 Loading class installer module for "Cisco AnyConnect VPN Virtual Miniport Adapter for Windows".