skip to Main Content

i need remove all the yellow dots.

I removed white background in photoshop and save it for web and they are still here, if I set a black background in browser.

the same effect happend if I add new layer in photoshop …

screen from photoshop

2

Answers


  1. You can do it pretty easily with ImageMagick which is installed on most Linux distros and is also available for OSX and Windows. Just in the Terminal window at the command-line:

    convert globe.png -fuzz 10% -fill gray -opaque "rgb(232,235,144)" result.png
    

    enter image description here

    That says… “open “globe.png” and find any pixels that are within 10% of rgb(232,235,144) and fill them with mid-grey, saving the result as “result.png”

    Of course, you can fill the dots with another colour by changing the word gray to pink or any other rgb() colour you like!

    Login or Signup to reply.
  2. GIF has indexed colors. If you use the classic dialogue save for web. You can manually assign a color to a table indexed color. Like this: http://sklad.bereza.cz/00-jarda/00_screenshot/2016-06-18_174624.jpg

    The problem is that the GIF has a limited number of colors and some colors consists from several different colors. By assigning a color to a table you stop composing and is used direct color.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search