PDF for WPF and Silverlight
DrawImage(WriteableBitmap,Rect,ContentAlignment,Stretch) メソッド
使用例 

C1.WPF.Pdf.4.5.2 アセンブリ > C1.WPF.Pdf 名前空間 > C1PdfDocument クラス > DrawImage メソッド : DrawImage(WriteableBitmap,Rect,ContentAlignment,Stretch) メソッド
描画する System.Windows.Media.Imaging.WriteableBitmapオブジェクト。
描画画像の位置をページの左上隅からのポイント数で指定する System.Windows.Rect構造体。
四角形内に画像を配置する方法を指定する ContentAlignment値。
四角形に収まるように画像をサイズ変更する方法を指定する System.Windows.Media.Stretch値。
指定された System.Windows.Media.Imaging.WriteableBitmapオブジェクトを指定された位置に描画し、 alignおよび stretchパラメータで 指定された画像サイズに調整します。
シンタックス
'宣言
 
Public Overloads Sub DrawImage( _
   ByVal img As System.Windows.Media.Imaging.WriteableBitmap, _
   ByVal rc As System.Windows.Rect, _
   ByVal align As ContentAlignment, _
   ByVal stretch As System.Windows.Media.Stretch _
) 
public void DrawImage( 
   System.Windows.Media.Imaging.WriteableBitmap img,
   System.Windows.Rect rc,
   ContentAlignment align,
   System.Windows.Media.Stretch stretch
)

パラメータ

img
描画する System.Windows.Media.Imaging.WriteableBitmapオブジェクト。
rc
描画画像の位置をページの左上隅からのポイント数で指定する System.Windows.Rect構造体。
align
四角形内に画像を配置する方法を指定する ContentAlignment値。
stretch
四角形に収まるように画像をサイズ変更する方法を指定する System.Windows.Media.Stretch値。
使用例
下のコードは、任意の System.Windows.UIElementのレンダリングに使用できる DrawImageメソッドの使用方法を示します。このコードは、要素から System.Windows.Media.Imaging.WriteableBitmapを作成し、次に DrawImageメソッドを呼び出します。
void DrawImage(UIElement e, Rect rc, ContentAlignment align, ImageSizeMode mode)
{
  DrawImage(new WriteableBitmap(e, null), rc, align, mode);
}
参照

C1PdfDocument クラス
C1PdfDocument メンバ
オーバーロード一覧