How to make collage template myself pse8

I would like to be able to make a template with
rows of rectangles, squares or circles for collage work. Are there any tutorials
or can someone point me in the right direction? Thanks

Malloww,
There are several ways to do this. Here is one:
http://www.pixentral.com/show.php?picture=1NmVcTyaLz9i6V7cLOoH4fMslMKr0
Open blank , new file. I used background color=white, but you can use any color. The resolution should be about the same as that of the pictures which you will display, ultimately.
Duplicate background layer, work on background copy layer, and shut off visibility of background layer by clicking on its eye icon in the layers palette
Access the rectangular marquee tool, and in the tool's option bar enter mode>fixed size, and the dimensions for height & width. Drag out the rectangle.
Open a blank layer. This should be at the top in the layers palette
Go to Edit>stroke>inside.. I chose color=red. Make the stroke a good sized width. You can select any color.
Repeat steps 3 & 5 for each position. I have 4 for the purpose of demonstration. Use elliptical marquee tool for circle and ellipse. Hold down shift key as you drag out to get the circle
Go to Layer>merge down (CTRL+E).
Access the magic wand tool, and in the tool's option bar "contiguous" should be checked. Click inside the 4 stroke boundaries, sequentially, each time hitting delete on the keyboard. This will punch a hole in each location. The checkered pattern denotes transparency
Copy, then paste your picture between the background layer and the background copy layer. I did this once here for demonstation
Use the move tool to position the picture
Let us know how you make out.

Similar Messages

  • How to make a template in Photoshop CS5?

    How to make a template in Photoshop CS5?

    That would probably depend on what you mean exactly.
    A template for what, which structure, …?

  • How to make the templates in PAL to 1920 x 1080 ?

    Hi there,
    I did FILE > OPEN TEMPLATE.
    When I was doing projects in Std Def, I select PAL, and there were a lot of templates available in PAL.
    But now doing projects in HD, these templates in PAL are too small to superimpose onto the HD videos (in 1920 x 1080).
    How to make these templates in 1920 x 1080 ?
    Thank you

    Ian R. Brown wrote:
    I think you are making a big issue of something very simple as it took me less than a minute to test it out.
    Make your template or whatever in LT and then select File>Render Movie and make sure that the "Render Background" box is ticked.
    Put resulting file in FCE and stretch it as I described earlier.
    That's it!
    If you don't want your text stretching, you can leave it off the LT movie and add it from FCE's Text functions . . . . . or you could make just the text in LT and add it on a track above the template in FCE.
    You need to do some quick experiments (tests) to see how it works for you.
    Incidentally, are these third party templates?
    If so, you should contact the supplier to see if they have included some HD versions somewhere.
    Thanks Ian,
    The reason I am asking is bcos I cannot experiment with it as I am not at home. I don't have a Mac with me.
    I was hoping that FCE can import as ipr so that I do not have to render each time I make changes.
    These templates are extension packs from 12 inch. Dont think they have HD version
    Cheers

  • How to make a template from an existing document on my ipad Air 2 using word

    I want to know if it's possible to make make a template from an existing document on my ipad Air 2 using the free microsoft word app.
    Thank you

    RAW import is not yet supported. Just guessing that this is what you were trying . - Guido

  • Pages - how to make a template?

    I need to print in two colums, landscape, on both sides of the paper. So far, no problem as my Kyocera 6950 does it automatically. BUT  the paper I use has a printed logo on one side (let's call it page nr 1/3/5/7 etc) and I need obviously not to print on that logo which is at the right bottom corner.
    Question: do you know someone who can help me do this? I have scanned in the paper, I can attach to an email how I do it at the moment and I want to import from an rtf file the text to be printed (some 200 pages). I don t see any way I can post on this forum the actual papers -
    As you guessed: I am a mac user, not a designer  :-)  and completely lost ...
    Mark

    Open your home page...  create any areas that are going to be 'editable', meaning areas that you are going to change on any child pages created from the template eg:  main content area.  All other areas will be marked as non-editable.  You will not be able to change these areas in the child pages... this would be areas like the header, the menu bar, the footer.
    Save as a template.  A new folder will be created named Templates, and the file ( with an extension of dwt will be created inside this folder - all done automatically).
    When you want to create a new 'child' page from this template...
    FILE>New>Create from Template
    you'll see a list of templates that you can choose from, the one you save (as above) should be on the list.
    More details here:
    Using DW Templates:
    http://www.adobe.com/devnet/dreamweaver/templates.html
    http://www.adobe.com/devnet/dreamweaver/articles/dw_templates.html
    However, with a 50 page site you may want to consider using Server Side Includes  (SSIs).,
    A bit more about SSIs here:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f 693f21-7b6ca.htm
    http://bignosebird.com/ssi.shtml
    One major difference between using Templates and SSIs?
    When you make a change to a template page, you will need to re-upload all the pages to the server that were changed - may become very tedious if it is a very large site.
    With using SSI, you make a change to one file and only have to upload the one file and all pages on the server will be update accordingly.
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • Can any tell me how to make Collage from selected images

    Hi
    I need to make a Collage of selected Images. Can anybody tell me how to proceed or point me a finger in the right direction. If there is an example then it would be great.
    Thanks in advance
    praveena

    One way you can do this is to override Panel, and set up clips, like this (mind you this is a very crude example. If you used this method, you'd want to set up loops and calculations to set the Polygon dimensions:
      private class MySubPanel  extends Panel {
        private Image[] images;
        private MySubPanel(Image[] _images) {
          images  = _images;
        public void paint(Graphics g) {
    // Just for a test, let's just assume only two Images are past in.
          int[]   xPnts = new int[] { 0,30,50,70,80, 95,75,60,45,30,15, 0},
                  yPnts = new int[] {20,35,15,35,20,110,75,95,70,85,55,30};
          Polygon p     = new Polygon(xPnts, yPnts, 12);
          g.setColor(new Color(50,150,20));
          g.setClip(p);
          g.drawImage(images[0], 0, 0, this);
          xPnts = new int[] { 0,15,30,45,60,75, 95, 80, 70, 50, 30,  0};
          yPnts = new int[] {30,55,85,70,95,75,220,130,145,135,155,130};
          p     = new Polygon(xPnts, yPnts, 12);
          g.setColor(new Color(50,150,20));
          g.setClip(p);
          g.drawImage(images[1], 0, 0, this);

  • How to make a template in Pages that wraps to next page

    I almost always use my Pages '09 in Layout mode.  I have a long document that I supply to vacationers on Cape Cod of all the gluten free restaurants and food stores.  It's 17 Pages long.  Because places open or close I am doing adding and subtracting of listings all the time so this document is in word processing mode so it automatically reshuffles when I add new places.
    I want to brand it a little bit more and each page is going to have a small graphic and one line on the edge that is horizontal (at bottom of page) and one line that is verticle at the left side of the page.
    I can't figure out how to do this in Word Processing mode.  I can't move the graphics around like I can in Layout mode.  I can put them in text boxes and move them that way to the desired locations.    
    However, if I add text boxes the text isn't wrapping from one page to the next.
    I really love Layout mode is there a way to get it to take the over flow of text from page one and put it in the text box on the next page automatically? 
    I'm not sure how to do this project and I hope someone can give me a quick answer!
    Thank you so much ahead of time!
    Susan

    PF,
    If you give us a sample problem, we can suggest an approach.
    Jerry

  • How to make Project Template in MS Project Pro 2013

    Dear All,
    is there any method by which Standard Template can be build in MS Project Pro 2013 as Global Calendar etc?
    As far as i know, we can do this in PWA once we made EPT but looking something by which if project manager wants to create any project then he can choose such template in MS project Pro 2013 itself?
    Is there any way?

    Just to add on to Guillarme's reply, this might help, if you want to create projects and templates directly in Project Pro 2013, this might help:
    http://epmainc.com/blog/creating-project-templates-microsoft-project-2013
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • How to make a custom template the default for Apple Mail (10.7.5)?

    Hi,
    I'm OK with making a new custom template in Apple Mail.  It shows up fine once under "custom" in the stationary pane (and once I take off signature in a new email).  But... that's a lot of trouble to go through everytime I want to send an email.
    So the question is: can I make my custom template my default for all my emails, unless I want to manually change it?  Seems like this should be possible but I can't figure it out and haven't run into any solutions (only on how to make a template).
    Do I really have to select it each time?
    Best,
    Joel

    As an FYI: I just solved the problem by going the "low road." I'll be a bit laborious in case someone else wants a solution at a later date (I know I Googled the topic and found nothing). I experimented by simply:
    Opening a new email message
    Selecting my custom template
    Copying the custom signature (Select All)
    Opening another new email message
    Selecting Edit on the Signature pulldown menu
    Hitting the plus symbol to create/add a new signature in the pane
    Pasting into the new signature
    Naming it
    Selecting "Choose signature" at the bottom of the signatures pane
    And violà!!
    It now appears as a possible selection *and* as the default.
    Better yet - it is now my default and will work as a reply to an email.
    I think I got it all right in the list above.
    OK, granted, this is a pretty simply signature - a list of my website, SoundCloud, twitter etc with those names in bold and a graphic of my color logo - but... it works! YMMV.
    Give it to Apple to make it so simple that any fool could do it (that would be me), you wouldn't need a "specialized" app, and - of course - there wouldn't even be instructions on how to do it!
    Best,
    Joel

  • How to make a web template as standard template

    hi,
    we are trying to make the custom web template as the standard template. So, that it would be the basic template when we create a new template.
    could anyone let me know how to make the template as default template
    Thanks,
    raghavendra pothula

    Hi:
    Try that one in SPRO.
    here are steps if u need them.
    SPRO
    SAP Reference IMG
    From here, open tree:
    SAP Netweaver
    SAP Buss Info Warehouse
    Reporting Relevant Settings
    BEx Web
    Set Standard Web Templates.
    Here add for Adhoc analysis and others if needed.
    Ram Chamarty
    Message was edited by: Ram Chamarthy

  • How to make a draft/template of a transition

    Hello,
    I'd like to know how to make a draft/template of a transition in adobe premiere pro cs 5.5.
    Is this possible and if it is, how can I do it?
    Thanks

    You can't. You can copy and paste a transition, though, if you target the destination track. You can also change your default transition (right-click the transition you want in the Effects panel) and the default transition duration (Edit > Preferences > General) and apply that one by one or to a group of clips by selecting them and going to Sequence > Apply Default Transitions to Selection.
    And, make a feature request: Adobe Feature Request/Bug Report Form

  • How to make a realistic tshirt template in photoshop

    Hellow Experts.
    Today i spend more then 8 hours on google to find out how to make a realistic tshirt template but couldn't find so i am putting my question on front of the experts of this forum, i hope you guys will help me.
    so i start selling tshirts and i am looking for a tshirt, hoodie, long sleeve, women tshirt template. i want to make my own templates. like you guys must have seen the templates of teespring. if you download thier template and open it in photoshop it looks transparent. but if you put a base color ..booom... it will be the shirt color. i am very curious how to make it. like a realistic template. i am pro in photoshop, illustrator, corel draw, but dont know how to make this kind of templates. please see the attached image for refrence.
    I will be highly appriciate your help guys <3
    Thanks in Advance
    yui - pr1nco's library

    http://www.google.com/search?q=photoshop+rope+texture+tutorial
    Mylenium

  • How do i make a template (poster) of this sizes 3.74in x 8.27in?

    How do i make a template (poster) of this sizes 3.74in x 8.27in?

    Inspector, Document tab
    Page Setup
    Click in the Paper Size box and choose Manage Custom Sizes
    Click the + to make a new custom setting
    Name it
    Type in the  dimensions
    Hit OK
    That gets the size you want.  Save as a template.

  • How to make the workflow available for Contract Template ? CLM

    Hi expert,
    It seems that no workflow can be defined in the Library Item Phase Configuration .
    The customer needs the approval workflow for the contract template also ,so does anyone know how to make it
    possible with configuration or Dev ?
    Your help is highly appreciated !
    Thanks a lot !
    Regards,
    Lilian

    Refer :
    7 Component Configuration Dependencies
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/core.902/a92171/compdep.htm#1008620
    Web Cache
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/core.902/a92171/compdep.htm#1016697
    3.2.2 MIDTIER OPCA Mode
    http://portalcenter.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/CONFIGHTML/cgbasic.htm#1008246
    - Senthil

  • How to make a call  to service from site studio templates?

    Hi,
    May be this is very basic but I am not able to figure out how to make a call to a service from site studio templates (hcsp). I have seen one example of service call in the dynamic list fragment. It makes a call to SS_GET_SEARCH_RESULTS service using executeService() method. But it doesn't take any parameters and also not very how returned results are captured.
    I want to execute WCM_PLACEHOLDER service. It takes 2 main parameters dataFileDocName and templateDocName. The returned result is typically a html response.
    The service typically is executed using http request and the url would be something like this
    http://hd-pratapm/ucm/idcplg?IdcService=WCM_PLACEHOLDER&dataFileDocName=VIRTUSAINC&templateDocName=DETAILS_REGION_TEMPLATE
    I think SS_GET_SEARCH_RESULTS service works in the similar fashion. I want to execute WCM_PLACEHOLDER service too using executeService() method. How to work with this? How can we pass parameters and capture returned results?
    Regards,
    Pratap

    Hey Pratap,
    If you are on a standard Site Studio template (page or subtemplate) you should be able to call the wcmPlaceholder idoc function directly. In fact calling the idoc function provides a lot more functionality then the service call (they locked down a few things in the service call since it is designed to be called from an external application).
    The idoc call would look something like: <!--$wcmPlaceholder("Sales", "placeholderDefinitionDocName=placedef_salescontact")--> (taken from page 208 in this doc: http://download.oracle.com/docs/cd/E10316_01/SiteStudio/10gr4/Pdf/Site_Studio_10gR4_Designer_Guide.pdf)
    As a general note when you are in idoc script and want to execute a service you call <$executeService()$> as you saw in the dynamic list. The parameters that the service runs on are in the data binder of the current request. To set parameters for an execute service you simply set idoc variables on the page before it. Example:
    <!--$QueryText="dDocType <matches> `Document`" -->
    <!--$executeService("GET_SEARCH_RESULTS")-->
    As for the response when you execute an idoc function, like wcmPlaceholder, that returns a String the response is immediately output to the page in the location you called the function. This would be similar in concept to a jsp scriptlet that outputs a string <%=myResponseString%>
    Hope that helps,
    Andy Weaver - Senior Software Consultant
    Fishbowl Solutions < http://www.fishbowlsolutions.com?WT.mc_id=L_Oracle_Consulting_amw_OTN_ECM >
    Edited by: Andy Weaver on Jul 7, 2010 7:59 AM
    Added response detail.

Maybe you are looking for

  • Acrobat 11

    How can I set 11 to open in the "page thumbnail" view, acro 9 pro used to do this, how do I do it with acro 11?

  • Accessing a USB drive connected to Airport Extreme over Internet

    Hello! I have an iPad, I have an Airport Extreme with a USB drive connected and I have a MobileMe account. And I'm aware that as yet there's no Back To My Mac for iPad. Is there an easy way on the iPad to connect remotely to the USB drive, over the I

  • Dump Error : Unable to Interpret '/'

    Hello,          we are trying to upload Material Master, where we have a Custom Field, this custom field is defined as NUMC(10) data type in BMMH1-YYD_YMANU and also in MARC table. And this field has been customized in Material Master in a seperate s

  • How do I set up for Wireless printing on a Mac

    Hi Guys, I have purchased the HP Laser jet P1102w recently.  I took the printer on a location job and used it for the first time.  It was quite a soimple process of connecting the printer and MAC automatically downloaded and installed the software. A

  • Parts of the window do not get repainted

    I have problem with part of the window which is occupied by panels that have a graphical content to display like graphs and strings. This content is created dynamically, it always changes depending on the values of different textfields, scrollbars, e