Sponsored Content
Full Discussion: netscape 4.5.1
Contact Us Post Here to Contact Site Administrators and Moderators netscape 4.5.1 Post 17858 by Neo on Wednesday 20th of March 2002 06:43:46 PM
Old 03-20-2002
Sorry, I used to use Netscape but found the last few versions so slow to load that I've become an IE user 100 percent of the time. vBulletin is a popular program, my suggestion is to seach the vBulletin user community forums and see if other vB users have a Netscape problem:

http://www.vbulletin.com/forum/index.php

If you find anything of interest, please post the link to the thread(s). Thanks, Neo.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

netscape and linux

i'm trying to install netscape 6.01 on my linux system. I already have netscape 4.76 installed already. When i try to install netscape 6.01 it installs into a different place. So my origanal still works. when i run the script it seems to work. It goes to a part where its deferring registration... (2 Replies)
Discussion started by: kam1su2
2 Replies

2. UNIX for Advanced & Expert Users

Netscape question

I need to load Netscape on my UNIX workstation. It is an old Pyramid workstation. I have an Netscape exe zipped file on my NT laptop but I don't have gzip on my workstation to unzip it with. I can ftp the file to the workstation, but I have no way to open it. My question is what utility is... (3 Replies)
Discussion started by: Kelam_Magnus
3 Replies

3. UNIX for Dummies Questions & Answers

Installation Netscape

Hi, I need help to install Netscape on AIX Thank's:) Operation System AIX 4.3 I has problem with configure MOZILLA_HOME (1 Reply)
Discussion started by: Niko
1 Replies

4. UNIX for Dummies Questions & Answers

How to download Netscape?

Please tell me how can I download the netscape for Sun Solaris ?:confused: (1 Reply)
Discussion started by: jameswong
1 Replies

5. UNIX Desktop Questions & Answers

Netscape for unix?

How can I find netscape for unix? I could only find for windows. I need netscape for solaris (3 Replies)
Discussion started by: kymberm
3 Replies

6. UNIX for Dummies Questions & Answers

Using Netscape from unix

Hi All.. I have netscape installed communicator 4.75 installed in my unix box. But dont know exactly how to use that as a browser. I tried running it from installed dir. as shown below and got the following error. testu:/opt/netscape >netscape Error: Can't open display:... (1 Reply)
Discussion started by: ultimate
1 Replies

7. UNIX for Dummies Questions & Answers

Cant get Netscape to work...

when i try to open Netscape I get this: Xlib: connection to "hpbox:0.0" refused by server Xlib: Client is not Authorized to connect to server Error: Can't open display: hpbox:0.0 Error Couldn't find per display information *Note: I'm sharing a internet connection with my xp machine. Not... (2 Replies)
Discussion started by: Eric_Bakken
2 Replies

8. Solaris

Netscape 9 or Firefox 2.0

I have been unable to locate any Netscape 9 or Firefox 2.0 packages for Solaris 8. Does anyone know if they are available anywhere? Thanks in advance! (0 Replies)
Discussion started by: jalburger
0 Replies

9. UNIX for Dummies Questions & Answers

solaris 8 / netscape 4.76

I have an Ultra 5 machine with Solaris 8 installed as an operating system. To work with other PC's on my home network, I selected DHCP as the network protocol. I want to have Internet access on my Sun machine but have been unsuccessful. I had an old Netscape for Unix disk and installed it. The... (1 Reply)
Discussion started by: pb11545
1 Replies

10. UNIX for Dummies Questions & Answers

Netscape question

What command would you use to terminate all running instances of netscape-communicator owned by you on your system? (2 Replies)
Discussion started by: jdubya
2 Replies
pnmcolormap(1)						      General Commands Manual						    pnmcolormap(1)

NAME
pnmcolormap - create quantization color map for a portable anymap SYNOPSIS
pnmcolormap [-center|-meancolor|-meanpixel] [-spreadbrightness|-spreadluminosity] [-sort] [-square] ncolors|all [pnmfile] All options can be abbreviated to their shortest unique prefix. You may use two hyphens instead of one to designate an option. You may use either white space or an equals sign between an option name and its value. DESCRIPTION
Reads a PNM image as input. Chooses ncolors colors to best represent the image, maps the existing colors to the new ones, and writes a PNM color map defining them as output. You can use this map as input to pnmremap on the same input image to quantize the colors in that image, I.e. produce a similar image with fewer colors. pnmquant does both the pnmcolormap and pnmremap steps for you. A PNM colormap is a PNM image of any dimensions that contains at least one pixel of each color in the set of colors it represents. The quantization method is Heckbert's "median cut". See the section QUANTIZATION METHOD. If the input image is a PPM, the output image is a PPM. If the input image is a PBM or PGM, the output colormap is a PGM. Note that a colormap of a PBM image is not very interesting. The colormap generally has the same maxval as the input image, but pnmcolormap may reduce it if there are too many colors in the input, as part of its quantization algorithm. If you want to create a colormap without basing it on the colors in an input image, see ppmcolors. PARAMETERS
The single parameter, which is required, is the number of colors you want in the output colormap. pnmcolormap may produce a color map with slightly fewer colors than that. You may specify all to get a colormap of every color in the input image (no quantization). OPTIONS -sort This option causes the output colormap to be sorted by the red component intensity, then the green, then the blue in ascending order. This is an insertion sort, so it is not very fast on large colormaps. Sorting is useful because it allows you to compare two sets of colors. -square By default, pnmcolormap produces as the color map a PPM image with one row and one column for each color in the colormap. This option causes pnmcolormap instead to produce a PPM image that is within one row or column of being square, with multiple pixels of the same color as necessary to create a number of pixels which is a perfect square. -verbose This option causes pnmcolormap to display messages to Standard Error about the quantization. -center -meancolor -meanpixel -spreadbrightness -spreadluminosity These options control the quantization algorithm. See QUANTIZATION METHOD below. QUANTIZATION METHOD
A quantization method is a way to choose which colors, being fewer in number than in the input, you want in the output. pnmcolormap uses Heckbert's "median cut" quantization method. This method involves separating all the colors into "boxes," each holding colors that represent about the same number of pixels. You start with one box and split boxes in two until the number of boxes is the same as the number of colors you want in the output, and choose one color to represent each box. When you split a box, you do it so that all the colors in one sub-box are "greater" than all the colors in the other. "Greater," for a particular box, means it is brighter in the color component (red, green, blue) which has the largest spread in that box. pnmcolormap gives you two ways to define "largest spread.": 1) largest spread of brightness; 2) largest spread of contribution to the luminosity of the color. E.g. red is weighted much more than blue. Select among these with the -spreadbrightness and -spreadluminosity options. The default is -spreadbrightness. pnmcut provides three ways of choosing a color to represent a box: 1) the center color - the color halfway between the greatest and least colors in the box, using the above definition of "greater"; 2) the mean of the colors (each component averaged separately by brightness) in the box; 3) the mean weighted by the number of pixels of a color in the image. Note that in all three methods, there may be colors in the output which do not appear in the input at all. Select among these with the -center, -meancolor, and -meanpixel options. The default is -center. REFERENCES
"Color Image Quantization for Frame Buffer Display" by Paul Heckbert, SIGGRAPH '82 Proceedings, page 297. SEE ALSO
pnmremap(1), pnmquant(1), ppmquantall(1), pnmdepth(1), ppmdither(1), ppmquant(1), ppm(5) AUTHOR
Copyright (C) 1989, 1991 by Jef Poskanzer. Copyright (C) 2001 by Bryan Henderson. 12 December 2001 pnmcolormap(1)
All times are GMT -4. The time now is 09:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy