Socket
Socket
Sign inDemoInstall

github.com/Drew138/go-graphics

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/Drew138/go-graphics


Version published
Created
Source

GO GRAPHICS

Image Processing

The processing package provides the function TransformImage which takes an Image, and Kernel structs as parameters and returns a pointer to RGBA struct.

TransformImage Type Declaration

func TransformImage(i image.Image, k *kernels.Kernel) *image.RGBA

Image and RGBA structs are provided by the image package from the standard library. Kernel on the other hand is supplied by the kernel package of this library.

Supported Formats

Three formats are supported by the processing package (png, jpeg and jpg). The formats package supplies the function IsSupportedFormat which takes a string and returns a boolean value.

Kernels

Four basic kernels are provided by the kernel package:

Example Transformations

Original Image

Sharpen Kernel

GaussianBlur Kernel

EdgeDetection Kernel

When applied on an image transformation, the resulting image displays the edges of objects in the image.

BoxBlur Kernel

Custom Kernel

A custom kernel can be used by implementing the Kernel struct from the kernels package. This struct contains the field Kernel which is a three by three matrix of float32 values.

FAQs

Package last updated on 31 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc