35 Exclusive And High Quality PSD Photoshop Resource Sites

In: web resources

22 Jan 2010

Title-photoshop-psd-resource-sitesFor picture to be perfect, sometimes it lacks some of the details. And then the questions arise. Where to look? What to look for? To speed up this photo editing process, people often choose the easy method of using resources. But the thing is – they are hard to find and costs you valuable time. Of course, most of us already know that a lot of things come from deviantART, but what will you do in the case you don’t find what you need?

I searched for a fairly long time, until finally gathered these resource sites and I hope that it will be useful not only for me but for you too.

1. deviantART

Here you can find almost everything and of course there are plenty of free PSD resources, icons, layouts, textures and much more available. You just need to take your time and do research and I am sure you’ll find what you looking for there.

deviant-art-photoshop-psd-resource-sites

2. Photoshop Candy

photoshop-candy-photoshop-psd-resource-sites

3. FreePSD

free-psd-photoshop-psd-resource-sites

4. Official PSDs

official-psd-photoshop-psd-resource-sites

5. Ganato Design

ganato-design-photoshop-psd-resource-sites

6. PSD Central

psd-central-photoshop-psd-resource-sites

7. PSGalaxy

ps-galaxy-photoshop-psd-resource-sites

8. Download PSD

download-psd-photoshop-psd-resource-sites

9. Lord of the Design

lord-of-design-photoshop-psd-resource-sites

10. Bevel and Emboss

bevel-and-emboss-photoshop-psd-resource-sites

11. e-webtemplates

e-web-templates-photoshop-psd-resource-sites

12. Free PSD Files

free-psd-files-photoshop-psd-resource-sites

13. DesignBum

design-bum-photoshop-psd-resource-sites

14. Designers Revolution

designers-revolution-photoshop-psd-resource-sites

15. Pixey

pixey-photoshop-psd-resource-sites

16. For Designer

for-designer-photoshop-psd-resource-sites

17. PSD Spy

psd-spy-photoshop-psd-resource-sites

18. Toptut

top-tut-photoshop-psd-resource-sites

19. Smashing Magazine

smashing-magazine-photoshop-psd-resource-sites

20. Jack Rebel

jack-rebel-photoshop-psd-resource-sites

21. Lorelei Web Design

lorelei-web-design-photoshop-psd-resource-sites

22. Dezignus

dezignus-photoshop-psd-resource-sites

23. BittBox

bitt-box-photoshop-psd-resource-sites

24. FrooWeb

froo-web-photoshop-psd-resource-sites

25. aaronovadia.com

aaron-ovadia-photoshop-psd-resource-sites

26. Photoshop Files

photoshop-files-photoshop-psd-resource-sites

27. HTMLTree

html-tree-photoshop-psd-resource-sites

28. Free Photoshop

free-photoshop-photoshop-psd-resource-sites

29. Keep Designing

keep-designing-photoshop-psd-resource-sites

30. The Free Logo Makers

the-free-logo-makers-photoshop-psd-resource-sites

31. GFXFever

gfx-fever-photoshop-psd-resource-sites

32. Hidden Pixels

hidden-pixels-photoshop-psd-resource-sites

33. psdGraphics

psd-graphics-photoshop-psd-resource-sites

34. PSDList

psd-list-photoshop-psd-resource-sites

35. Piksels

piksels-photoshop-psd-resource-sites

Related posts:

  1. 36 Color Gradient Sets For Photoshop and Resource Sites: Part 1
  2. 90 New And High Quality Photoshop Web Layout Tutorials
  3. 50 Really High Quality Photoshop Navigation Menu Tutorials
  4. 52 Really High Quality Free Fonts For Modern And Cool Design
  5. 45 Sites, Free Icons And PSD Resources For Web-Design

Go to Source

Related Blogs

  • Related Blogs on 35 Exclusive And High Quality PSD Photoshop Resource Sites

6 Responses to 35 Exclusive And High Quality PSD Photoshop Resource Sites

Avatar

Alfredo A

February 2nd, 2010 at 7:13 am

I recommend you learn old school, this will help with other files and other programs in the future:
- Go to My Computer, then Tools menu, Folder Options…
- Open the File Types tab.
There is a list of ALL extensions with the associated software that opens each one.
Just look for that extension (you can click on the list then type the first letter on the keyboard for a quick jump) and then click "Change" and select the software you would like to use.

Avatar

cjconnor24

March 14th, 2010 at 3:43 pm

Hmm, that doesn't make very good england?

You should be think about vectors? Freevectors.net

Avatar

cathieee<3

March 21st, 2010 at 1:46 am

If you want to make a layout site on myspace, just click register. But first, you need to know how to make layouts and stuff. You can also ask for help from other layout sites (on myspace) to help you. I have one with my friend and if you add us, we can make you a whore/support code and we can help you get started. Our link is in my sources.

Avatar

Zachary B

March 22nd, 2010 at 2:24 pm

Dreamweaver is a very useful program when you know how to use it. To add links to images, first make sure you have your properties open(Ctrl + F3) then click the image you would like to link and go down into your properties panel and either copy the URL into the LINK box or if you are linking to a page in your own site, click the folder icon to bring up your root folder. You can then double click the HTML page you would like to link to.

I hope you are using the save as HTML option in photoshop. This will export an HTML page along with saving all your sliced images into a folder. Makes things a little bit easier for you. You want to be careful how you slice your site. If you have too many slices or too few of slices, then your website will take longer to load. So pay attention to that.

I hope this was helpful. If you visit my portfolio you will be able to take a look at the code and see what I built it. I also used dreamweaver and photoshop. http://www.zacharyburghardt.com. also shoot me an email and I will send you some quick and easy tips on how to optimize your website for the search engine.

Avatar

gildward

March 23rd, 2010 at 3:58 pm

The Gradient color uses the following methods in the class java.awt.*:

Graphics2D:
This is the class which extends from the Graphics class i.e. used to control the geometry according to the coordinate. It is also used to manage texts.

Gradient():
This is a constructor of Gradient class. It is used to create a gradient color with the help of getGradient() method.

GradientPaint():
This is a constructor of Gradient class. It used to fill the gradient color in the shapes.

Syntax for GradientPaint:
GradientPaint(startX, startY, startColor, endX, endY, endColor, true)

Below is an example of a rectangle using four colors:

import javax.swing.*;
import java.awt.*;

public class GradientColor{
public static void main(String[] args) {
GradientColor gd = new GradientColor();
}

public GradientColor(){
JFrame frame = new JFrame("Drawing with a Gradient Color");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new MyComponent());
frame.setSize(400,400);
frame.setVisible(true);
}

public class MyComponent extends JComponent {
public void paint(Graphics g){
Graphics2D g2d = (Graphics2D)g;
Color s1 = Color.red;
Color e = Color.green;
GradientPaint gradient = new GradientPaint(10,10,s1,30,30,e,true);
g2d.setPaint(gradient);
g2d.drawRect(100,100,200,120);
Color s2 = Color.yellow;
Color e1 = Color.pink;
GradientPaint gradient1 = new GradientPaint(10,10,s2,30,30,e1,true);
g2d.setPaint(gradient1);
g2d.fillRect(99,99,199,119);
}
}
}

Avatar

Michelle

March 24th, 2010 at 11:43 pm

They'd have to earn a living somehow :-)
My guess is that the money comes from advertizers that wish to appeal the web-designers audience, such as stock photos sites (saw an Istockphoto add over there), flash components sites maybe some Google's Adsence, affiliates etc

Comment Form

About this blog

This blog delivers stylish and dynamic news for designers and web-developers on all subjects of design, ranging from: CSS, Ajax, Javascript, web design, graphics, typography, advertising & much more. Our goal is to help you communicate effectively on the web with an engaging website or functional interface.