调整大小后无法删除或重命名原始文件

时间:2016-11-17 14:45:38

标签: c# asp.net iis

此函数返回一个已调整大小且居中的图像,我执行它调用一个网址get_extended(),问题是执行后我无法重命名或从服务器删除原始文件。

$content = get_extended( $page->post_content );
echo $content['main'];

1 个答案:

答案 0 :(得分:3)

image看起来并没有被处理掉。我建议使用using语句使资源管理更加清晰。

using statement允许在范围内放置内容,当范围保留时,会调用Dispose。例如:

using(var image = new Bitmap(imageLocation))
{
    //Use image here
} //image will be disposed here