Code Monkey home page Code Monkey logo

imgo's Introduction

imgo

Golang 图片工具箱

1.图片内容的查找替换

  • func (p *Picture) SetCompareAccuracy(compareAccuracy int) 设置图片在查找过程找到图片后对比的精确度,1代表100%完全吻合。
  • func (p *Picture) SearchPic(searchPic *Picture) (bool, image.Rectangle) 在大图中查找小图出现的一个区域
  • func (p *Picture) SearchAllPic(searchPic *Picture) (bool, []image.Rectangle) 在大图中查找小图出现的多个区域
  • func (p *Picture) Replace(searchPic *Picture, replacer *Picture) (image.Image, error) 在大图中查找并替换小图的一个区域
  • func (p *Picture) ReplaceAll(searchPic *Picture, replacer *Picture) (image.Image, error)在大图中查找并替换小图的多个区域

demo

pic, err := imgo.NewPng("./cat.png")
searchPic, err := imgo.NewPng("./x.png")
replace, err := imgo.NewPng("./text.png")
p, err := pic.ReplaceAll(searchPic, replace)

如果你有几万张设计稿需要替换文字或者一些图案,此工具库可能很好的帮助你编写代码

imgo's People

Contributors

xusenlin avatar putegg avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.