我有一个 SilverLight 应用程序,我想在服务器端将我的 UIElement 的屏幕截图保存为图像
我有WritableBitmap,我在其中放置了指定 UIElement 的屏幕截图,我想将其发送到 php 文件以将其保存在服务器端
等待有帮助
我有一个 SilverLight 应用程序,我想在服务器端将我的 UIElement 的屏幕截图保存为图像
我有WritableBitmap,我在其中放置了指定 UIElement 的屏幕截图,我想将其发送到 php 文件以将其保存在服务器端
等待有帮助
// 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
}