自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

tyjyhu

留一些笔记

  • 博客(3)
  • 资源 (2)
  • 收藏
  • 关注

原创 ubuntu 桌面版 postgresql数据库的界面管理工具pgadmin3 安装使用

postgresql数据库的界面管理工具 1. root权限下#apt-get install pgadmin32.安装完成后执行#pgadmin3正常情况下会启动pgadminimg" align="middle" src="http://hi.csdn.net/attachment/201111/8/0_13207249571Yqf.gif" width="379" h

2011-11-08 13:49:42 2421

原创 postgresql , postgis 安装

root权限下安装1.安装postgresql 和 postgis # apt-get install postgresql-8.4 postgresql-8.4-postgis2.安装完成后会自动生成postgres 账号,进入postgres账号#su postgres3.执行psql,进入postgres模式#psql postgres4.在postgres模式下

2011-11-07 19:01:42 577

原创 还是写点东西吧,总是空的也不好

还是写点东西吧,总是空的也不好

2008-06-26 16:01:00 337

Emiller的Nginx模块开发指南

内容目录 0. 预备知识....................................................................................................................1 1. Nginx模块任务委派的主要轮廓..............................................................................1 2. Nginx模块的组成.....................................................................................................3 2.1. 模块的配置结构体..........................................................................................3 2.2. 模块的指令......................................................................................................4 2.3. 模块的上下文..................................................................................................6 2.3.1. 创建位置结构体(create_loc_conf)..................................................8 2.3.2. 初始化结构体(merge_loc_conf)......................................................8 2.4. 模块定义..........................................................................................................9 2.5. 模块注册........................................................................................................10 3. 处理模块、过滤模块和 负载均衡模块................................................................10 3.1. 剖析处理模块(非代理).................................................................................10 3.1.1. 获得位置配置结构体..........................................................................10 3.1.2. 产生回复..............................................................................................11 3.1.3. 发送HTTP头部....................................................................................12 3.1.4. 发送HTTP主体....................................................................................13 3.2. 上游模块剖析(又称代理模块)................................................................14 i

2010-05-06

Programming in Java™ Advanced Imaging

Figures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xi Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii Disclaimer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii About This Book . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii Related Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xv Additional Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xv Style Conventions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvi 1 Introduction to Java Advanced Imaging . . . . . . . . . . . . . . . . . . . . 1 1.1 The Evolution of Imaging in Java . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2 1.2 Why Another Imaging API? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2 1.3 JAI Features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3 1.3.1 Cross-platform Imaging . . . . . . . . . . . . . . . . . . . . . . . . . . .3 1.3.2 Distributed Imaging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .4 1.3.3 Object-oriented API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .4 1.3.4 Flexible and Extensible . . . . . . . . . . . . . . . . . . . . . . . . . . .4 1.3.5 Device Independent . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .4 1.3.6 Powerful . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5 1.3.7 High Performance. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5 1.3.8 Interoperable. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5 1.4 A Simple JAI Program. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .6 2 Java AWT Imaging. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 2.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .9 2.1.1 The AWT Push Model . . . . . . . . . . . . . . . . . . . . . . . . . . . .9 2.1.2 AWT Push Model Interfaces and Classes . . . . . . . . . . . .11 2.2 The Immediate Mode Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .11 2.2.1 Rendering Independence . . . . . . . . . . . . . . . . . . . . . . . . .12 2.2.2 Rendering-independent Imaging in Java AWT . . . . . . . .13 2.2.3 The Renderable Layer vs. the Rendered Layer . . . . . . . .13 2.2.4 The Render Context . . . . . . . . . . . . . . . . . . . . . . . . . . . . .15 2.3 Renderable and Rendered Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . .15 2.3.1 The Renderable Layer . . . . . . . . . . . . . . . . . . . . . . . . . . .16 2.3.2 The Rendered Layer . . . . . . . . . . . . . . . . . . . . . . . . . . . . .18 2.4 Java Image Data Representation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .19

2010-05-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除