Need help getting ready for print

I am running Photoshop CS5 on a Mac 10.8.4.
I have basic photoshop experience. 
My designer has left me in the lurch at a daedline and I need to get some material to the printer ASAP.
The design is finished.
The printer wants all the text outlined and the images embedded then a "high quality PDF" submitted to print.
Please can someone tell me how to outline text and imbed images. (I know how to savw to PDF).
Any help would be greatly appreciated.
Thanks.

Select a Text Layer and invoke
Type > Convert to Shape
to make the text layer a layer with a vector mask.
As for embedding images if you create the pdf in Photoshop I don’t see the relevance of the request.
But the settings you choose for Compression and Output are relevant factors.
Which Color Space does the printer request? (And please don’t say CMYK …)
What is the Color Space and Color Mode of the file you work on?

Similar Messages

  • Getting ready for printing...

    I have a Canon G12 and shoot in RAW format. I know the native aspect ration for this camera in RAW is 4:3. I also know already that the two sizes of finished prints I am interested in are 8x10 and 16x20. After importing the images from my camera into my computer (and into Aperture), I can see that the pixel dimensions for my RAW images are 3648x2736 for portrait (and vice versa for landscape).
    After making whatever color correction and changes to the image, I am happy with what I have. So moving onto the crop and aspect ration and dpi settings - and then the export to have an altered and saved new image to send off for printing - this is where I feel totally lost.
    For example...the crop sizes listed, I see 4x5/8x10 - my understand is that these sizes...4x5, 8x10, 16x20 - they are all the exact same aspect ration - so no matter how big or small I want to print the image, as long as I want one of those sizes, it would be fine, correct?
    When I initially click on the 4x5/8x10 selection, it puts a small crop area in the center of the photo. But it allows me to drag the corners to enlarge the crop area, so I am curious to know...is the 4x5/8x10 crop area that initial smaller section, or is it still the same even if I click and drag ou the corners making it larger.
    Does anyone know also, how/where do I change the dpi to 300?
    And lastly, how do I know if I have enough pixels to make an 8x10 or a 16x20. I have RAW files and JPEGS - and they all vary in pixel dimension. Is there a simple process to figure out if what I see on the computer screen will look the same as a finished print?

    Excellent questions ... that cover a lot of ground.
    3648 / 2736 = 1.333333333.  The aspect ration is 4:3.
    Are you printing from Aperture or sending a file out to be printed?  If printing from Aperture, all you need to do is create a Version that is ready to print, and then print it.  Printing from Aperture is an export-and-print operation -- there is no need to export the file and save it.
    (This is worth understanding.  In Aperture, you make Images that are ready to be exported (or printed), but you don't create files (or prints) until you need them.)
    The aspect ratio has no units -- it is just a ratio.  It describes not the size of a rectangle, but the ratio of the sides of a rectangle.  4:3, 8:6, 1.33:1 are all identical aspect ratios.
    Once you have set the aspect ratio, you can set the size (and position) of your rectangular crop by dragging the crop box handles or the crop box itself.
    Generally speaking, you will want at least 150 pixels for each inch to be printed, and don't need more than 300.  150 ppi is a slightly impracticable minimum -- you will likely want to use some sophisticated up-rezing to get a stellar print.  200-250 ppi is enough.  300 ppi is plenty.  All of this is based on norms of printers, ink, papers, and display (distance, lighting) that may or may not fit your needs.
    For a 16" x 20" print that looks good at arm's length 3,200 x 4,000 pixels should suffice.
    Aperture includes soft-proofing.  You select a profile of the printer, paper, and the printing settings, and Aperture will apply this to your Image and show you what should be a match.  Soft-proofing is complicated.  At a minimum, you will need a high-quality monitor and hardware calibration.
    The User Manual covers much of this in detail particular to Aperture, including a section on Proofing.  Well worth reading.
    Message was edited by: Kirby Krieger

  • Need help getting images for blog aggregator

    I need help trying to grab images into a blog aggregator...
    Here is the code that gets the image.
    <!--- Get thumbnail, if exists --->
    <cfset content_to_parse = temp_description_full>
    <cfinclude template="module_get_images.cfm">
    <cfif IsArray(image_array) AND ArrayLen(image_array)>
    <cfloop from=1 to=#ArrayLen(image_array)# index="j">
    <cfhttp url="#trim(image_array[j].link_url)#"
    method="get" throwonerror="No" timeout="15" getasbinary="Auto"
    resolveurl="No" />
    <cfif IsBinary(cfhttp.filecontent)>
    <cfset tmp_filename = "thumbnail_entry_" & GetID.id
    & "." & image_array[j].file_type>
    <cffile action="WRITE"
    file="#ExpandPath(request.base_relative_url &
    '/blog_thumbnails/' & variables.tmp_filename)#"
    output="#cfhttp.filecontent#">
    <cfset thumb_image = request.img.process_image(image_path
    = ExpandPath(request.base_relative_url & '/blog_thumbnails/'
    & variables.tmp_filename), max_width = 120, max_height = 120,
    crop_area = "center")>
    <cfimage source="#thumb_image#" action="write"
    destination="#ExpandPath(request.base_relative_url &
    '/blog_thumbnails/' & variables.tmp_filename)#"
    overwrite="yes">
    <cfquery name="UpdateEntry"
    datasource="#request.data_source#" username="#request.db_un#"
    password="#request.db_pw#">
    UPDATE aggregated_blog_entry
    SET aggregated_blog_entry_thumbnail_image_tx =
    '#left(variables.tmp_filename,255)#'
    WHERE aggregated_blog_entry_id = #GetID.id#
    </cfquery>
    <cfbreak>
    </cfif>
    </cfloop>
    </cfif>
    ---------This is the module_get_images.cfm
    code----------------
    <cfset start_pos = 1>
    <cfset image_array = ArrayNew(1)>
    <cfset regex_image = "<img[^>]*>">
    <cfset regex_image_url =
    "(((https?:|ftp:|gopher:)\/\/)|(www\.|ftp\.))[-[:alnum:]\?%,\.\/&##!;@:=\+~_]+[\-A-Za-z0- 9\/]">
    <cfloop condition="1">
    <cfset temp_image_pos = REFindNoCase(regex_image,
    variables.content_to_parse, start_pos, true)>
    <cfif temp_image_pos.pos[1]>
    <cfset temp_link =
    mid(variables.content_to_parse,temp_image_pos.pos[1],temp_image_pos.len[1])>
    <cfset link =
    REFindNoCase(regex_image_url,temp_link,1,1)>
    <cfif NOT link.pos[1]>
    <cfset temp_link_url = "">
    <cfelse>
    <cfset temp_link_url =
    mid(temp_link,link.pos[1],link.len[1])>
    </cfif>
    <!--- Don't show links to images --->
    <cfif len(trim(temp_link_url)) AND
    ListFindNoCase("jpg,jpeg,gif,bmp,png",left(ListLast(temp_link_url,"."),3))>
    <cfset image_array[ArrayLen(image_array)+1] =
    StructNew()>
    <cfset image_array[ArrayLen(image_array)].link =
    temp_link>
    <cfset image_array[ArrayLen(image_array)].link_url =
    temp_link_url>
    <cfset image_array[ArrayLen(image_array)].file_type =
    left(ListLast(temp_link_url,"."),3)>
    </cfif>
    <cfset start_pos = temp_image_pos.pos[1] + 1>
    <cfelse>
    <cfbreak>
    </cfif>
    </cfloop>
    This is the type of code it has a hard time getting the image
    becuase it doesn't have a regular IMG tag.
    <div style="float: left; width: 82px; height: 59px;
    overflow: hidden; background: url(
    http://pix.crash.net/motorsport/80/388493.jpg);
    background-position: center center; background-repeat: no-repeat;
    margin: 1px;" onMouseOver="showTipGallery(Stoner, Australian MotoGP
    2007);" onMouseOut="clearTip();">
    Is there a way to modify this code to make it be able to look
    for the backround: url?? I am thinking that woul help it.. It knows
    that an image is there.. It just doesn't know what to do with
    it.

    How difficult is it for you to do a google image search for large images of this subject?
    While you appear to be doing this project for an educational endeavour and can get away with mild copyright abuse as "fair use", you probably should not expect the participants in this forum to 1) work for Disney either as a direct employee or as a contractor and 2) offer their copyrighted work for free.
    If you really want to impress a teacher and a future employer, you would use your own art. Why dont you create your own movie concept? Suppose you and your classmate are up for the same employment position. Who do you think will get hired if you show work that is not all your own, while your classmate has produced all of his/her own work?

  • Getting ready for print...HELP!!!

    Ok, so I'm working with another designer (honestly I am, it's not me, LOL) who has laid out a magazine we're working on in InDesign CS3. He sends the exported .PDF file(s) to the printer only to have them reply back saying that there is no bleed on the pages. I check out the files he's done and low and behold the document was setup at 8.5x11. The designer says its ok, he can change the export options to add the bleed in, so he does that and the printer still says there is no bleed.
    Now, correct me if I'm wrong but does InDesign shrink everything down to fit inside of an 8.5x11 and then add the bleed, therefore not actually resizing the document to 8.75x11.25?
    Should the designer have started out with a page size of 8.75x11.25 in the first place?

    Any items that need butt up against the page edge (bar the items that are towards the middle (spine) ) need to be extended past the page edge.
    Make sure that any Type that has to appear in the printed version is kept away from the page edge as you don't want type to be trimmed off.
    You need to physically make them larger by going to each page. Looking at all the page items and using the selection tool to drag the handles out so that the image/frame etc. come right off the page (about .125pt)
    You can set up a guide in File>Document Setup>More Options and Bleed
    That will put a red guide around each page to show you where items need to be out as far as to be included for when you export the pdf with bleed.
    If there is nothing in the area then nothing will be exported in that area.
    DO NOT resize your document.

  • Need help getting Artwork for making quality dvd covers

    Hi Everybody,
    I want to make dvd covers for animated movies. I am currently a student and learning CS4 and want to make a DVD cover of Lion King searching for this Artwork in High-Res if any of the designers in this website have them could u just mail them to me it would be a gr8 help. please try getting them pleasssssee mail them to me at [email protected] A quick view here http://www.movieposterdb.com/poster/891822f6
    I am really sorry if i have posted this in some wrong area.
    thanks

    How difficult is it for you to do a google image search for large images of this subject?
    While you appear to be doing this project for an educational endeavour and can get away with mild copyright abuse as "fair use", you probably should not expect the participants in this forum to 1) work for Disney either as a direct employee or as a contractor and 2) offer their copyrighted work for free.
    If you really want to impress a teacher and a future employer, you would use your own art. Why dont you create your own movie concept? Suppose you and your classmate are up for the same employment position. Who do you think will get hired if you show work that is not all your own, while your classmate has produced all of his/her own work?

  • Need help getting new printer hp deskjet 3520 setup for eprint and wireless

    need help getting new printer hp deskjet 23520 stup for eprint and wireless

    Hi Pastorlee7,
    I see that you're having problems setting up your printer.  I would take a look at the document below.
    Hp deskjet 3520
    Let me know how it goes.  

  • I haven't used an Apple computer for years. I need help getting started

    I just bought a mac mini after 20 years using a PC.  I need help getting started.  Any beginning manuals out there?  Thanks.

    New User of Apple wrote:
    I just bought a mac mini after 20 years using a PC.  I need help getting started.  Any beginning manuals out there?  Thanks.
    Welcome back. Do not overlook the Finder and individual application Help menu support. The links provided above are great starter references. With tongue in cheek, they also may not be as current as the OS X release on your mini, so expect some differences.
    Here are a litany of keyboard short-cuts, last updated in June 2012, that may prove selectively beneficial.
    For actions like copy(c), paste(v), cut(x), print(p), and select-all(a), substitute the command key instead of control key.
    If you right click on a file, this menu will seem familiar. Press the option key and notice the menu changes. If you copy a file(s) from this menu, change to the destination and then press option with the right button menu to see copy file(s) changed to move file(s).
    To quickly view a file's contents, left click on the file icon, then press the space bar.
    The native file format for OS X is PDF. Thus, when you choose to print, you also have the option to save as PDF with web links preserved.
    Enjoy your mini.

  • I need help getting my os x mountain lion to work for my pro tools

    I need help getting my os x mountain lion to work for my pro tools

    Since you provide no details I can do nothing but guess, so perhaps this will help:
    http://avid.force.com/pkb/articles/en_US/how_to/Upgrading-to-Mac-OS-10-8?popup=t rue&NewLang=en&DocType=1080
    http://avid.force.com/pkb/articles/en_US/compatibility/Avid-Software-and-Mac-OS- X-10-8?popup=true&NewLang=en&DocType=1083
    If you continue to have problems, you probably should contact Avid support.
    Regards.

  • I need help getting my printer to work

    I need help getting my printer to work

    http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/Want-Good-Answers-Ask-Good-Questions/td...
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • I need help getting new authorization codes for digital copies

    I need help getting new authorization codes for digital copies of movies. Can someone help me out?

    There's a lot of results in Google when you search for this but unfortunately refreshing the page doesn't seem to generate a different code anymore. Mine also says already redeemed

  • I need help getting the license number for Adobe Photoshop Elements. However, It doesn't recognize me as an authorized user. Can someone help?

    I need help getting the license number for Adobe Photoshop Elements. However, It doesn't recognize me as an authorized user. Can someone help?@

    I am having the same problem...did you ever fix it?

  • Bugs in iPhoto once card is ready for print service

    Bug changes fonts in iPhoto once card is ready for print service. "Windowpane" layout line width bug for card printing service: in quadrant windowpane mode, one of the lines was too wide, not like the other three. Deleted it and selected the windowpane again and it was OK.

    You only get one opportunity to set up the hard drive under publish and the folder cannot be changed unless you get a plug-in to provide a work around.
    However you could just create a generic publish folder - something like Photo Lab, or Print Job.
    But you could then right click on your publish folder and select “make target collection” - you will see the plus sign added.
    Simply highlight the photos you want to print and press B (the same as adding to a quick collection) and your Publish Services folder on your hard drive will be populated with the exports.
    The real problem is that you would need to edit the publish settings every time you required different dimensions etc (not sure possible). I use a similar system, which works well and I like how I can see what has already been published and what is still to be published but my prints are always the same size and resolution.
     

  • RE: Getting ready for production

    Take the Forte Project Management Class. It tell you everything you
    need to know
    to go live.
    ka
    From: Julie Muth[SMTP:[email protected]]
    Sent: Monday, August 18, 1997 9:39 AM
    To: [email protected]
    Subject: Getting ready for production
    We'll be deploying our first application into production in the near
    future and I'ld be interested in any advice you have to offer - horror
    stories, successes, what worked, what didn't, what you would do
    differently. Also, any advice on the organization and skill set of the
    people doing deployments would be appreciated.
    Julie Muth
    Assistant Project Director
    NYS Division of Criminal Justice Services
    Albany, NY
    [email protected]

    Ok... here we go, not sure what you are doing except editing DV right now,
    but this will work for HDV, DVCPROHD, Uncompressed SD and some ProRes
    as long as you have a good Gigabit Router to transfer files. Please consult
    a professional if this sounds scary to you.
    *Redundant FILE SERVER* for project files, important stuff
    1. Install at least 4GB RAM in G5 #1 (max $200)
    3. Make sure there are two identical SATA drives in the G5. Install OSX Leopard Server ($499) on 1 drive. Use Carbon Copy Cloner (Free... http://www.bombich.com/software/ccc.html) and clone
    the main drive to SATA drive #2 when drive #1 is set up completely. Use drive #2 as backup.
    4. Connect CalDigit 2.56TB HDOne External Hard Drive Array (RAID-5) with PCI-X adapter ($2830)
    SubTotal: $3600...ish
    *Current MacPro* Add unprotected scratch disk for main edit suite
    1. Install Sonnet Tempo SATA e4p Serial ATA Host Adapter ($260)
    2. Connect Sonnet 2.5TB Fusion D500P eSATA Array System (RAID-0) ($1700)
    Subtotal: $2000...ish
    *2nd G5* convert to p2 Logging/backup Station
    1. Sony BWU-200S Internal 4x Blu-ray Disc Rewritable Drive (599.95)
    2. Roxio Toast ($85)
    SubTotal: $700
    *NEW Intel MacPro* will increase productivity
    1. 8 Core 3ghz Intel MacPro ($3600)
    Total: Around 9900-10,000
    (Buy from PowerMax.com or other out of state vendor to avoid sales tax)
    If you want to organize things, then FCS will help. You can install
    on G5#2 for 999.00 more. I would focus on hardware first though.

  • TS1538 i need help because i need help getting my ipod touch to connect to windows vista and

    i need help getting my ipod touch to connect to windows because it keeps saying udb device not recognized and i tr\]ied restarting the settings!!!!!

    Have you tried here:
    iOS: Device not recognized in iTunes for Windows

  • I need help getting itunes on my new computer. old one crashed

    My old computer crashed, I downloaded iTunes on my new computer and need help getting all of my stuff on it that I had. I did 'home share' to see if that worked, and it didnt.
    Also, on my old computer, when I synced my iPad & my husbands iPod, it didnt sync any music or podcasts, no videos-and i went through each category seperately to sync it and it didnt work. So I can't sync my devices to the new iTunes bc not everything is on there that i have purchased.

    It has always been very basic to always maintain a backup copy of your comuter for just this occasion.  Use your backup copy to put everything on the new computer.
    If for some reason you have failed to maintain a backup, not good, then you can redownload some itunes purchases in some countries:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

Maybe you are looking for

  • Repercussion for a mid year go-live

    Hello All Can any one, through your experiences, throw some light on repercussions on mid year go live for US Payroll? Or may be list the pros and cons of mid year and beginning year go live? Thanks

  • File DownLoad from R/3 to Local Disk through Web Dynpro

    Hi, I have a zebra print spool, to be saved in the local disk. For this, I have an RFC which will store the document in Portal Server KM folder and will give the file name for web dynpro app. The web dynpro app will search the KM Directory, and will

  • Can't edit Media Kind in iTunes 9?

    After updating to iTunes 9 I have found that I can't edit the "media kind" label on any of my tracks. This is particularly annoying as I use audiobooks a lot, and now I have to store them as music. In fact, it seems that I can't edit anything under O

  • Japanese Siri is broken

    Just loaded IOS5.1 on iPhone 4s, then switched Siri to Japanese. It recognizes what my Japanese wife says to it (it types out her questions in Japanese, accurately), but then says there is some kind of error (in Japanese, but my wife says it's too te

  • What does the Sun App Server Use as a web container?

    Does the Sun App Server use tomcat? Or is it some derivative of Tomcat? thanks for the info.