.net core 实现默认图片

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.net core 实现默认图片相关的知识,希望对你有一定的参考价值。

web 上 如果图片不存在 一般是打xx  这时候 一般都是会设置默认的图片 代替   现在用中间件的方式实现统一设置   一次设置 全部作用 

.net core 实现默认图片

Startup 文件

1

app.UseDefaultImage(defaultImagePath: Configuration.GetSection("defaultImagePath").Value);

新建类

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

using Microsoft.AspNetCore.Builder;

using Microsoft.AspNetCore.Http;

using System;

using System.Collections.Generic;

using System.IO;

using System.Linq;

using System.Threading.Tasks;

namespace conan.Saas.Framework.Middlewares

{

    public class DefaultImageMiddleware

    {

        private readonly RequestDelegate _next;

        public static string DefaultImagePath { getset; }

        public DefaultImageMiddleware(RequestDelegate next)

        {

            this._next = next;

        }

        public async Task Invoke(HttpContext context)

        {

            await _next(context);

            if (context.Response.StatusCode == 404)

            {

                var contentType = context.Request.Headers["accept"].ToString().ToLower();

                if (contentType.StartsWith("image"))

                {

                    await SetDefaultImage(context);

                }

            }

        }

        private async Task SetDefaultImage(HttpContext context)

        {

            try

            {

                string path = Path.Combine(Directory.GetCurrentDirectory(), DefaultImagePath);

                FileStream fs = File.OpenRead(path);

                byte[] bytes = new byte[fs.Length];

                await fs.ReadAsync(bytes, 0, bytes.Length);

                //this header is use for browser cache, format like: "Mon, 15 May 2017 07:03:37 GMT".

                //context.Response.Headers.Append("Last-Modified", $"{File.GetLastWriteTimeUtc(path).ToString("ddd, dd MMM yyyy HH:mm:ss")} GMT");

                await context.Response.Body.WriteAsync(bytes, 0, bytes.Length);

            }

            catch (Exception ex)

            {

                await context.Response.WriteAsync(ex.Message);

            }

        }

    }

    public static class DefaultImageMiddlewareExtensions

    {

        public static IApplicationBuilder UseDefaultImage(this IApplicationBuilder app, string defaultImagePath)

        {

            DefaultImageMiddleware.DefaultImagePath = defaultImagePath;

            return app.UseMiddleware<DefaultImageMiddleware>();

        }

    }

}

appsettings.json 添加路径

 "defaultImagePath": "wwwroot\\\\DefaultImage.png",

 最后 在 wwwroot   放张  DefaultImage.png图片  即可

https://www.cnblogs.com/lyl6796910/p/7660076.html

以上是关于.net core 实现默认图片的主要内容,如果未能解决你的问题,请参考以下文章

.net core实现单文件上传多文件上传js提交实现文件上传图片预览

你需要知道的这几种 asp.net core 修改默认端口的方式

asp.net core 通过ajax上传图片及wangEditor图片上传

asp.net core配合vue实现后端验证码逻辑

.net core mvc启动顺序以及主要部件4-MVC

JavaFX自定义窗口标题栏