推荐阅读

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均衡并不是四平八稳
最新发布

信封效果,很漂亮
图片附件: 2.gif (2006-7-2 19:09, 25.23 K)图片附件: 3.gif (2006-7-2 19:09, 36.9 K)图片附件: 4.gif (2006-7-2 19:09, 37.2 K)

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';}" 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);" pop="Click here to open new window CTRL+Mouse wheel to zoom in/out" resized="true">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);" pop="Click here to open new window CTRL+Mouse wheel to zoom in/out" resized="true">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);" pop="Click here to open new window CTRL+Mouse wheel to zoom in/out" resized="true">最后在做一些色调,排版的操作,完工。 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);">

色彩范围+蒙板二步抠出飘发MM
色彩范围+蒙板二步抠出飘发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);">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);">
![人物骞理[延伸]](/statics/article/imgs/default.gif)
人物骞理[延伸]
人物骞理[延伸](作者:H莓绒绒)效果: 图片附件: 1.jpg (2006-7-2 20:32, 80.52 K)素材: 图片附件: 2.jpg (2006-7-2 20:32, 44.98 K)

u作一真得步E(非新手)06年全新版
u作一真得步E(非新手)06年全新版(作者:H莓绒绒)此教程PS熟悉得人士..如果是新手就不用再看下去.我b是⒆约浩rb作一真D得步E概括得告V大..b是一U子.不用以后作D完全按菸业米龇.可以延伸一些|西.1.打_一要做得真D.做一些人物理(美百.磨皮==)http://www.missyuan.com/viewthread.php?tid=48217原D: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);">2.新建一花(巫约合胍做的大小)⑻理好得D片用工具拖上去..然后把d景也拖上(放在D片下I)用羽化橡皮把人物擦拭到cd景融洽(也可D)@Y做的我恍┯迷Dd景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);">3.在D上新建一蛹由铣榻z(]:很多人J槌榻z可以最后加.但是加叻抽z以后再加其他得始D片骞{得很手)拖上素材(盗侩S意)..{U式(屏幕/亮/光==)住放在D上.抽z下用羽化擦子(大小和差不多)擦人物部.._到所M意得骞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);">4.拉一u.U式昔酃.然后利用色Z平衡碚{色.直至M意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);">5.加上P刷.字.框.好..完成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快速打造iPod美女海报
Photoshop快速打造iPod美女海报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打造好看的梦幻氛围效果图
Photoshop打造好看的梦幻氛围效果图用photoshop好久了,打算为新学习photoshop的菜鸟们写一套简单易懂的教程,当然,既然是为菜鸟们准备的,就都是些比较基本的东东,高手就没必要看了,呵呵 先来个梦幻氛围的效果吧!1.新建空白文档(Ctrl+N),因为只是在网上演示,所以我用的是72dpi/RGB颜色模式,大家可以根据实际需要调整文档大小和分辨率。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);">2.选择渐变工具(G),选择一种彩虹渐变或者自己定义一个适合自己要表达的主体的渐变色,不同颜色做出来的效果也不同,大家可以多试试。运用渐变,可以选择不同的角度,呈现的效果也不同哦,呵呵。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);">3.填好渐变色之后,再使用“旋转扭曲”滤镜:Filter>Distrot>Twirl...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);"> 3.再新建一个图层(Ctrl+Shift+N),用来做光晕的效果。 4.选择画笔工具(B),调出画笔选项面板(F5)。选择一种适合的笔触:)我选的是这个: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);">5.在光晕图层上运用旋转扭曲滤镜,因为刚才我们在背景层已经用过一次旋转扭曲滤镜,所以可以直接用快捷方式来运用:Ctrl+F。如果觉得旋转不够,可以再重复一次。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);">6.现在看来效果还不是很够,我们把光晕层复制出一个,快捷方式:Ctrl+J。我们把复制出来的图层运用“高斯模糊”滤镜模糊一下。Filter>Blur>Gaussian Blur...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);">7.最后再新建一个图层,添加少许的星光。选择画笔工具(B),调出画笔选项面板(F5)。选择一种星光形状的笔触,用白色或其它颜色随意画出一些闪烁的星光。最后挑选小部分的星光运用模糊滤镜。还可以把某些图层的不透明度减低一点点。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菜鸟教程之一:简单的梦幻氛围就完成了,后续教程慢慢更新。

签名写真最好做~
签名写真最好做~大家看下了 还不错! 图片附件: 1.jpg (2006-7-2 18:46, 280.71 K)图片附件: 2.jpg (2006-7-2 18:46, 80.58 K)图片附件: 3.jpg (2006-7-2 18:47, 85.44 K)图片附件: 4.jpg (2006-7-2 18:47, 78.44 K)图片附件: 5.jpg (2006-7-2 18:49, 100.1 K)

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);">效果图…… 记得还有别的方法…… 忘了…… 忘了说…………描边先去掉那个选区 然后按住底图 再按住CTRL按一次,再描边 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);">