インタフェース: BitmapLayerManager

インタフェース > コア インタフェース > BitmapLayerManager

 

   

コア インタフェース - クイック ナビゲーション

このコア インタフェースは、Photoshop PSD イメージ形式のレイヤにアクセスします。

   

Interface: BitmapLayerManager 

メソッド:

<integer>BitmapLayerManager.getLayerCount <filename>filename   

指定されたファイル内のレイヤ数を返します。

   

<string>BitmapLayerManager.getLayerName <filename>filename <integer>index 

指定されたファイル内のインデックスで指定されたレイヤの名前を返します。

   

<bitmap>BitmapLayerManager.LoadLayer <filename>filename <integer>index <boolean>fullframe 

指定されたファイルに含まれる 0 が基数の インデックスで指定されたレイヤをロードします。ビットマップ値を返します。 fullframe true に設定されている場合は、完全なイメージの解像度でレイヤをロードします。

--load the background layer from a PSD file
test_file = sysinfo.currentdir + "\\test.psd"
theBmp = bitmapLayerManager.LoadLayer test_file 0 true
--assign a bitmap texture to the first material in the MEdit
meditMaterials[1].diffusemap = bitmapTexture()
--assign the PSD background layer to the diffuse slot:
meditMaterials[1].diffusemap.bitmap = theBmp