This commit is contained in:
chikyun.kim
2018-12-22 19:30:02 +09:00
parent f957c5fcb1
commit 560f7d78bf
21 changed files with 1148 additions and 249 deletions

View File

@@ -66,7 +66,10 @@ namespace FCOMMON
sm.Dispose();
return buffer;
}
public static Boolean setImageData(System.Drawing.Bitmap img, string table, string field, int idx)
{
return setImageData((System.Drawing.Image)img, table, field, idx);
}
public static Boolean setImageData(System.Drawing.Image img, string table, string field, int idx)
{
if (img == null || img.Width < 1||img.Height < 1) return false;