码迷,mamicode.com
首页 > Web开发 > 详细

pechkin 导出https路径的图片

时间:2020-07-10 00:46:00      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:class   mst   支持   htm   web程序   end   path   highlight   lower   

使用Pechkin.Synchronized可以方便导出html为pdf,但是对于https路径的图片并不支持,仅支持http路径下的图片

解决方案:图片使用本地绝对路径(相对于服务器)

以下是我获取本地绝对路径的方法

     #region 获得当前绝对路径
        /// <summary>
        /// 获得当前绝对路径
        /// </summary>
        /// <param name="strPath">指定的路径</param>
        /// <returns>绝对路径</returns>
        public static string GetMapPath(string strPath)
        {
            if (strPath.ToLower().StartsWith("http://")|| strPath.ToLower().StartsWith("https://"))
            {
                return strPath;
            }
            if (HttpContext.Current != null)
            {
                return HttpContext.Current.Server.MapPath(strPath);
            }
            else //非web程序引用
            {
                strPath = strPath.Replace("/", "\\");
                if (strPath.StartsWith("\\") || strPath.StartsWith("~"))
                {
                    strPath = strPath.Substring(strPath.IndexOf(‘\\‘, 1)).TrimStart(‘\\‘);
                }
                return System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, strPath);
            }
        }
        #endregion

  

pechkin 导出https路径的图片

标签:class   mst   支持   htm   web程序   end   path   highlight   lower   

原文地址:https://www.cnblogs.com/q251458060/p/13276825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!