public bool ConvertToBmp(string ImageFullPath) { bool bAns; string sNewFile; try { Bitmap objBmp = new Bitmap(ImageFullPath); sNewFile = GetDirectoryName(ImageFullPath); sNewFile += GetFileNameWithoutExtension(ImageFullPath); sNewFile += "." + ImageFormat.Bmp.ToString(); objBmp.Save(sNewFile, ImageFormat.Bmp); bAns = true; } catch { bAns = false; } return bAns; } ConvertBMP("C:\test.jpg");
using System.IO;
public bool ConvertToBmp(string ImageFullPath) { bool bAns; string sNewFile; try { Bitmap objBmp = new Bitmap(ImageFullPath); sNewFile = Path.GetDirectoryName(ImageFullPath); sNewFile += Path.GetFileNameWithoutExtension(ImageFullPath); sNewFile += "." + ImageFormat.Bmp.ToString(); objBmp.Save(sNewFile, ImageFormat.Bmp); bAns = true; } catch { bAns = false; } return bAns; } ConvertBMP("C:\test.jpg");
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง