Home/Projects/Adding Background Tool (ABT)
ABT (Adding Background Tool) is a small React component I built to turn any uploaded image into a clean gradient blur background. It is useful when you want a better visual presentation for product shots, portraits, or social posts without opening a design app.
Live Preview
Adding Background Tool (ABT)
Upload an image and we generate a soft gradient background from its colors.
Select an image to preview it with an extracted gradient background
Use It In Your Project
$ npm install abt-aniqbintlutpi
TSdemo.tsx
1import { ImageGradientUpload } from "abt-aniqbintlutpi";2 3export default function Demo() {4 return <ImageGradientUpload />;5}