上一页 1 ··· 30 31 32 33 34

2009年7月17日

摘要: 颜色的变化跟人类的智慧一样,是无穷的。每个阶段都会有流行的色彩,有属于一个时代的颜色!WEB2.0是一个概念,它宣扬,定位了一些东西,以用户为中心,群体智慧,分享等等,等等.同时顺应这些需求,一些顶尖的设计师和开发者赋予并领导了一些色彩流行趋势.我凭感觉做了部分归纳和收集,心理没大有底,把能想到的列出来希望跟大家一起探讨,再做补充吧! 淡淡的浅色系及延伸应用 此类颜色似乎最早被应用在一些文档处理软件比如word,和操作系统里(比如MacOSX)用于分类归档、标记、或者突出显示使用。此类颜色给人的感觉很环保,不伤眼睛,而且对比度恰到好处,既可以有效区分,又不会显的太过突兀. google,... 阅读全文
posted @ 2009-07-17 00:52 做个不善的人 阅读(218) 评论(0) 推荐(0)
 

2009年7月9日

摘要: [0001]Power and thermal management are becoming more challenging than ever before in all segments of computer-based systems. While in the server domain, the cost of electricity drives the need for low power systems, in mobile systems battery life and thermal limitations make these issues relevant. O 阅读全文
posted @ 2009-07-09 11:38 做个不善的人 阅读(333) 评论(0) 推荐(0)
 

2009年7月8日

摘要: How many built-in character types are there in C++? The answer may surprise you.The language described in the original 1978 C Programming Language (aka "the White Book") by Kernighan and Ritchie didn't have the keyword signed, meaning that there were only two character types: char and 阅读全文
posted @ 2009-07-08 22:57 做个不善的人 阅读(704) 评论(0) 推荐(0)
 
摘要: Notice: Unicode 只是分配整数给字符的编码表。现有若干种将一串字符表示为一串字节的方法。最显而易见的两种方法是将 Unicode 文本存储为 2 个 或 4 个字节序列的串。这两种方法的正式名称分别为 UCS-2 和 UCS-4. 在 Unix 下使用 UCS-2 (或 UCS-4) 会导致非常严重的问题. 用这些编码的字符串会包含一些特殊的字符, 比如 '\0' 或 '/', 它们在 文件名和其他 C 库函数参数里都有特别的含义. 另外, 大多数使用 ASCII 文件的 UNIX 下的工具, 如果不进行重大修改是无法读取 16 位的字符的. 基于 阅读全文
posted @ 2009-07-08 19:33 做个不善的人 阅读(2300) 评论(0) 推荐(0)
 

2009年7月6日

摘要: 一. 在哪见过、听说过Gamma? * 还用说,Adobe Gamma * 常听说MAC的默认Gamma是1.8,PC的是2.2 * 我的显卡驱动程序里有Gamma调节 * 我下载了一个软件,也可以调节显示器的Gamma * WinDVD播放器带Gamma校正功能 * ACDSEE的曝光调节里可以调Gamma * ACDSEE的选项中有Enable Gamma Correction * XV Viewer 能以参数-gamma 2.2 启动(x window也可以) * PNG文件里有Gamma校正 * Photoshop里当然也有 * ICC Profile也和Gam... 阅读全文
posted @ 2009-07-06 23:36 做个不善的人 阅读(646) 评论(0) 推荐(0)
 
摘要: 颜色通常用三个相对独立的属性来描述,三个独立变量综合作用,自然就构成一个空间坐标,这就是颜色空间。而颜色可以由不同的角度,用三个一组的不同属性加以描述,就产生了不同的颜色空间。但被描述的颜色对象本身是客观的,不同颜色空间只是从不同的角度去衡量同一个对象。 颜色空间按照基本结构可以分两大类:基色颜色空间和色、亮分离颜色空间。前者的典型是 RGB,还包括 CMY、CMYK、CIE XYZ 等;后者包括 YCC/YUV、Lab、以及一批“色相类颜色空间”。CIE XYZ 是定义一切颜色空间的基准,很奇妙的是,它即属于基色颜色空间,也属于色、亮分离颜色空间,是贯穿两者的枢纽。色、亮分离颜色空间中的子. 阅读全文
posted @ 2009-07-06 23:14 做个不善的人 阅读(3707) 评论(0) 推荐(0)
 

2009年7月5日

摘要: First, let us examine how the Controlling Access to Class Members is defined:Member-Access Control Type of AccessMeaningprivateClass members declared as private can be used only by member functions and friends (classes or functions) of the class.protectedClass members declared as protected can be us 阅读全文
posted @ 2009-07-05 11:38 做个不善的人 阅读(696) 评论(0) 推荐(0)
 
摘要: When talking about new there are two distinct parts: the operator new, and the function operator new(). The last time I went over this with somebody, it took them ages to get it. What happens is that the operator new calls the function operator new() to allocate memory. The function operator new() a 阅读全文
posted @ 2009-07-05 10:35 做个不善的人 阅读(551) 评论(1) 推荐(0)
 
上一页 1 ··· 30 31 32 33 34