推荐阅读

CorelDRAW教程,CorelDRAW软件贝塞尔工具使用技巧
说到photoshop、Fireworks、CorelDraw这些设计软件里的“贝赛尔”工具,大家不一定很熟悉,也不一定了解它的重要性。所以很多朋友感觉这个东西有些深奥,操控起来也不是那么方便。也许你看了这篇文章之后,要掌握它就不会觉得太难了。 一、无处不在的贝塞尔曲线 说到Photoshop、Fireworks、CorelDraw这些设计软件里的“贝赛尔”工具,大家不一定很熟悉,也不一定了解它的重要性。所以很多朋友感觉这个东西有些深奥,操控起来也不是那么方便。也许你看了这篇文章之后,要掌握它就不会觉得太难了。 由于用计算机画图大部分时间是操作鼠标来掌握线条的路径(好的手写板实在价格不菲),与手绘的感觉和效果有很大的差别。即使是一位精明的画师能轻松绘出 各种图形,拿到鼠标想随心所欲的画图也不是一件容易的事。这一点是计算机万万不能代替手工工作,所以到目前为止人们只能颇感无奈。使用贝塞尔工具画图很大 程度上弥补了这一缺憾。 “贝赛尔曲线”是由法国数学家Pierre Bezier所发现,由此为计算机矢量图形学奠定了基础。它的主要意义在于无论是直线或曲线都能在数学上予以描述。 都是称谓惹的祸!“贝赛尔”工具在PhotoShop中叫“钢笔工具”;在CorelDraw中翻译成“贝赛尔工具”;而在Fireworks中叫“画 笔”。它是用来画线的一种专业工具。当然还有很多工具也可以完成画线的工作,例如大家常用的Photoshop里的直线、喷枪、画笔工具, Fireworks里的直线、铅笔和笔刷工具,CorelDraw里的自由笔,手绘工具等等。 用“贝塞尔”工具无论是画直线或是 曲线,都非常简单,随手可得。其操作特点是通过用鼠标在面板上放置各个锚点,根据锚点的路径和描绘的先后顺序,产生直线或者是曲线的效果。我们都知道路径 由一个或多个直线段或曲线段组成。锚点标记路径段的端点。在曲线段上,每个选中的锚点显示一条或两条方向线,方向线以方向点结束。方向线和方向点的位置确 定曲线段的大小和形状。移动这些元素将改变路径中曲线的形状,可以看下图。路径可以是闭合的,没有起点或终点(如圆圈),也可以是开放的,有明显的端点 (如波浪线)。 贝塞尔「Pierre Bezier」。法国雷诺「Renault」汽车公司工程师,他发明贝塞尔曲线的目的是为设计汽车外形,逝世于一九九九年底,距今尚没多久。

Authorware自制拼图游戏
拼图游戏相信大家都不会陌生,现在我们不妨利用Authorware来制作一个拼图游戏,借此切身体会Authorware 的强大交互设计。首先我们来构思一下拼图游戏的大致样子:顺序零乱的拼块分布于原始矩形方块内,游戏者通过鼠标拖拽拼块到某一目标矩形方块中,如果拖拽目的地正确,则自动对齐居中,否则退回到原始位置。游戏者在游戏过程中可“作弊”选择查看原图;中途也可选择放弃并退出游戏。如图(1)是拼图游戏的最终执行界面。构思完毕,可以开始我们的“设计之旅”了。图(1)拼图游戏执行界面制作步骤:拼图游戏,图是主题,拼是过程,因此制作前必须准备好拼图游戏的相关图片,包括切割好的原图拼块(可选择photoshop或者fireworks等图形处理工具进行切割)。一切就绪,启动Authorware 6.0开始工作!1)设计背景与导入拼块图(2)背景与导入拼块设计流程如图(2)所示,“BackGround”显示图标导入拼图游戏背景。为了防止游戏者在游戏过程中意外拖动背景图片,在“BackGround”图标的计算窗口写入: Movable@"BackGround":=FALSE

Flex程序开发心得小结
和Flash的开发环境相比,Flex提供的组件库确实很诱人,但由于功能太全面,导致程序的体积大,有时候使用不当,可能会影响程序运行效率。 在Flex的帮助手册中,有一个专门的章节讲了程序的优化,下面是我结合帮助作的几点小结: 1、避免容器的多级嵌套,减少相对尺寸、相对定位的使用。在使用百分比来给容器内的元件定尺寸,一旦容器中的任何一个元件的位置和尺寸变化,都会引发容器对所有子级的重定位动作。如果嵌套的级别很深,这个计算量会很大。 2、尽量使用轻量级的容器Canvas是体积最小的容器,它只支持绝对定位。很多时候,都可以使用它来代替HBOx和VBox。另外,Canvas也是我们编写自定义容器性质组件的一个首选。它具有容器的基本功能,利于扩展。 3、避免使用大体积的组件,比如DataGrid、AdvancedDataGrid大个子组件的功能强大,但开销也是非常大的。由于功能的复杂性,使得皮肤、样式、itemRenderer的实现都格外复杂。 4、处理数据时多用分页的方式在使用数据类型控件时,尽量减少数据一次的显示量。比如TileList,它会把数据一次性全部创建,不管是不是需要显示,这样很浪费资源。 ViewStack 、TabNavigator等在处理元件时,并不是一次创建,只要元件在第一次被显示时才创建,这样,就避免的不必要的开销。 5、setStyle和styleNameFlex 组件的皮肤都是可视化元件,组件在自身初始化时,会使用当前的样式比如styleName完成所有皮肤元件的绘制。如果我们在运行期间通过setStyle修改了组件的样式,组件的尺寸、位置就会作相应调整。联系到第一条,如果组件位于一个层级很深的容器中,也会有一个大的计算量。

如何达到照片整体的均衡
均衡是人们在长期生活中形成一种心理要求和形式感觉,摄影中的画面均衡与否,不仅对摄影画面的整体结构有影响,还与观众的欣赏心理紧密地联系着。所以,摄影中画面整体的均衡非常重要。 画面均衡是我们在摄影创作中潜在一种关系艺术,灵活的运用和实践,并找出画面布局的规律与表现手法,对提高我们的摄影创作成功起着重要的作用。 下面我参考了一些摄影作品,并分析自我在风景拍摄中的一些经验和课堂教学经验,整理了对于均衡在摄影中的一些理解和技巧,希望这样的总结对大家有所收获。 一、画面均衡的作用 学习均衡,我们首先要清楚它的作用。我们可以从几个方面来强调均衡对画面的表现力。 1、庄重、肃穆。画面均衡平稳,有意地采取对称式的均衡,从对称均衡中显示出一种庄重的关系。 2、幽雅、恬静、柔媚。画面生动活泼,变化中的均衡让画面有疏有密,有虚有实,从整体的均衡中表现画面的唯美。 3、有意地违反均衡的法则,使画面在不均衡中出现刻意的安排。利用不均衡的形式来表达主题。 二、画面均衡的正确理解 2.1均衡并不是四平八稳
最新发布

用图层 为黑白MM上妆.很简单哦
发个教程上来 上次记得有人发这样的作业 今天我在找出一种上色的方法!...主要是觉得这个方法上色比调节色调饱和度来得好希望大家喜欢 ^-^原图screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">效果图screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">教程screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">作业区:screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">

PS教程-照片效果制作
PS教程-照片效果制作screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmousewheel="return imgzoom(this);">

Photoshop制作一双水灵的眼睛
4、现在进入快速蒙版编辑状态,先将前景色和背景色设置为黑色和白色,然后选择工具箱中的“画笔工具”,在画笔选项中设置适当的画笔大小,并将不透明度设置为100%,再按住鼠标左键绘制女孩的眼睛,效果如图03所示。 5、单击工具箱左下方的“以标准模式编辑”按钮,回到普通编辑状态,眼球部位将自动生成选区,效果如图04所示。 图04 6、选择菜单栏中的“图像”“调整”“色阶”命令,在弹出的“色阶”对话框中,按住鼠标左键将右边的滑块向左拖动,使眼睛更明亮,效果如图05所示。 图05 7、选择菜单栏中的“图像”“调整”“色彩平衡”命令,在弹出的“色彩平衡”对话框中的色调平衡选框内选择“高光”并拖动滑块,适当增加青色和蓝色,调整色彩平衡,效果如图06所示。 图06 8、修饰眼睛的高光。选择工具箱中的画笔工具,在画笔选项中设置适当的画笔大小,并将不透明度设置为100%,在图层面板中新建图层,将前景色设置为白色,在眼睛高光处绘制,并在眼睛高光处加一点蓝色。 9、在图层面板中锁定透明区域按钮,在选择工具箱中的画笔工具在眼睛高光的边缘描绘上轻微的蓝色,按Ctrl+D取消选区,最终效果如图07所示。

Photoshop校正颜色差异 完美拼接全景照片
Photoshop校正颜色差异 完美拼接全景照片 有了Photoshop,拼接照片成为很方便的事情,拼接出来的全景照片有助于表现宽阔的场面。 但是很多朋友拼接照片的时候往往会遇到需要拼接的照片影调、色调都有差异的情况。拼接的照片都是在同一时间拍摄的,通常是由于自动曝光形成片子之间的颜色差异。 我们先将片子在Photoshop中的拼接位置对好,然后开始校正颜色。 screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/20068753930734.jpg');}" src="/Files/photo/2007-4/2/074215445498873.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/20068753931621.jpg');}" src="/Files/photo/2007-4/2/074215445482978.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/20068753931371.jpg');}" src="/Files/photo/2007-4/2/074215445488380.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/20068753931112.jpg');}" src="/Files/photo/2007-4/2/07421544541117.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/20068753932833.jpg');}" src="/Files/photo/2007-4/2/074215445472403.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>

用Photoshop制作水晶特殊效果字
在一个寒冷的冬日里,灰蒙蒙的天空中飘起了鹅毛大雪。正在做3D字体特效的我突发奇想,要做一个3D水晶字特效。 万事开头难screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886150734.jpg');}" src="/Files/photo/2007-4/2/074215445423076.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>图1“水晶之恋” 启动Photoshop,新建一个500×200像素的RGB白色文档。输入“水晶之恋”(文鼎特粗宋简体、大小25点、黑色,如图1),转换图层,完成第一步。想一想3D字效是具有厚度的,所以应该设法使字体变厚,怎么使它变厚呢?根据经验,常用3D特效内置滤镜有浮雕效果、光照效果。但这两种滤镜的3D效果都附着于背景之上,使其3D意义大打折扣,故而独辟蹊径。我们在下面就使用“动感模糊”来进行。 尝试失败screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886156621.jpg');}" src="/Files/photo/2007-4/2/074215445542244.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>图2模糊不清的文字screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886157371.jpg');}" src="/Files/photo/2007-4/2/074215445565838.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>图3若隐若现的“水晶之恋” 执行“动感模糊”,选择角度为45(像素)、距离为45(像素)。此时字体模糊不清混着一团,毫无层次感可言(如图2)。但水晶的边缘清晰锐丽,我们没有达到目的。Photoshop中有“画笔描边”,专用于边缘处理,但并不适合于制作水晶边缘。在这里我们执行“查找边缘”,水晶字已经隐约呈现(如图3),不禁有些得意洋洋……将渐变模式设为“颜色加深”,迅速拉出径向透明彩虹渐变,在我们面前出现了五彩缤纷的色彩。细看字体却并未如我们所愿,影像重叠,毫无水晶质感(如图4)。screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886157112.jpg');}" src="/Files/photo/2007-4/2/074215445592086.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>图4无水晶质感的“水晶之恋” 痛定思痛 经过仔细分析,究其原因:Photoshop 5.0版以后,输入字体会单独建层,使得“查找边缘”在“透明背景”上进行,才导致影像有重叠感,从而缺乏质感。这又是因为“查找边缘”是用于标识图像中有明显过渡的区域并强调边缘,在白色背景上用深色线条勾画图像边缘的,因此在“动感模糊”之后必需合并背景图层,产生白色背景,再进行“查找边缘”。水晶字姗姗来迟,边缘锐丽清晰、富有层次、空间感强。这时直接拉渐变显然不行,经过试验只有采用“颜色加深”渐变混合模式效果还差强人意,却无水晶质感。用“颜色”渐变混合模式质感略优,却色彩寡淡。思量之下:“颜色”模式是用底色的光度(亮度)以及混合颜色的色相和饱和度,创建结果颜色的,以白色为背景的字体只能是暗光度(低亮度),效果必然色彩寡淡,且白色不利于衬托出水晶的透明感;是以将图像反相,使字体变为亮光度(高亮度),背景变为黑色。 功成名就screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886157833.jpg');}" src="/Files/photo/2007-4/2/074215445522835.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>图5晶莹剔透的“水晶之恋” 取消上一步渐变,执行“反相”,此时字体亮度并不高,可用“色阶”调整,“输入色阶”为0、0.9和100。拉出渐变,晶莹剔透的水晶字闪现在你的眼帘前(如图5)!其实“剔透”敢说,晶莹倒未必。对了,加些闪光。设置前景色为金黄色,用“画笔工具”,选择“闪光状画笔”四处“闪”吧!如果想看得更清,或者说你建的文档更大,就加大参数值;怎么,闪光小小的,不会用“自由变换”?每一个闪光都要建新图层?哇噻!没搞错吧!那就按Alt键移动复制即可,最终效果如图6。screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886157140.jpg');}" src="/Files/photo/2007-4/2/074215445599431.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>图6星光闪闪的“水晶之恋”

Photoshop-设计实例-Photoshop制作九天飞瀑
先来看一下成品。 screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886315734.jpg');}" src="/Files/photo/2007-4/2/074215445591893.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>在本案例及以后的例子中,为讲述方便我们规定第一张出现的图片均为“A图”,第二张出现的图片为“B图”。 影像合成第一步:图像的选取与剪切 在合成过程中,我们通常需要几幅图片的某一局部,于是对图像的选取就不可避免了。常用的选取方法有多种(魔术棒、选框工具、套索工具、选择菜单中的色彩范围命令均可),魔术棒工具较适用于选择成块的色素,选框工具较适用于框定规则的形状,套索工具与其相反,用来选取不规则的形状,下面我们介绍使用色彩范围命令完成对瀑布的选定。首先激活“B图”,执行选择菜单中的“色彩范围”命令,选择“图像”单选按扭,我吸管点取瀑布的白色部分,再选择“选择范围”单选按扭,调整颜色容差值,使瀑布的大部分被选中,单击好,完成选取的第一步。(如图) screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886319621.jpg');}" src="/Files/photo/2007-4/2/074215445540313.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>通过上一步已完成了对图像大部分区域的选择,但还不尽满意,按住SHIFT键的同时,用套索工具框取瀑布右边的未选择部分(这一步是为了增加瀑布的选择区域),按住ALT键的同时,用套索工具框取瀑布的左边部分,减少选择区域。 这一步其实没有多大的技巧,但需要你的耐心和细心。 影像合成第二步:建立图层 处理一幅稍为复杂的图像,通常需要建立若干个图层,下面你将亲身体会到图层带给我们的无尽益处。用移动工具将已选取好的瀑布拖到“A图”的适当部位,如图 screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886320371.jpg');}" src="/Files/photo/2007-4/2/074215445544906.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>激活图层一,用套索工具选择底部边缘,执行选择>羽化命令,设定羽化容差为20,单击好。再执行编辑>清除命令,除去明显的边缘部分。执行编辑>变换>扭曲命令,使瀑布的上边缘与悬崖口吻合。为图层一添加蒙板(将图层一拖到下方的标志中即可),选择渐变工具,把瀑布的左上角部分渐变为黑色(见图) screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886322112.jpg');}" src="/Files/photo/2007-4/2/074215445539743.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>影像合成第三步:影像的融合 图层的合并免不了拼接的痕迹,其实上面的一系列操作就是对影像在作融合处理,下面我们将进一步对瀑布的颜色及状态进行微调。 执行滤镜>模糊>动感模糊,将其参数设置成如下: screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886323833.jpg');}" src="/Files/photo/2007-4/2/074215445517843.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>执行图像>调整>色相|饱和度,选中着色一项,设饱和度为33,其它默认。 试比较调整前的图像: screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886324140.jpg');}" src="/Files/photo/2007-4/2/07421544557883.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>和成品 screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/2006886326876.jpg');}" src="/Files/photo/2007-4/2/074215445566579.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>

Photoshop巧妙使用渐变制作特效
很多朋友问我这两张片子是怎么做的后期,其实很简单。个人觉得最主要的是要明白如何用手里的工具实现你的想法,而不是如果运用工具,现在发上来,制作过程跟大家一起讨论。 步骤一:screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/200692761616734.jpg');}" src="/Files/photo/2007-4/2/074215353125534.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0> 步骤二:screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/200692761616621.jpg');}" src="/Files/photo/2007-4/2/074215353174749.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0> 步骤三:screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/200692761617371.jpg');}" src="/Files/photo/2007-4/2/074215353186448.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0> 步骤四:screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/200692761617112.jpg');}" src="/Files/photo/2007-4/2/07421535311498.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0> 步骤五:screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/200692761618833.jpg');}" src="/Files/photo/2007-4/2/074215353147150.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0> 步骤六:screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('UploadFiles/200602/200692761618140.jpg');}" src="/Files/photo/2007-4/2/074215353168496.jpg" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>