• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TehRetard's Photoshop Work

Resource

MARVELOUS!
Joined
May 21, 2011
Messages
932
Reaction score
47
Location
Sweden
Hey, photoshop is my passion! :D

I will be posting the things i've made in photoshop :)

I don't have a lot because i recently formatted my hard drive..

Signature i made for a friend: (Click on the image to enlarge it)
2dgunug.png


EDIT: Could a moderator move this? I misplaced it
 
Last edited:
Looks pretty nice, I like the script etc on the man to the right.
 
Looks pretty nice, I like the script etc on the man to the right.
Thank you :) I like to do kind of grungy and disorted images :)
That language is actually C++, it's an Area Overloaded, And another script, but i can't find it :P:
Code:
Area overloded

#include<iostream.h>
#include<conio.h>
#define phi  3.14
int area(int,int);
float area(int);
void main()
{
	int a,b,c,cho;
	clrscr();
	cout<<"\t  What do you want to do?\n";
	cout<<"1. area of rectangle"<<endl;
	cout<<"2. area of circle"<<endl;
	cout<<"Choice:";
	cin>>cho;
	switch(cho)
	{
		case 1:
			cout<<"Enter lengt and breath (with white space):";
			cin>>a>>b;
			cout<<"Area of RECTANGLE:"<<area(a,b);
			break;
		case 2:
			cout<<"Enter radius:";
			cin>>c;
			cout<<"Area of CIRCLE:"<<area(c);
			break;
	  }
	getch();
  }
 int area(int x,int y)
  {
  return (x*y);
 }
 float area(int s)
 {
 return (phi*s*s);
 }
 
Thank you :) I like to do kind of grungy and disorted images :)
That language is actually C++, it's an Area Overloaded, And another script, but i can't find it :P:
Code:
Area overloded

#include<iostream.h>
#include<conio.h>
#define phi  3.14
int area(int,int);
float area(int);
void main()
{
	int a,b,c,cho;
	clrscr();
	cout<<"\t  What do you want to do?\n";
	cout<<"1. area of rectangle"<<endl;
	cout<<"2. area of circle"<<endl;
	cout<<"Choice:";
	cin>>cho;
	switch(cho)
	{
		case 1:
			cout<<"Enter lengt and breath (with white space):";
			cin>>a>>b;
			cout<<"Area of RECTANGLE:"<<area(a,b);
			break;
		case 2:
			cout<<"Enter radius:";
			cin>>c;
			cout<<"Area of CIRCLE:"<<area(c);
			break;
	  }
	getch();
  }
 int area(int x,int y)
  {
  return (x*y);
 }
 float area(int s)
 {
 return (phi*s*s);
 }
Yes, I know what language it is :p
I'd like to see some more though.
 
You'll get more in a bit, i'm making one for myself :)

Edit: Here we go :)
k1eyao.png
 
Last edited:
Looks good, you can handle the colors very well!
I hope we will be seeing more then just signatures!

keep it up
 
I like it but i dont because of all the text overlay :s, its good though, but space things out a little, but always keep your text next to a focal point.
 
Sorry guys, internet bill haven't been paid. Will probably be done this weekend or next week. :) Thank you for commenting on my thread :)
 
Back
Top