ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

CSharp: image (JPG,PNG,etc) covert webp using Aspose.Imaging

CSharp: image (JPG,PNG,etc) covert webp using Aspose.Imaging

 

        protected void Page_Load(object sender, EventArgs e){if (!IsPostBack){// 激活Aspose//ActiveAspose(); ///无效HookManager.ShowHookDetails(true);HookManager.StartHook();// The path to the documents directory.string dataDir = Server.MapPath("~") + "/";string inputImagePath = dataDir + "AH9_1.png"; // Input image pathstring outputImagePath = dataDir + "AH9_1_converted.webp"; // Output image pathif (File.Exists(inputImagePath)){// Load the image using Aspose.Imagingusing (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(inputImagePath)){// Save the image in WebP formatimage.Save(outputImagePath, new Aspose.Imaging.ImageOptions.WebPOptions());}// Optionally, you can redirect to the converted image or display a messageResponse.Redirect("AH9_1_converted.webp");}}}

  

https://products.aspose.com/imaging/net/conversion/jpg-to-webp/

返回列表