mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
842 B
50 lines
842 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Test.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
//
|
|
// GET: /Home/
|
|
|
|
public ActionResult Index()
|
|
{
|
|
return this.View();
|
|
}
|
|
|
|
public ActionResult Png()
|
|
{
|
|
return this.View();
|
|
}
|
|
|
|
public ActionResult Png8()
|
|
{
|
|
return this.View();
|
|
}
|
|
|
|
public ActionResult Gif()
|
|
{
|
|
return this.View();
|
|
}
|
|
|
|
public ActionResult Bmp()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult Tiff()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult External()
|
|
{
|
|
return this.View();
|
|
}
|
|
|
|
}
|
|
}
|
|
|