用于 Adobe® Flash® Platform 的 ActionScript® 3.0 参考
主页  |  隐藏包列表和类列表 |   |   |  新增内容  |  索引  |  附录  |  为什么显示为英语?
过滤条件: 正在从服务器检索数据...
正在从服务器检索数据...
mx.graphics 

ImageSnapshot  - AS3 Flex

mx.graphics
public dynamic class ImageSnapshot
继承ImageSnapshot Inheritance Object

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

一种帮助器类,用于捕获实现了 flash.display.IBitmapDrawable 的任何 Flash 组件(包括 Flex UIComponent)的快照。

可以将此类的实例作为 RemoteObject 发送到 Adobe 的 LiveCycle Data Services 中,以便生成客户端图像的 PDF 文件。如果您需要指定此图像的除 contentTypewidthheight 属性之外的其他属性,则应该对 properties 对象设置名称/值对。

在 Flex 的早期版本中,您可以对 ImageSnapshot 实例本身设置这些附加属性。此类仍然是动态的,以便允许设置附加属性。但在将来版本的 Flex 中,它可能不再是动态的。



公共属性
 属性由以下参数定义
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
  contentType : String
用于捕获此快照的图像编码格式的 MIME 内容类型。
ImageSnapshot
  data : ByteArray
表示图像快照的编码数据。
ImageSnapshot
  defaultEncoder : Class
[静态] 用于捕获图像的默认 mx.graphics.codec.IImageEncoder 实现。
ImageSnapshot
  height : int
图像高度(以像素为单位)。
ImageSnapshot
  properties : Object
一个 Object,包含指定图像附加属性的名称/值对。
ImageSnapshot
  width : int
图像宽度(以像素为单位)。
ImageSnapshot
公共方法
 方法由以下参数定义
  
ImageSnapshot(width:int = 0, height:int = 0, data:ByteArray = null, contentType:String = null)
构造函数。
ImageSnapshot
  
captureBitmapData(source:IBitmapDrawable, matrix:Matrix = null, colorTransform:flash.geom:ColorTransform = null, blendMode:String = null, clipRect:Rectangle = null, smoothing:Boolean = false):BitmapData
[静态] 用于获取 UI 组件的原始快照作为 BitmapData 的实用程序方法。
ImageSnapshot
  
captureImage(source:IBitmapDrawable, dpi:Number = 0, encoder:IImageEncoder = null, scaleLimited:Boolean = true):ImageSnapshot
[静态] 用于获取组件快照、将其缩放到特定分辨率(以 dpi 为单位)并编码为特定图像格式的实用程序方法。
ImageSnapshot
  
[静态] 一种实用程序方法,用于将 ImageSnapshot 转换为 Base-64 编码的 String,以便使用基于文本的序列化格式(如 XML)进行传输。
ImageSnapshot
 Inherited
表示对象是否已经定义了指定的属性。
Object
 Inherited
表示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
表示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。
Object
 Inherited
返回指定对象的字符串表示形式。
Object
 Inherited
返回指定对象的原始值。
Object
公共常量
 常量由以下参数定义
  MAX_BITMAP_DIMENSION : int = 2880
[静态] Bitmap 的最大宽度和高度。
ImageSnapshot
属性详细信息

contentType

属性
contentType:String

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

用于捕获此快照的图像编码格式的 MIME 内容类型。对于 PNG 格式图像,MIME 类型为“image/png”。对于 JPG 或 JPEG 图像,MIME 类型为“image/jpeg”



实现
    public function get contentType():String
    public function set contentType(value:String):void

data

属性 
data:ByteArray

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

表示图像快照的编码数据。



实现
    public function get data():ByteArray
    public function set data(value:ByteArray):void

defaultEncoder

属性 
public static var defaultEncoder:Class

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

用于捕获图像的默认 mx.graphics.codec.IImageEncoder 实现。两个实现包括 PNGEncoder 和 JPEGEncoder。默认编码器使用 PNG 格式。

height

属性 
height:int

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

图像高度(以像素为单位)。



实现
    public function get height():int
    public function set height(value:int):void

properties

属性 
properties:Object

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

一个 Object,包含指定图像附加属性的名称/值对。

通常只有在向 Adobe 的 LiveCycle Data Services 发送 ImageSnapshot 实例以生成 PDF 文件时,才需要提供此类信息。您可以设置整个对象,也可以对预先存在的空 Object 设置单个名称/值对。

默认值为 {}。



实现
    public function get properties():Object
    public function set properties(value:Object):void

width

属性 
width:int

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

图像宽度(以像素为单位)。



实现
    public function get width():int
    public function set width(value:int):void
构造函数详细信息

ImageSnapshot

()构造函数
public function ImageSnapshot(width:int = 0, height:int = 0, data:ByteArray = null, contentType:String = null)

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

构造函数。

参数
width:int (default = 0) — 图像的宽度。
 
height:int (default = 0) — 图像的高度。
 
data:ByteArray (default = null) — 包含图像的字节数组。
 
contentType:String (default = null) — 图像的编码器格式类型:PNGEncoder 或 JPEGEncoder。
方法详细信息

captureBitmapData

()方法
public static function captureBitmapData(source:IBitmapDrawable, matrix:Matrix = null, colorTransform:flash.geom:ColorTransform = null, blendMode:String = null, clipRect:Rectangle = null, smoothing:Boolean = false):BitmapData

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

用于获取 UI 组件的原始快照作为 BitmapData 的实用程序方法。

参数

source:IBitmapDrawable — 实现了 flash.display.IBitmapDrawable 接口的对象。
 
matrix:Matrix (default = null) — 一个 Matrix 对象,用于缩放、旋转捕获的位图或转换其坐标。如果不想将矩阵转换应用于图像,请将此参数设置为恒等矩阵(使用默认 new Matrix() 构造函数创建),或传递 null 值。
 
colorTransform:flash.geom:ColorTransform (default = null) — 一个 ColorTransform 对象,用于调整位图的颜色值。如果没有提供任何对象,则不会转换位图图像的颜色。如果必须传递此参数但又不想转换图像,请将此参数设置为使用默认 new ColorTransform() 构造函数创建的 ColorTransform 对象。
 
blendMode:String (default = null) — 来自 flash.display.BlendMode 类的一个字符串值,指定要应用于所生成位图的混合模式。
 
clipRect:Rectangle (default = null) — 一个 Rectangle 对象,定义要绘制的源对象的区域。 如果不提供此值,则不会进行剪裁,并且将绘制整个源对象。
 
smoothing:Boolean (default = false) — 一个布尔值,确定缩放时是否要对 BitmapData 对象进行平滑处理。

返回
BitmapData — 表示捕获快照的 BitmapData 对象;如果源没有可见边界,则为 null。

captureImage

()方法 
public static function captureImage(source:IBitmapDrawable, dpi:Number = 0, encoder:IImageEncoder = null, scaleLimited:Boolean = true):ImageSnapshot

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

用于获取组件快照、将其缩放到特定分辨率(以 dpi 为单位)并编码为特定图像格式的实用程序方法。

参数

source:IBitmapDrawable — 实现了 flash.display.IBitmapDrawable 接口的对象。
 
dpi:Number (default = 0) — 分辨率,以每英寸的点数表示。如果未提供分辨率,则默认情况下使用当前屏幕的分辨率。
 
encoder:IImageEncoder (default = null) — 用于对原始位图进行编码的图像格式。可以使用的两个编码器为 PNGEncoder 和 JPEGEncoder。如果未提供编码器,则默认为 PNGEncoder。
 
scaleLimited:Boolean (default = true) — Flash 中位图的最大宽度或高度为 2880 个像素,如果将 scaleLimited 设置为 true,则会相应减少分辨率以适合 2880 个像素,相反,如果将 scaleLimited 设置为 false,则将使用较小的快照窗口并缝合它们以捕获更大的图像。默认值为 true。

返回
ImageSnapshot — 一个 ImageSnapshot,用于容纳经过编码的捕获快照和关联图像元数据。

encodeImageAsBase64

()方法 
public static function encodeImageAsBase64(snapshot:ImageSnapshot):String

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

一种实用程序方法,用于将 ImageSnapshot 转换为 Base-64 编码的 String,以便使用基于文本的序列化格式(如 XML)进行传输。

参数

snapshot:ImageSnapshot — 捕获为 mx.graphics.ImageSnapshot 的图像。

返回
String — 表示经过 base64 编码的快照的字符串。

相关 API 元素

常量详细信息

MAX_BITMAP_DIMENSION

常量
public static const MAX_BITMAP_DIMENSION:int = 2880

语言版本: ActionScript 3.0
产品版本: Flex 3
运行时版本: Flash Player 9, AIR 1.1

Bitmap 的最大宽度和高度。





[ X ]为什么显示为英语?
《ActionScript 3.0 参考》中的内容以英语显示

《ActionScript 3.0 参考》中的部分内容未翻译成所有语言。当某个语言元素未翻译时,将显示为英语。例如,ga.controls.HelpBox 类未翻译成任何语言。因此在简体中文版的参考中,ga.controls.HelpBox 类显示为英语。