gatsby-plugin-sharp:duotone无法正常工作

时间:2019-06-04 21:16:43

标签: gatsby

我正在尝试从以下查询中获取双色调图像...

const TESTIMONIAL_QUERY = graphql`
query Testimonials {
    myTestimonials:allTestimonialsJson {
      edges {
        node {
          image {
            childImageSharp {
              fluid (duotone: {highlight: "#192550", shadow: "#f00e2e"}) {
                ...GatsbyImageSharpFluid
              }
            } 
          }
          person
          quote
        }
      }
    }
  }
`;

...但是,它会在图像上产生非常暗的颜色,而不是查询中设置的颜色。如果我将其替换为greyscale:true可以正常工作,并且很明显,如果将其删除,它将显示正常图像。

有人有什么主意吗?

谢谢

0 个答案:

没有答案