answersLogoWhite

0

You have to download infraview, open the image, go to image>decrease color depth, change to 16

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How do you change the title screen on Pokemon fire red?

unlzgba you can get it at wackahacknumber on unlzgba 2009 and 2012 i thinkclose 2009= title(i suggest using black and white) put on 256 colour mode and press + once2012=pokemon its muddled up though apparently u can fix it with cyclone :)


How do you put your images in Google image search?

Google fills its index for image search by crawling the web. Upload your images to a web-site, wait for Google to re-index the site, and your images should show up in image search within a couple weeks.


What is shape index?

Shape index is a feature used in image processing to describe the shape of objects within an image. It quantifies the roundness or elongation of an object by comparing its area with the area of a circle with the same perimeter. This provides a numerical measure to differentiate between different shapes in an image.


Use index in a sentence?

you can not find a sentence to Index


How many images does Google's image index contain?

As many images there are on the web obviously.


What does TIFF stands for?

Tagged Image File Format


What does Portion 1 ounce of bread look like?

An index card


Can you explain the process of how to drop an index in a database?

To drop an index in a database, you need to use a specific SQL command. First, you identify the name of the index you want to drop. Then, you use the DROP INDEX statement followed by the name of the index. This command removes the index from the database, making the associated data searchable without the index.


What sentence you can make with the word index?

I use index cards to study my vocabulary.


Is there a free and good image viewer program?

Image Viewer is the powerful, and easy-to-use image viewer you can use.


Which mode is specific for bitmapped and index color images?

You can change color Mode from Image > Mode > choose from list.


How do you make a background image clickable with CSS?

1) It's impossible to make a background image a link with CSS.2) That's not what CSS is for.------------However, you could make an invisible block with CSS and wrap it in an HTML anchor.CSS Example:.invisibleblock {/*make it invisible*/-moz-opacity:0; filter:alpha(opacity=0); opacity:0;/*fill the container its in (change this to px if you have a specific size)*/width:100%;height:100%;/*z-index, for ensuring its behind everything else*/z-index:1;/*Extra bits in case it's not working properly*/display:block;border:0;margin:0;padding:0;}You could alternatively give this block the background image and make it visible, but this doesn't work well with a body background.In the HTML, use an 'a' tag pointing to the page you need on that image, eg.Note:You will have to use z-index for everything that will be in front of that invisible block for it to work correctly. It will need an index greater than 1, with the highest index being in front of everything else. If this was on the body background, then you could add around the rest of the webpage.