jump to navigation

Photoshop ile gerçekçi akan su efekti yapma 13 Eylül, 2008

Posted by cemg in PHOTOSHOP.
Tags: , , , ,
add a comment

 

500×500 pixel boyutlarında yeni bir dosya oluşturun.

“D” tuşuna basarak renk paletimizi siyah-beyaz hale getirin.

Yeni bir katman oluştur ve aşağıdaki filtreyi uygula:
Filter->Render->Clouds

 

Aşağıdaki filtreyi uygula:

Filter->Blur->Gaussian Blur
Set: 6

 

Aşağıdaki filtreyi uygula: Filter->Blur->Motion Blur
Set: Angle: 90, Distance: 80

Image->Image Size altından genişliği 300 pixel yapın. Yalnız ”Constrain Proportions” seçili olmasın.
Şimdi belgemiz 300×500 pixel boyutlarında oldu.
Aşağıdaki filtreyi uygula:

Filter->Artistic->Plastic Wrap
Set: Highlight Strength: 15, Detail:10, Smoothness:10

 

Aşağıdaki filtreyi uygula:

Filter->Sketch->Chrome
Set: Detail:0, Smoothness: 8

Edit->Fade Chrome seçeneğinden;
Set: Opacity:100%, Mode: Hard Light
Image->Image Size ile yükseklik değerini 800 pixel yapalım. Yine ”Constrain Proportions” seçili olmasın.
Aşağıdaki Transform işleminden Warp ile eğim noktaları ile oynayarak su’yumuzu şekillendirelim.

Edit->Transform->Warp

Arkaplana degrade verdikten sonra suyun olduğu katmanın Blending Mode seçeneğini “Hard Light” yapın.

 

Hazır yapılmış örneği indirmek için tıklayın.

ASP ile Word Belgeleri Oluşturma 9 Eylül, 2008

Posted by cemg in ASP.
Tags: , , , ,
add a comment

<%
Response.ContentType = “application/msword”
Response.AddHeader “Content-Disposition”, “attachment;filename=NAME.doc”
response.Write(“Dotnetindex.com : Visit Site” & vbnewline)
response.Write(“We can use HTML codes for word documents”)
response.Write (” CSS can be used tooo”)
%>

ASP ile Excel Dosyası Oluşturma 9 Eylül, 2008

Posted by cemg in ASP.
Tags: , , , ,
add a comment

<%
Response.AddHeader “Content-Disposition”, “attachment;filename=members.xls”
Response.ContentType = “application/vnd.ms-excel”
response.write “<table width=”100%” border=”1″ >”
response.write “<tr>”
response.write “<th width=”"40%”"><b>Name</b></th>”
response.write “<th width=”"30%”"><b>Username</b></th>”
response.write “<th width=”"30%”"><b>Password</b></th>”
response.write “</tr>”
response.write “<tr>”
response.write “<td width=”"40%”">Scud Block</td>”
response.write “<td width=”"30%”">scud@gazatem.com</td>”
response.write “<td width=”"30%”">mypassword</td>”
response.write “</tr>”
response.write “</table>”
%>