0

我有一个 SilverLight 应用程序,我想在服务器端将我的 UIElement 的屏幕截图保存为图像

我有WritableBitmap,我在其中放置了指定 UIElement 的屏幕截图,我想将其发送到 php 文件以将其保存在服务器端

等待有帮助

4

1 回答 1

0
// PHP Side - Saving the image on server

if ( isset ( $GLOBALS["HTTP_RAW_POST_DATA"] )) {


$filename=$_GET['filename'];

// get bytearray
$im = $GLOBALS["HTTP_RAW_POST_DATA"];

$filepath = '....';

$output=file_put_contents( $filepath . $filename, $im);

} else{
    // write the error in log file
}
于 2012-04-07T17:25:37.110 回答