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 ...
- oracle 存储过程(1)
--建一张user_info表create table user_info (id varchar2(10),name varchar2(20),password varchar2(20),addre ...
- Java静态语句块、语句块、构造方法执行顺序
package com.imooc.practice; class Parent{ public Parent(){ System.out.println("Parent构造方法执行!&qu ...
- hdu 1166 敌兵布阵(线段树详解)
Problem Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任 ...
- Linux系统故障处理案例(一)【转】
2016-08-05 14:41 运行环境:CentOS6.7 故障原因: 昨天在线执行命令yum -y update 在命令执行途中,强制中断并直接运行poweroff命令关机.再次开机出现如图所示 ...
- MySQL数据备份和恢复
1.数据备份 mysqldump -uroot -p databasename > file.sql 2.数据还原 mysql -u root -p databasename < file ...
- 浅谈 qmake 之 shadow build
shadow build shadow build 是什么东西?就是将源码路径和构建路径分开(也就是生成的makefile文件和其他产物都不放到源码路径),以此来保证源码路径的清洁. 这不是qmake ...
- centos主机信任
一.实现原理 使用一种被称为"公私钥"认证的方式来进行ssh登录."公私钥"认证方式简单的解释是: 首先在客户端上创建一对公私钥(公钥文件:~/.ssh/id_ ...
- 收缩sql server数据库日志
项目中,可能数据库(sql server数据库)日志太多,占了很多磁盘空间,可以通过收缩数据库日志,减少日志文件大小. 下面以Northwind数据库为例: 1.把数据库的恢复模式设置为“简单模式”: ...
- 转:用ANT执行SQL
http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=21340438&id=5160076 http://kayo.itey ...