Skip to content

thisuxhq/blends

Repository files navigation

Blend Modes in Svelte

A Svelte app to blend images using various modes. Core logic in TypeScript.

Variables

  • baseImage: Base image element
  • blendImage: Blend image element
  • blendedImageDataUrl: Data URL of blended result

Blend Mode Functions

Functions that blend base and blend color values:

  • softLight, multiply, screen, overlay
  • darken, lighten, colorDodge, colorBurn

blendImages(blendModeFunction)

  • Creates canvases for base, blend, blended images
  • Draws base and blend images on canvases
  • Applies blend mode function to each pixel's RGB channels
  • Sets blended image data URL

blendWithMode(modeFunction)

  • Checks if images loaded
  • Calls blendImages with given mode function

UI

  • Image elements for base and blend
  • Buttons for each blend mode
  • Button to download blended image

Blend modes allow creative image processing in the browser.

Credits

Inspired by @spiralstairs' tweet about blend modes in Figma, I got curious and implemented different blend modes from scratch to visualize how they work.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published