Exemple #1
0
        public bool ImageShow(string FilePath, ref string RdStr)
        {
            SL_Img_Lib ImgLib = new SL_Img_Lib();

            if (!ImgLib.isFileExist(FilePath))
            {
                RdStr = "File Not Exits"; return(false);
            }
            return(ImageWrite(ImgLib));
        }
Exemple #2
0
        public bool ImageShow(string FilePath)
        {
            SL_Img_Lib ImgLib = new SL_Img_Lib();

            if (!ImgLib.isFileExist(FilePath))
            {
                return(false);
            }
            return(ImageWrite(ImgLib));
        }