RasterBandClass Class
Product Availability
Description
The RasterBand object represents an existing band of a raster dataset. This band may be the only band in a single raster dataset or one band in a multiband raster dataset.
A RasterBand can be obtained from a RasterDataset or a Raster using IRasterBandCollection::Item.
Supported Platforms
Extended Error Information
Use the ISupportErrorInfo method InterfaceSupportsErrorInfo to determine if the object supports extended error information. If the object supports extended error info, VC++ developers should use the OLE/COM IErrorInfo interface to access the ErrorInfo object. Visual Basic developers should use the global error object Err to retrieve this extended error information.
Interfaces
| Interfaces | Description |
|---|---|
| IClass (esriGeoDatabase) | Provides access to members that return information about and manage the class. |
| IDataset (esriGeoDatabase) | Provides access to members that supply dataset information. |
| IGeoDataset (esriGeoDatabase) | Provides access to members that provide information about a Geographic Dataset. |
| IMetadata (esriGeoDatabase) | Provides access to members that manage and update metadata. |
| IMetadataEdit (esriGeoDatabase) | Provides access to members that provide information about whether metadata can be edited. |
| INativeTypeInfo (esriGeoDatabase) | Provides access to the native type. |
| IObjectClass (esriGeoDatabase) | Provides access to members that return information about an object class. |
| IRasterBand | Provides access to members that control a raster band object. |
| IRasterBandColormap | Provides access to members that control the colormap of a raster band. |
| IRasterBandEdit | Provides access to members that control a raster band. |
| IRasterBandEdit2 | Provides access to members that control a raster band. |
| IRasterDataset (esriGeoDatabase) | Provides access to members that control a raster dataset. |
| IRasterProps | Provides access to members that control the most common raster properties. |
| IRasterPyramid | Provides access to members that control the pyramids for a raster dataset. |
| IRasterTable | Provides access to members that control a raster table. |
| IRasterTransaction | Provides access to members that provide undo support. |
| IRawBlocks | Provides access to members that control raw pixel block access. |
| IRawPixels | Provides access to members that control pixel reading and writing from a RasterBand. |
| ISupportErrorInfo | Indicates whether a specific interface can return Automation error objects. |
| ITable (esriGeoDatabase) | Provides access to members that return information about and manage tables. |
RasterBandClass Class的更多相关文章
随机推荐
- php 图像处理类
<?php/** file: image.class.php 类名为Image 图像处理类,可以完成对各种类型的图像进行缩放.加图片水印和剪裁的操作. http://www.lai18.com ...
- First blogs start
这是我第一次写博客笔记,为了更好的成长,从现在开始我的博客记录. 我是从事linux运维的,到目前为止,已经有2年的工作经验了. 希望从此以后我能够坚持每天记录下点点滴滴.
- input type="file" 的一些问题
file可以上传文件,但通常 情况下大家都会需要设置文件上传的格式 上传文件的格式由一个 accept 属性来控制 列如: <input type="file" id=&qu ...
- Ubuntu cron定时执行任务
1.添加自定义事件 crontab -e 2.选定编辑器 3.添加执行代码 * * * * /usr/bin/curl http://www.exmple.com/cron.php crontab 命 ...
- HDU 5811 Colosseo
首先判断一下两个集合是否能够拓扑排序,顺便记录下每个节点的拓扑序. 然后看T2中每个点在T1中能够放在哪一个位置,记录下这个位置Pi. 然后T2中(按拓扑序排好),计算Pi的一个非严格递增的LIS.L ...
- 裸二分图匹配poj1469
poj1496 题意: 给你p门课程和n个学生,一个学生可以选0门,1门,或者多门课程, 现在要求一个由p个学生组成的集合,满足下列2个条件: 1.每个学生选择一个不同的课程 2.每个课程都有不同的代 ...
- Head First - 01.策略模式(Strategy Pattern)
策略模式定义了算法族,分别封装起来,让它们之间可以互相替换,此模式让算法的变化独立于使用算法的客户. 当你需要给朋友留下深刻印象,或是影响关键主管的决策时,请使用“这个”定义! 设计原则: 1.找出 ...
- 个人linux简单笔记,随时更新
vim显示行数 :set nu 查找文件 find /home -name config.txt 重命名文件或者文件夹 mv a b centos中phpize的安装 yum install php- ...
- perl脚本之目录
来源: http://www.cnblogs.com/itech/archive/2013/02/20/2919204.html http://stackoverflow.com/questions/ ...
- SQL Server 2008 2005删除或压缩数据库日志的方法
由于数据库日志增长被设置为“无限制”,所以时间一长日志文件必然会很大,一个400G的数据库居然有600G的LOG文件,严重占用了磁盘空间.由于主要是做OLAP,所以数据库本身不会有大变动,所以日志也就 ...