home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8"?>
- <effect label="Image">
- <description>
- ImageEffect is a source Effect. It produces image data for other Effects to process.
- The 'scale' supported is either power2 or identity depending on the value of 'MipMap'
- </description>
-
- <description>
- The Filename property can be set to a file path to read an image file from the file system.
- </description>
-
- <property name="Filename" type="uri" label="File">
- <comments>
- ImageEffect loads the specified image file whenever this property is set to a file path string.
- </comments>
- </property>
- <property name="UsePackedPixels" type="bool" default="false" save="0" label="Support PackPixels the returned buffer for raw files">
- <comments>
- If true, packs single channel image data into a packed 4 channel buffer
- </comments>
- </property>
-
- <property name="_ImageData" type="unknown" private="1" save="0"/>
-
- <property name="MipMap" type="bool" default="true" >
- <comments>
- Whether to return scaled (MipMap'ed) bits only only return unscaled bits
- </comments>
- </property>
-
- <property name="ImageFormat" type="int" private="1">
- <comments>
- Channel format of pixels. Values match those of ChannelFormat
- </comments>
- </property>
-
- <interface name="IImageEffect">
- <comments>
- Use the IImageEffect interface to access image data coming from memory or a BitmapSource.
- </comments>
- </interface>
- </effect>