我有一个SilverLight应用程序,我想在服务器端保存我的UIElement的屏幕截图作为图像
我有 WritableBitmap 我把我的屏幕截图放到指定的UIElement上,我想将它发送到php文件将其保存在服务器端
等待帮助
答案 0 :(得分: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
}