Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

394
Views
How do I fill the transparent area inside an image using javascript?

I added a white border to a PNG image with Konvajs example

konvajs link

I want to turn the transparent area inside the white border to white. So I want to paint the windows of the car white. (Red areas are transparent.)

example

Expected result: result

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

One thing you could maybe do is converting you image to a SVG.

You would then have a path for your car windows with some class. You could afterward change the style of the SVG class in JS.

enter image description here

enter image description here

about 4 years ago · Juan Pablo Isaza Report

0

To fix the problem you want background color white. As your link there are a function called removeTransparency it makes the image background color white see it.

      // make all pixels opaque 100% (except pixels that 100% transparent)
      function removeTransparency(canvas) {
        var ctx = canvas.getContext('2d');

        var imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
        var nPixels = imageData.data.length;
        for (var i = 3; i < nPixels; i += 4) {
          if (imageData.data[i] > 0) {
            imageData.data[i] = 255;
          }
        }
        ctx.clearRect(0, 0, canvas.width, canvas.height);
        ctx.putImageData(imageData, 0, 0);
        return canvas;
      }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!