How can I create a PDF that conforms to PDFX/1-a:2001 form Pages

I have a 358 page B&W document created in PAGES - I need to submit this to the printers (Lightning Source) as a PDFX/1-a:2001. I have Adobe Acrobat Professional and Distiller. However, pdfs created by PAGES cannot be converted by Acrobat into PDFX/1-a:2001 (at least I haven't been able to figure out how to!). The solution proposed by Lightning Source is to:
print to a Postscript file first, then process the PostScript file using Adobe Acrobat Distiller Professional Version 6 or newer.
This allows you to produce a PDF that is of optimal compliance with our printing process (PDFX/1-a:2001 recommended)
The problem is that when PAGES creates the Postscript file it doesn't retain the correct sizing - it shifts it from 216x140mm to Letter size (the original document shifts to the lower-left corner surrounded by blank page). This size change continues when Distiller creates the PDFX/1-a:2001 so their solution doesn't work.
Anyone who has actually achieved this or with suggestions - all advice gratefully received!

Peter, thank you for your suggestions - I was a bit daunted by the colorsync filters, etc., however, after much searching I've put together an apparent solution. I'll find out if it works in a few days when Lightning Source get back to me:
Creating a Lightning Source pdf from a Pages document
Here is a walkthrough of the process I go through to create PDF in the format Lightning Source requires for B&W inner text - PDFX/1-a:2001. You need PAGES, ACROBAT DISTILLER and ACROBAT PROFESSIONAL.
In PRINT dialog go to the PDF button and select SAVE AS POSTSCRIPT.
Open this Postscript file in Distiller, it should save it as PDFX/1-a:2001.
If the page size is incorrect go to the following instructions.
Your pdf should be ready now to go to LS.
IF THE PAGE SIZE HAS BEEN MODIFIED
This was my major challenge as OS X’s export to Postscript seems to modify the file to A4 or Letter size. You need the following Applescript (thanks to Gregory Ledger for this essential tool):
http://macproductionartist.wordpress.com/2009/04/01/really-cropping-pages-in-acr obat/)
tell application "Adobe Acrobat Pro"
tell active doc
repeat with i from 1 to count of pages
tell page i
set cbox to crop box
set media box to cbox
end tell
end repeat
end tell
end tell
With your new pdf opened in Acrobat Professional use the DOCUMENT: CROP PAGES dialog box.
Set the margins of the Crop Box to the required dimensions.
Keep the pdf open in Acrobat Pro.
Now run the APPLESCRIPT above - this modifies the pdf so that the page size is modified to match the new crop size.
Save your pdf and this should now be ready for use at LS.
Gregory Ledger also recommends exporting the cropped pdf to Postscript and then running this through Distiller again to ensure any artefacts are removed.
Thanks again for your time and suggestions, Richard

Similar Messages

  • How can I create a pdf that displays three pages in a one page pdf?

    I wasn't sure where to post this question since it involves different products, but maybe someone here has a solution...
    I design three-panel product displays and it sure would be nice if I could present them in a pdf (I use Acrobat Pro 9) that shows all three panels side-by-side in a single page. I've been using ID CS4 for the individual panel layouts for the vendor then making a pdf for client review, with each panel on a separate page, however more than one client has requested a three-up electronic presentation. I could create all three as one page in ID then export to pdf, yet that seems kind of redundant and I'm trying to streamline this process as much as possible. Any ideas?

    sureicandothat.com wrote:
     I could create all three as one page in ID then export to pdf, yet that seems kind of redundant and I'm trying to streamline this process as much as possible. Any ideas?
    I do that a lot. It's the easiest way that I know of. Just create a new page that will fit all threee panels, use File>Place to place the panels, export as a PDF.

  • How can i create a pdf file from Indesing, whit out loosing resolution...

    How can i create a pdf file from Indesing, whit out loosing resolution...
    in linked images (bitmap) idon´t know where or how can i keep the same resolution "image" that is from the original file ......

    In the export settings there is a panel called Compression. You can set downsampling and compression, or lack thereof, there.

  • How can I create a pdf-report in a database trigger

    Hi,
    how can I create a pdf-file with Reports 9i in a database trigger ?
    Where can I find informations about it?
    Thanks
    Friedhold

    Here would be the place to start.
    If you have existing reports to call, take a look at the JRC

  • How can I create a slideshow that depicts only a version of a photo rather than the original? Since the original and new versions are saved together, the aperture slideshow often choices the original rather than the desired version to display/

    How can I create a slideshow that depicts only a version of a photo rather than the original?   Since the original and new versions are saved together, the aperture slideshow often choices the original rather than the desired version to display.

    There are two things we use the name "Slideshow" for in Aperture:  a Slideshow Album, used for making Slideshows, and the Slideshow that is made.  (Imho, it is a design mistake to not call the containers used to create Slideshows, Books, etc., "Albums".)
    The Slideshow will use the Album Pick from any Stack.  A good way to use Aperture is to promote the Image you want to regularly use (such as, for example, a Version with adjustments) to the top of the Stack.  This makes it the Stack Pick, and will be the default Album Pick.  If you haven't done that, you can still change the Album Pick for any Stack in a Slideshow Album.  Expand your Stack(s), select the Image in each Stack that you want to be the Album Pick (and thus shown in the Slideshow), and "Stacks➞Set Album Pick".  (Note the keyboard shortcut; there is also a Toolbar icon for this.)  The change is immediate.  The Slideshow will always show the Album Pick (or, if there is not one, the Stack Pick) for every Stack in your Slideshow Album.

  • In DPS/Indesign for iPad - How can i create a button that once tapped, will pre-populate an email?

    In DPS/Indesign for iPad - How can i create a button that once tapped, will pre-populate an email? like when you tap a recipe in Marth Stewart Every Day Food for example....

    http://forums.adobe.com/message/4190932

  • How can I create a custom feature, which will automatically take a custom master page while creating a site ?

    Hello ,
    I am new in Sharepoint development . I am trying to create a Sharepoint feature to Activate master page automatically while creating the site .Below mentioned code I am using to do this . 
    But When I am creating any site under site collection .It is not applying automatically . I have to manually Activate that feature . 
    SPSite site = properties.Feature.Parent as SPSite;
    SPWeb rootWeb = site.RootWeb;
    Uri masterUri = new Uri(rootWeb.Url + "/_catalogs/masterpage/mycustom.master");
    rootWeb.MasterUrl = masterUri.AbsolutePath;
    rootWeb.CustomMasterUrl = masterUri.AbsolutePath;
    rootWeb.Update();
    How Can I create a feature that can activate the master page at same time of site creation under Site collection ,Without any manual work .. 
    Thanks in Advance .. 

    Hi,
    You can associate master page during feature activation as follows:
    http://social.technet.microsoft.com/wiki/contents/articles/19933.sharepoint-2010-set-a-custom-master-page-during-feature-activation.aspx
    Then, you can use feature stapling to apply automatically on site creation:
    http://blogs.msdn.com/b/kunal_mukherjee/archive/2011/01/11/feature-stapling-in-sharepoint-2010.aspx
    Thanks,
    Avni Bhatt

  • Can you create a template that has a header and footer to forms?

    Can you create a template that has a header and footer to forms?

    Yes but how are they going to create the Landscape versions?
    The problem with doing it in Pages '09 as rotated content is that the Headers and Footers are not rotated and there is inherent clumsiness in the rotated content usually being too large for the page when viewed at 90°.
    Best to make it in two or more separate documents.
    Peter

  • How can I make a PDF file from each folders with layers, where each page is a each folder?

    How can I make a PDF file from each folders with layers, where each page is a each folder?

    I found an answer to my own question. A work around of sorts.
    Download Photoshop Elements 6 for Macintosh. With PSE6 I made a slide show with 550 images 1920x1200, without thumbs. I ran into one problem making the slide show. My images contained 4 images which had not ben created by Photoshop and could not be included in the slide show. Opening the images in Photoshop CS4 and re-saving them still did not make then acceptable. Not a big deal. I probably could have fixed the four images by stripping all EXIF data before opening them in Photoshop. BTW, PSE6 made the slide show in demo mode.
    I hope the bug in Photoshop CS4 will be fixed in Photoshop CS5.

  • How can I create an icon that when clicked will open and maximize an image file?

    How do I create a icon that when clicked will open and maximize an image file?  I have tried to use the simple image widget with maximize upon tap/click - however I am can only size the image really small and put on the page.  I'd prefer to have a graphic that when clicked it simply opens up the image.  This is for a very simple question/answer book.   The user is suppose to look at a picture and locate something.  I want to put an 'Answer' graphic on the image and then the user can click the 'answer' graphic and it will open up the picture with the answer identified. 
    Is this possible?

    Have yiu tried the PopOver widget?  You can drop an image into it, maximise the image and the widgets window...But, you cannot get it full screen.
    With iBooks Author, you either learn to use what is available within the app, or look online for third party widgets to purchase which suit your project.

  • How can I create a pdf file from an existing word file?

    I have a valid account on adobe but I can´t create a pdf.... What should I do?

    In Adobe Acrobat use the menu File > Create > ...

  • How do you create a PDF that shows up on the opening of an e-mail

    I use to be abel to create a PDF that I could drag onto the desktop of an email and it would show up as part of the e-mail when opened as well as an attatchement. Is there an actual procedure for creating one or is it random?  Sometimes it works sometimes it doesn't?

    Yakandhurl wrote:
    I use to be abel to create a PDF that I could drag onto the desktop of an email and it would show up as part of the e-mail when opened as well as an attatchement. Is there an actual procedure for creating one or is it random?  Sometimes it works sometimes it doesn't?
    There is no procedure. Whether it shows up or not is purely dependent on the receivers email application and their preferences.
    As always, I suggest if you want to do something like that, you should create an HTML email. There's a bit more control although it isn't foolproof either.

  • How can I create a PDF with flowing columns?

    I need to write a script that takes my input data and creates a PDF file that has flowing columns - that is to say, where I give it a long chunk of text and that text is automatically broken into two columns where the text flows down column 1 and when it hits the bottom of the page it starts filling up column 2.  I've been playing with enscript and pstopdf and they can do that, the problem is that I also need some sections of the PDF that aren't in 2 columns.
    I can probably explain this better with an example - assume my long chunk of text is the alphabet, I need my PDF to look like this:
    [Page 1]
    Header 1
    Header 2
    Header 3
    A   E 
    B   F
    C   G
    D   H
    [Page 2]
    I    K
    J   L
    Header 4
    Header 5
    M   N
    [Page 3]
    O   R
    P   S
    Q   T
    I tried generating an HTML file and converting the HTML to PDF inside Safari, but while the HTML looks good, WebKit drops the ball and forgets about the columns when converting to PDF.
    Is there a way to create the document in sections and then somehow combine them into one final document?
    Thanks,
    Chris

    I see I forgot some important points, sorry ...
    This needs to be part of an automated process, the data will be different each time which makes it difficult to calculate how much will fit in a given column on a specific page.
    The machine doing the processing does not have Microsoft Office on it, but I could install Open Office for sure and possibly Pages, although I don't know their scripting languages so I'm not sure whether that would take more time than I have ...
    Thanks,
    Chris

  • How do I create a PDF that works like an Excel Spreadsheet?

    How do I create a fillable PDF that can total numbers like an Excel Spreadsheet? Need to find out how A.S.A.P.!!!!

    Hi,
    Sorry, FormsCentral doesn't support calculation of forms fields. Vote for existing popular Ideas or submit your own using this FormsCentral form: https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

  • How can I create a PDF catalog direct from my website?

    I need to be able to easily create a PDF catalog/brochure direct from my website. Can I use the .xml file that I use for the Google Merchant Centre feed to create a catologue as this would seem to be a quick and easy solution. We have 1200 products so creating a PDF catalog from scratch will take a lot of time and effort.

    This forum is only to discuss how the forums operate, not products
    If you go to the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for an Adobe product to use
    You might check the Acrobat forum

Maybe you are looking for

  • How to Integrate HCM Process with Webdynpro ABAP Application

    hi, I have issue regarding how to integrate HCM Process with Webdynpro abap application. I had created one HCM process for transfer using Hrasr_dt T code and also created form scenario and work flow. How to Integrate HCM Process with Webdynpro ABAP A

  • Reading System out stream ?

    Hi, I don't know whether I am asking a stupid question or not . But my problem is that in my thousand lines of code i wrote number of System.out.println(".....") statements to describe various situations / state of program which write those strings o

  • Using arcsine function on WebI reports

    Hi All, I could not find the arcsine function to be included in the WebI report. Is there a way I can enforce WebI to return arcsine values. Can I create a formula? Please suggest. Regards, Faisal Vakil Edited by: Faisal Vakil on Nov 5, 2010 11:12 PM

  • Link to Installation Doc

    I have the document "Oracle Workflow - Installation Notes for Oracle Database, Release 2.6.3, February 2004, Part No. B12169-01" as a hard copy. Would it be possible for someone to provide the link to this document? I didn't find it in my documentati

  • After boot drive replacement questions

    My boot drive, on which the Lightroom 5 software was located, failed and I just got the boot drive replaced and downloaded Lightroom 5.  Fortunately my Lightroom 5 Catalog Previews, Catalog Preview.Irdata and all important Lightroom Library were loca