Why does this PNG file look different depending on the browser? [closed] - colors

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
If you take screen shot this web page in different browser, you'd see that it displays slightly different in firefox. (7.01, ubuntu)
At first I thought it was because of color profile, but even if I turned on color management in firefox, the problem is still there.
Although it's not a very noticeable problem, I got a perfectionist boss who asked to make it look exactly the same in every browser. Does any one know what might have caused the problem? Thanks!
A screenshot of comparison : You might still not be able to see the difference, but if you download the screen shot and use an image editor to check the color in 2 browsers, you'd see there's indeed differences.

Apparently this does have to do with color management but I'm not sure what needs to be turned on where. Here is one of a few articles I found that goes into this that I hope is helpful.

Is the gamma correction. PNG format has an option to store a gamma correction value, so the image will look the same in monitors with different gamma correction.
The problem is that some browsers use this information an others don't.
The following image has gamma correction on, and will look the same in every browser, but it can give you problems in firefox if you want the image color to match html and css colors:

Related

When resized, part of page cuts off on the left and is not scrollable [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 days ago.
Improve this question
http://junworks.com/5storyboards.html
A page example. It looks fine when at full size but cuts off the left side when window is resized, or on a smaller device like an ipad.
I tried putting in some codes I found to add sliders at least, but that didn't seem to do anything.
Caveat: I only know just enough html to be dangerous, I know very little css.

What is the best way to isolate these local areas by intensity? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
The general task is to binarize the image so that only the brightest spots remain. But adaptive binarization and the Otsu method do not give an acceptable result due to light traces (shown in the image).
I think that you need to go through the entire image with a small window that will highlight a local minimum in the area.I am counting on the fact that with the correct selection of the threshold, only light spots will remain that need to be found. It should be. But I do not know how to apply the standard opencv threshold function in sliding windows.
UPD:After the proposed adaptive threshold, the image looks like this. Not perfect, but much closer to what I need.It seems that a combination of threshold functions does not always give a better result than a single one.
This is the command:
outputimg = cv.adaptiveThreshold(img,255,cv.ADAPTIVE_THRESH_MEAN_C,cv.THRESH_BINARY,11,0)
further explanation and examples: https://docs.opencv.org/3.4/d7/d4d/tutorial_py_thresholding.html

How do I make my application jump in front of everything if clicked on? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
The Application I am using does not jump infront of everything if I click on it, that means I have to minimize every single window for a clear view. How can I change this?
also the application is just working in "pseudo fullscreen" how do I make it go "real" fullscreen? (I assume this could solve the first problem)
please note I am not the programmer but I am trying to solve this for the original programmer so if you could just give me some code that would be really appreciated.
And Squeak can do multiple host windows since 2006 but nobody has actually done anything with the capability since then.
(Sigh. Supposed to be a reply to Travis' comment)
Have a look at this squeak image.
I am not the original programmer but if you click on the logo then it becomes fullscreen and overlaps the other windows.
The source code can be found in the logo. Please post it if you find it!
Also note that Smalltalk has windows inside the window. I just mean the window of the smalltalk environment.

what's the best vim color scheme for presentation on a projector with low display quality [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
We need to do code review from time to time in meeting rooms where the owner needs to show his changes (by vim on a terminal mostly) on the screen via projector (with very low resolution like 1024x768), the problem is, there's no good color-scheme for vim to make the code changes look pretty.
The issue is, we lose the good part like syntax highlighting with various file type plugins because most of them are based on dark background colours. For dark themes, many decorations on syntax elements just become invisible.
Anyone can suggest a good scheme to fit well in this situation?
I like the Solarized color scheme. It is probably not the best for use on a projector, but you would have to try that. I found it via the spf13 distribution.
example:
For a projector, it's most important that the font is readable, i.e. it should not be too thin. The default font on Windows GVIM (Fixedsys) does the job quite well. You may want to temporarily increase the font size for better readability (:set guifont=...; there are even plugins that allow quick dynamic font scaling via key mappings).
Also, dark letters on a white background usually is best. Any high-contrast colorscheme should work (even the default one, though it certainly isn't pretty). In the end, I think, it comes down to the quality of the projector and the room setup (shades drawn, good projection area).

Displaying a TON of images with jquery [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
Improve this question
I am about to embark on a jquery journey I have not ever done. I will be developing a site that has one objective : to display over 300 uncategorized images (artwork). I'm just trying to think about the best way to go about displaying all these images in an easy to navigate, elegant way. I could use thumbnails and lightbox, but that's boring. I want to get inventive! Any cool ideas?
What's the objective of the people coming to view the images? Is it just browsing, or will they be looking for particular images? Are the images grouped into themes or artist or something? You have to build a navigation system that makes it easy for your users to achieve their goal!
Perhaps, if its more browsing some creative theme of images I wonder if you could come up with a scheme that lets users find their way between images naturally. Perhaps have several paths through the images, that when you view one you have a couple of options for where to 'go' next. Almost mimic the kind of browsing you might experience in an art gallery?
I wouldn't say that 300 images is a "ton" by any stretch.
Go visit photo sites like Flickr, SmugMug, and Picasa. Find the websites for wedding and journalist photographers. See what they're doing. If you can't figure out how to navigate their site in 10 seconds, stay away from similar site designs.

Resources