Pages

Showing posts with label design. Show all posts
Showing posts with label design. Show all posts

Thursday, September 18, 2014

How to Design Speckled Image Borders in Photoshop


Some pictures look great with ornamental borders. If you want to manipulate speckled edges around your image in Photoshop, this tutorial is for you. There are many ways in creating spectacular borders for pictures, here you will learn one of them. Instructions for designing a speckled image borders in Photoshop >>

Instructions

Things Youll Need:

  • Adobe Photoshop 5.5 ~ CS4
  • Mouse/Touchpad
  • Keyboard
  • A basic knowledge of Photoshop tools functions
  1. Step 1

    Open an image in Photoshop that you want speckled borders around. The tutorial use this 425 x 425 pixels image for example.

  2. Step 2
    Border color
    Border color

    Create a new file; File > New. Make it the size slightly larger than your loaded image enough to make a border. Use any color you want for the background and foreground. Set the resolution to 72dpi. Click OK.

    Image here is 500 x 500 pixels.

  3. Step 3
    Pre-Speckles
    Pre-Speckles

    With the new file still selected, go to Filter > Artistic > Film Grain. On the Film Grain dialog window, apply these parameters to create rough outline for the speckles:

    (1)Grain: 8
    (2)Highlight Area: 3
    (3)Intensity: 3

    Click OK.

  4. Step 4
    Soften speckles
    Soften speckles

    To smooth the speckles, go to Image > Adjustment > Brightness/Contrast. Apply 54 to the Brightness, and 48 to the Contrast.

    Select again the Image, then go to Adjustment > Color Balance. Set Cyan to 100%, Green to 32%, Blue to 100%.

  5. Step 5
    Photoshop speckled borders
    Photoshop speckled borders

    Combine the speckled background image with your open image in Step 1. To do this, left-click Step 1 image and drag while holding the key; placing it on top the speckled image.

    Merge all the layers, Layer > Merge Layers to decrease file size. Save and we are done.

Read More..

Thursday, April 24, 2014

Disney Mulan Art Direction Composition Staging Set Design Notes

Disney Mulan Art Direction- Composition, Staging, Set Design Notes

Hans Bacher was the Art Director on "Mulan" and he created some fantastic art direction and style guide notes for the artists at the Disney Florida studio. It was a beautiful collection of notes that focused on strong film composition.

Read More..

Friday, April 11, 2014

8 Design numbers rectangle structure

Q. Write a program to generate a following numbers structure:
   (Where user entered number through keyboard, for example if num=5)
                            55555
                            44444
                            33333
                            22222
                            11111

Ans.

/* c program for number structure*/
#include<stdio.h>
#include<conio.h>
int main()
{
 int num,r,c;
 printf("Enter loop repeat number(rows): "); 
 scanf("%d",&num);
 for(r=num; r>=1; r--)
 {
  for(c=num; c>=1; c--)
     printf("%d",r);
  printf("
"
);
 }
 getch();
 return 0;
}
/*************OUTPUT**************
Enter loop repeat number(rows): 5

                            55555
                            44444
                            33333
                            22222
                            11111

***********************************/              
Read More..