Creating a print template

I am considering purchasing Photoshop elements but have one problem.  I like to print photo album sheets from home on 8.5x11" paper in portrat orientation with about 9 dfferent photos per sheet.  I can't find any way to resize/reorient the photobook pages or make a new template.  Does anyone have any ideas or is there a way to ask someone at Adobe this quetion?  Thank you.

I put this together a while back for 2 place holders. You can adapt this for several more, depending on size of paper and size requirement for each picture.
The size of each box created with the marquee tool in steps 2&3 is critical.
Open a new, blank file (File>new>blank file) and set width & height in the inch size of your paper stock (4x6"), resolution 300px/in, background white (can be any color)
Access the rectangular marquee tool, and in the the tool's option bar select "Fixed size", and put in 3.75x2.75", for example. Turn on the grid and snap to grid via View>grid & snap to grid. You can configure the grid via Edit>preferences>Guides and grids if you want to.
Duplicate the background layer, and create the first box by clicking with the rectangular marquee tool. Position the box, then fill it with 50% gray (Edit>fill selection, and under contents select 50% gray.) Select>deselect gets rid of the marching ants
Repeat for the next box. You should now have a document containing two rectangular boxes filled with 50% gray.
Select the first box that you wish to fill (with the picture) with the magic wand tool. On the tool's option bar be sure that contiguous is checked. You should see "marching ants" around the selection, indicating that it is active.
Open picture 1, go to Select>all, Edit>copy, then go to your layout as completed in step #5, and Edit>paste into selection
Your image will be larger that the rectangular box, but you can drag it around to position the person that you wish to display. CTRL+T will allow you to resize the image with the corner handles, and to maneuver it
Repeat for picture 2 with the 2nd box

Similar Messages

  • Need help in creating a print template

    I would like to know how to do the following
    create a template of a strip of 3 or 4 photos (like a photobooth) that can be printed on 4x6 photo paper
    have been messing about with LR (2) for hours but havent come up with anything that i like
    Anyone able to direct me?
    thanks v v much
    sarah

    Here you go:
    1. Navigate to Print Module - in the top right corner select: Custom Package under Layout Style. This will allow you to add any image sizes you want.
    2. In the bottom left corner click on Page Setup and set the size of the page (I used A6 as an example)
    3. Navigate to right hand side into the Cells section and start adding "image cells" by clicking on coresponding buttons.
    4. Once you set up your initial design, you can start dragging and droping the images inside the cells or just save your design as a template using Template Browser section on the left:
    And you're done! Your template will now appear in the User Templates section! :-)

  • Change print template type to use in different way?

    A family member created a print template in my Lightroom5.5 (picked sizes/grid, strokes, etc.) and it seems to have been created as a "Picture Package" because I have saved it, placing it within the "User Templates" folder during the Save process. Now I am asked to fill it with 25 selected images and these are in the sliding image picker at the bottom of the LR interface. (Can't remember the name of that lower panel...) But what surprised me is that this new template layout cannot be used as a "Contact Sheet." Here's what I see on the screen:
    -I have the layout displayed.
    -The chosen grid has all the same (first) image displayed
    -"Picture Package" is highlighted in the "Layout Style" panel
    -I click "Contact Sheet" in the "Layout Style" panel
    -The view immediately changes to a single panel filling the chosen paper size.
    -I go to the Template Browser and click my desired template again,
    -but it does not fill from the selected images
    Is this possible? What an odd choice for the UI designer. I don't remember not having the flexibility to switch the way the print template was "filled" before LR5.x  --  I believe I did this in earlier versions.
    I searched Adobe documentation. They write about templates as having the stores characteristic of "contact sheet" or "Package" or "Custom", which is new to me. They did not describe a part of the customization at which the user creates a layout as a "contact sheet" or "Picture package" or "Custom". If I start out and create a layout, then decide I want to use that template as a "contact sheet" after I make it, there seems to be no way to save it in a different category of template. So on deadline I find that the workflow is not clear and the documentation does NOT EXPLAIN what to do (or just say: you can't do this, which would be honest and helpful.)
    I tried to re-save it as a different "Type" ("Category"?) ...and there seemed no way to do this. I am now going to build another screen with the 25 panels and, no surprise, it must be initiated as a "custom" which is how I believe it was done before.
    I am sure someone knows what I am doing wrong. but I spent this time writing out the details so someone at Adobe *might* catch this and talk to the documentation elves. How can we be 5 [major]versions into this and have the workflow/documentation exhibit these holes?
    jonathan7007

    Hi Suresh:
    This is what I would do.
    Here is the demo...Hope this will help.
    BHAVESH@oracle10> create table suresh(created_date date, attribute1 varchar2(20));
    Table created.
    BHAVESH@oracle10> desc suresh
    Name Null? Type
    CREATED_DATE DATE
    ATTRIBUTE1 VARCHAR2(20)
    BHAVESH@oracle10> insert into suresh values (sysdate,to_char(sysdate,'yyyy/mm/dd hh:mm:SS'));
    1 row created.
    BHAVESH@oracle10> insert into suresh values (null,to_char(sysdate,'yyyy/mm/dd hh:mm:SS'));
    1 row created.
    BHAVESH@oracle10> select * from suresh;
    CREATED_DATE ATTRIBUTE1
    01/01/2009 11:24:08 AM 2009/01/01 11:01:08
    2009/01/01 11:01:28
    BHAVESH@oracle10> -- please notice my nls_date_format is mm/dd/yyyy hh:mi:ss AM
    BHAVESH@oracle10> -- which can be changed to anything...use alter session or on windows..using registry..or on server
    BHAVESH@oracle10> -- ....using nls_date_format init parameter.
    BHAVESH@oracle10> alter session set nls_date_format = 'DD-MM-YYYY';
    Session altered.
    BHAVESH@oracle10> select * from suresh;
    CREATED_DA ATTRIBUTE1
    01-01-2009 2009/01/01 11:01:08
    2009/01/01 11:01:28
    BHAVESH@oracle10> -- however, this may not work for you.
    BHAVESH@oracle10> -- so, you can convert the date in the format you want
    BHAVESH@oracle10> select to_char(created_date,'DD-MM-YYYY') as converted_date, ATTRIBUTE1 from suresh;
    CONVERTED_ ATTRIBUTE1
    01-01-2009 2009/01/01 11:01:08
    2009/01/01 11:01:28
    BHAVESH@oracle10> -- now use the decode function
    BHAVESH@oracle10> ed
    Wrote file afiedt.buf
    1* select s.*, to_char(decode(created_date,null,to_date(ATTRIBUTE1,'yyyy/mm/dd hh:mi:ss')),'dd-mm-yyyy') as new_date from suresh s
    BHAVESH@oracle10> /
    CREATED_DA ATTRIBUTE1 NEW_DATE
    01-01-2009 2009/01/01 11:01:08
    2009/01/01 11:01:28 01-01-2009
    If your date format is different under the attribute1 column, then you have to write a PL/SQL function to handle different date formats under the same column of different column!
    THanks
    - Bhavesh

  • How to create an custom template for cheque printing layout?

    Hi, I have a question about cheque printing format set up in SAP Business One.
    All the the system standard templates in u201CCheque print lay out designeru201Dare u201Ccheque-stub-stubu201D or u201Cstub-cheque-stubu201D or u201Cstub-stub-chequeu201D (three portions). What I need is u201Ccheque-stubu201D (two portions)only. Anyone knows how to create an custom template?
    Thanks.
    Edited by: Angela Zhang on Jan 17, 2010 7:18 AM
    Edited by: Angela Zhang on Jan 17, 2010 7:18 AM

    Hi Angela,
    Check the thread,
    Re: Preprint AP check - stub/check repetitive area fram size
    CHECK PRINTING
    Re: check/cheque for payment printing posting date on stub
    PLD Check-Stub-Stub
    PLD Check
    PLD Multiple Check printing
    Regards,
    Madhan.

  • I created an envelope template and want to print envelopes inserting addresses from a contact group in address book

    I created an envelope template in Pages and want to print envelopes inserting addresses from a contact group in address book. How do I do that?

    On what word processor will that be?

  • Creating a print button to call a Report Query and pass filters

    If i use the REPORT QUERY option in APEX 4 to create an statement that is the same one used in an interactive report, can I create a link or button to the REPORT QUERY and pass all the session and filter information from the interactive report to the report query?
    This way I can have the interactive report screen where the user can do all sorts of modifications and such and then pass those to the REPORT QUERY so I can call that from a custom link or button.
    You may ask "why does he need another print button?"
    Answer: I am using a view that has some embedded HTML tags to format the output really nicely. The HTML download version created by the interactive reports works beautifully. The customer also wants a PDF version (meh) which does not render the HTML tags and actually echos them as part of the text. I found that I can create another view that uses the CHR function to create all the breaks and such I was doing with HTML and these do render properly in PDF. So, I figured just have 2 reports: 1 Interactive and 1 using a REPORT QUERY. I just want to call the REPORT QUERY version but use the Interactive Search form to set all the parameters.
    Or, am I over thinking this and there is an easier method?
    I made a previous post where I showed how I got the APEX printing to work and i hoped that helped someone out - fixing this issue would put the whole thing to rest.
    Thanks

    Is BI Publisher desktop (MS Word add-in) a possibility? This would allow you to use MS Word to create your output template (RTF) that would result in a properly formatted PDF. Of course, you'd have to right an updated version of the query without HTML embedded. Just thinking outside of the box.

  • Creating a "Print View" of a Table on Another Sheet

    Hi-
    I would like to create a "print view" of a table on another sheet that already has reorganization filters applied to it.  There is a template in Numbers called "Employee Schedule" that has exactly this, where the "printable" table's cells simply reference every cell in the source table on the other sheet.
    I know there is a way to very quickly (i think with a dragging motion), create the references in each cell in one or two operations, as opposed to going to each individual cell and typing in the reference to the source table.  I saw a post about how to do this a while back but cannot seem to locate it again
    How do I do this?  Thanks again for everyones help ;-)
    Thanks
    Matt

    mattford1 wrote:
    Hi-
    Re-reading this, I don't think this answered my question.  I understand how to reference a single cell, but how do you reference an entire table easily without having to go to each cell.
    Thanks
    Matt
    Matt,
    Select the first cell by clicking once on it, such that the border is highlighted. Then grab the little circle in the lower right corner of the border and drag it to the end of your table, either right or down. You can use this method to fill down or to the right. Sometimes it can be fussy, and if it refuses to behave, then you can use the alternate method, Copy and Paste. Click once on the first cell and Command-C. Shift-click the last cell and Command-V.
    Jerry

  • Need to create stupid proof templates for non-designers

    Ok folks, I'm new to this forum having come across it in search of a solution to my problem.
    I need to create illustrator template files (.ai not .ait) that customers can download and use to create their own artwork for print. I have to create them in every printable paper format from business cards to A3 posters, folding, non-folding yada yada.
    Now, previously, we used an .ai file with a guide layer we created. This guide layer had all relevant info, was named accordingly. It was set not to print and locked. As I tend to use print to file, distiller and all, this has always been perfectly adequate to create my pdfs. Of course, this doesn't work the same way when saving a pdf, which is what most people do. However, customers who wish to download the templates are having some difficulty with the concept of 'make sure you delete the guide layer before saving your pdf'.
    For the most part, the customers using these files are not illustrator literate. Even though there are clear instructions to 'delete' the guide layer when saving the needed pdfs, they are failing to do so. This means when the .ai (with the non printable layer) is saved to pdf, the guide layer as a hidden object is saved within the pdf. Upon printing at our printing facilities, the guide layer has been printed with disasterous results.
    A possible solution we came up with was to use the ruler guides to create the guide layer. For this solution to work though, I need to be able to use different colours for different guides within the same document. Which we can't. We can only change all the guide colours and they are all the same colour.
    Another idea would be to outline text indicating various printable and non-printable areas and making them into guides via View>guides>make guides, which works to an extent but looks messy, especially when viewing the full page and again, isn't particularly distinctive, leading back to having different guides in different colours.
    I've come across another possible solution involving template layers. Viewing the resulting pdf seems fine and in all purposes it does what we need, except for when reopening the saved (not printed) pdf back in illustrator, the template layer is still there and I need it gone. The same way it would be if the .ai were printed to postscript and sent through distiller.
    My ideal solution would be to have to ability to have the different coloured ruler guides in place throughout my document, but as I previously stated, all guides have to be the same colour and that's useless in this instance.
    So, has anyone got any bright ideas. Coincidentally I need to create the same templates for both psd and indesign but I'll cross that bridge when I've figured this out.

    Hey Mike, thanks for the response.
    1. Not a chance, if, even when the process is described in great detail in an info pdf, available as info on the website (with screenshot instructions) and mentioned in the .ai file itself, they aren't even deleting the guide layer, then turning off 'Preserve illustrator editing capabilities' is kind of a stretch. Like I said, the folks these templates are to be designed for are not illustrator literate for the most part.
    2. Not sure if this would work. I'd have to look into it.
    3. Beyond my capabilities. I'll let you know if number 2 works.
    One possible solution I've come up with uses the idea of a template layer always on top, with 'DELETE THIS LAYER' and screenshot of layers pallette and clear little red arrows etc. If I can the template layer to always remain on top, with their artwork layer underneath, they would have to toggle hide/unhide to view their artwork, and the reminder to remove the guide layer would be pretty much in their face. That's not a guarantee either though.
    Personally, I think what I've been asked to achieve is a pretty hard task and honestly, I'm thinking there are no failsafe options.

  • Printing a PDF file over pre-printed template

    I would like to be able to print a PDF file (file A) over the top of another PDF file (file B ). For example, file A could be a letter that needs to be sent out and file B could be the company letterhead. The resulting file would be the letter on company letterhead.
    I need to be able to do this because I am printing from an application that allows limited customization of the output format. Having the ability to print one file over another would enable me to create a "pre-printed template" in an application that has more flexibility. I could then add the data from the first application over the top of the "pre-printed template."
    I am using Acrobat Professional 7.0.9 on a Windows XP Professional system. If necessary I can upgrade to a more recent version of Acrobat.
    Thanks for your help

    I would like to do this all electronically. I don't produce a hard copy at any time but rather create the PDF and then email the file to the recipient.

  • Missing Print Templates Folder

    I have recently purchased some blog templates and I can not install them because I have no print templates folder.
    I go edit-preferences-show lightroom folder- lightroom- and there is no print templates folder to drop the templates into.
    Please help!
    Thanks!

    I assume you mean, Edit / Preferences...  [presets tab] Location: [Show Lightroom Presets Folder]. If you haven't yet saved any print presets of your own, then LR has not yet had any need of a User folder to contain such. So one may not yet have been made.
    The easiest way to get LR to do that, (and to be sure that you are looking in the right place) : click the + icon next to Template Browser in Print module.
    IOW: save a dummy print preset, doesn't matter about its contents, but enter some very distinctive name and then click Create. By default this should go into "User Templates", which is made as necessary, though you can choose to make a differently named folder if you prefer.
    Full path on my Win8.1 is C:\Users\[username]\AppData\Roaming\Adobe\Lightroom\Print Templates\User Templates
    Then take a look in Explorer and see what has changed - if there's any problem, you can always disk search for whatever distinctive template name you have just entered. Copy your other bought templates alongside this new dummy print preset, restart LR and you should be able to start using any of those. Delete the dummy preset in due course.
    (Note that it is quite usual for built-in LR presets to be held somewhere quite different, than user created or user added items. The provided choices such as "(1) 4 x 6" and "custom 1 over 2" may not be findable anywhere on disk, for example.)

  • Multiple compnay codes--Blue print template

    Hi Guys,
    I need a Business Blue Print Template with Multiple Company codes,for Reference.Please send the documet to [email protected]
    thanks in advance and points will be assigned..
    suresh

    Hi Suresh,
    When you create a G/L account it is possible to fill in the field  Alternative account number (see the help).
    When you want you can assign this to the countries own chart of account and report on this.
    In this case I advise you to use one chart of accounts and use Alternative account number for reporting by country.
    Now it is possible to use one controling area. This is use-full when you want to make total reports over the company codes.
    In controlling you store document currency, company currency and controlling area currency. It is possible to use paralel currencies.
    When you are doing settlement to an other companie code's it will create an inter company posting. But it is possible with the exchange rates that you have results you don't want
    Paul
    Alternative account number in company code
    The alternative account number field in the company code area is freely definable. You could use it to enter:
    the account number from your legacy system or
    the account number from a country chart of accounts if your corporate group uses a standard chart of accounts.
    The alternative account number is only issued in the financial statement if you explicitly assign it to the relevant items in the financial statement version.

  • Printing Templates for Multiple Print Sizes

    It would have been nice to have been able to create printing templates of different sized prints on the same page like portrait photographers do. Features of QImage should have been incorporated.

    I agree with the above comments. As I see it, the Print modules needs these improvement:
    - Multiple images of various sizes and shapes on a single page.
    - Ability to place resizable text cells (multiple) anywhere on a page. [The Identity Plate feature comes close until you try to put it on every image which causes it to lock to the center of each image.]
    - Ability to change the font and location of Metadata displayed next an image
    - Ability to display an Identity Plate in the Margin area (or any text object).
    Essentially I should be able to create a simple book or album from the Print module with customizable text cells. I have no doubt LR has much of this already planned - it makes a lot of sense.

  • Print template

    Hi... does anyone know a print template that arrange different sizes with different images in the same frame using LR 3?
    All I could realise is that we can do that with the same image.

    In LR 3.x, you can do this by chosing Custom Package in the Layout Style Panel of the Print Module.
    There you can create different sized cells and drag and different images into them.

  • 2 questions - change image size within print cell, and saving print template w/ specific images

    Hi,
    Searched the forums for the answer to these but couldn't find much.
    1. Is there a way to change the image size within a cell (under print module). For example, zoom in 140% on a a specific image but still have it within the original cell size?
    2. Say I create and fill in an elaborate print template with my images - is there a way to save the FILLED IN version of the template to edit at a later time? For example if I wanted to load it back up w/ all the original images layed out in the print template, but maybe change a few and resave as jpeg?
    Thank you!

    Hi
    I'm not sure but maybe you can use a rectangle to hold the .ai image, resize the rectangle and fit proportionally the image inside it
    hope this help
    Eli

  • Lightroom Printer Template for Canon Pro9000

    I have been trying to set up a printer template for my Canon Pro9000 that has as one of the printer settings that color management is turned off. I create a new template and/or I try to update settings on an existing template. No matter what I do, it seems like if the setting reverts to ICM. Also, it seems like it ignores the setting that I check for whether or not I want a print preview.
    Are these just settings that can't be saved in a template, or am I doing something wrong?

    I have a p9000 too. I am not aware that LR can set up a template with all the printer driver settings you want including turning off color management in the printer.
    I always thought that every time you load light room, you have to reset all your printer driver settings in the printer driver (as well as specifying no your paper profiles and rendering intent in LR.
    This ain't exactly great. I usually print in qimage which defaults to your previous settings for any given type of paper profile you choose.
    But LR isn't there yet.

Maybe you are looking for

  • Bookmark all tabs missing in Firefox 4.01?

    I have used the 'bookmark all tabs' function in Firefox for several years. I just recently upgraded to FF 4.01 (I really like it BTW) but the bookmark all tabs menu item is missing. Please advise if there is another way to accomplish this function. T

  • Dashboard Prompt Title

    Hi, I am displaying a report in a Dashboard. This report has three Prompts, "From Date", "To Date" and "Department". Once I select the prompts, the reports displays correctly. However, I would like to Print on top of the page the actual values of for

  • Lost files, have library

    I'm running Lightroom 1.3.1. On a Mac G5. I had all my files and the lightroom library on an external drive. That drive is dead, will not mount. I do have a backup of the library and I have backups of the files on another drive. What's my best course

  • Can't sign out of iCloud on Yosemite. Mail was unable to delete 'email'.

    I have a MacBook Pro running Yosemite 10.10.1 and I'm trying to log out of my iCloud account, but it won't let me. The error message I keep getting says, "Mail was unable to delete 'email'. Relaunch Mail then sign out of iCloud again."  I get the sam

  • Activate info cube in background

    How to activate infocube in the background? There is a program to do, and what if it takes long time. Regards Kunal