Open Photography Forums  
HOME FORUMS NEWS FAQ SEARCH

Go Back   Open Photography Forums > OPF Welcome Hall > OPF Look, Feel, and Vibe

OPF Look, Feel, and Vibe Comments & suggestions to the site.

Reply
 
Thread Tools Display Modes
  #61  
Old January 13th, 2011, 11:58 AM
Bart_van_der_Wolf Bart_van_der_Wolf is offline
OPF Moderator
 
Join Date: Jun 2006
Location: Netherlands
Posts: 3,653
Default

Quote:
Originally Posted by Doug Kerr View Post
These are of course the reason why major standard color spaces contemplate a certain surround ambiance for viewing (although there are a number of paradoxes in those specifications).

In any case, by way of general reference, the sRGB standard contemplates a delivered white point illuminance of 80 cd/m^2 with a surround of reflectance 0.20 illuminated at 200 lx.

If we work through the photometric equations, that comes out to a surround luminance of 12.7 cd/m^2, or about 16% of the white point luminance.

That would be a surround at about RGB 112,112,112, about like so:
<disrespectful snip of Carla's image, just for brevity>

Quote:
But the overall environment illuminance is also a factor - not just the luminance of the immediate surround.
Indeed, but there is some mix of physics and psychology (= Human visual system) involved as well:
http://www.michaelbach.de/ot/lum_dynsimcontrast/index.html
and
http://web.mit.edu/persci/gaz/gaz-teaching/flash/koffka-movie.swf

These effects already take place at small areas of an image.

Another thing is that it's hard to make a nice looking page based on an RGB 112, 112, 112 background, because text will always be low contrast unless done in screaming colors, and viewing conditions (ambient light level) vary.

Cheers,
Bart
__________________
If you do what you did, you'll get what you got.
Reply With Quote
  #62  
Old January 13th, 2011, 01:37 PM
Doug Kerr Doug Kerr is offline
Senior Member
 
Join Date: May 2006
Location: Alamogordo, New Mexico, USA
Posts: 4,901
Default

Hi, Bart,

Quote:
Originally Posted by Bart_van_der_Wolf View Post
Indeed, but there is some mix of physics and psychology (= Human visual system) involved as well . . .

These effects already take place at small areas of an image.
Indeed. I don't know much about those things, but I know you have been well involved in such considerations.

Quote:
Another thing is that it's hard to make a nice looking page based on an RGB 112, 112, 112 background, because text will always be low contrast unless done in screaming colors, and viewing conditions (ambient light level) vary.
Oh, indeed.

I did not mean to suggest a page background of RGB 112,112,112 - but I was just interested in how this fits in with the color space spec norms for "viewing environment".

Best regards,

Doug
Reply With Quote
  #63  
Old January 13th, 2011, 05:48 PM
Asher Kelman Asher Kelman is offline
OPF Owner/Editor-in-Chief
 
Join Date: Apr 2006
Posts: 24,147
Default

Well, why not look at text on this b.g.?

See what you come up with.

Asher
__________________
Follow us on Twitter at @opfweb

Our purpose is getting to an impressive photograph. So we encourage browsing and then feedback. Consider a link to your galleries annotated, C&C welcomed. Images posted within OPF are assumed to be for Comment & Critique, unless otherwise designated.
Reply With Quote
  #64  
Old January 13th, 2011, 07:02 PM
Doug Kerr Doug Kerr is offline
Senior Member
 
Join Date: May 2006
Location: Alamogordo, New Mexico, USA
Posts: 4,901
Default

Quote:
Originally Posted by Asher Kelman View Post
Well, why not look at text on this b.g.?

See what you come up with.
Who, me?

This one?



Best regards,

Doug
Reply With Quote
  #65  
Old January 13th, 2011, 09:44 PM
Asher Kelman Asher Kelman is offline
OPF Owner/Editor-in-Chief
 
Join Date: Apr 2006
Posts: 24,147
Default

Thanks, Doug,

Most helpful and a surprise to me! Both the yellow/gold ( ~in the family of OPF colors) and the Aegian sea blue seem pretty comfortable to read. What do others think? Could you also try small type faces and see how it works under duress!

It's good to see experimentation.

Asher
__________________
Follow us on Twitter at @opfweb

Our purpose is getting to an impressive photograph. So we encourage browsing and then feedback. Consider a link to your galleries annotated, C&C welcomed. Images posted within OPF are assumed to be for Comment & Critique, unless otherwise designated.
Reply With Quote
  #66  
Old January 14th, 2011, 08:37 AM
Doug Kerr Doug Kerr is offline
Senior Member
 
Join Date: May 2006
Location: Alamogordo, New Mexico, USA
Posts: 4,901
Default

Hi,, Asher,

Quote:
Originally Posted by Asher Kelman View Post
Thanks, Doug,

Most helpful and a surprise to me! Both the yellow/gold ( ~in the family of OPF colors) and the Aegian sea blue seem pretty comfortable to read. What do others think? Could you also try small type faces and see how it works under duress!
Yes, and this text was laid in on an image editor. I need to find out how to insinuate a BG in some HTML and have the text actually rendered as it would be on the forum.

Cem: can you give me some pointers on that.

Perhaps I will just link to a page I will mount on my site.

Note in fact that the on-screen font size varies with the "zoom" setting of the viewer's browser.

Best regards,

Doug
Reply With Quote
  #67  
Old January 14th, 2011, 03:40 PM
Cem_Usakligil Cem_Usakligil is offline
Senior Member
 
Join Date: Jun 2006
Posts: 4,812
Default

Quote:
Originally Posted by Doug Kerr View Post
Yes, and this text was laid in on an image editor. I need to find out how to insinuate a BG in some HTML and have the text actually rendered as it would be on the forum.

Cem: can you give me some pointers on that.
Hi Doug,

Sorry I must have missed this one earlier. You could use the following HTML code to change the BG and the text colors in your web page.

HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body style="background:#707070; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; font-size:12px">

<p style="color: #FFFFFF;">This background is 112,112,112.</p><br />


<p style="color: #000000;">This is text in 0,0,0.</p>

<p style="color: #FFFFFF;">This is text in 255,255,255.</p>

<p style="color: #FFFF00;">This is text in 255,255,0.</p>

<p style="color: #00FFFF;">This is text in 0,255,255.</p>

</body>
</html>
The resulting web page looks like this.

HTH.
__________________
Kind Regards,

Cem

Photography by Cem_Usakligil - cem.usakligil.com
Reply With Quote
  #68  
Old January 14th, 2011, 04:09 PM
Doug Kerr Doug Kerr is offline
Senior Member
 
Join Date: May 2006
Location: Alamogordo, New Mexico, USA
Posts: 4,901
Default

Hi, Cem,

Quote:
Originally Posted by Cem_Usakligil View Post
Hi Doug,

Sorry I must have missed this one earlier. You could use the following HTML code to change the BG and the text colors in your web page.

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body style="background:#707070; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; font-size:12px">

<p style="color: #FFFFFF;">This background is 112,112,112.</p><br />


<p style="color: #000000;">This is text in 0,0,0.</p>

<p style="color: #FFFFFF;">This is text in 255,255,255.</p>

<p style="color: #FFFF00;">This is text in 255,255,0.</p>

<p style="color: #00FFFF;">This is text in 0,255,255.</p>

</body>
</html>
The resulting web page looks like this.
Thanks. I more or less knew that, but it was helpful to be reminded of the exact details.

Actually what I meant (and I see I wasn't too clear about that) is, is there some way to emded HTML in a post itself to do that?

Thanks.

Best regards,

Doug
Reply With Quote
  #69  
Old January 14th, 2011, 04:15 PM
Cem_Usakligil Cem_Usakligil is offline
Senior Member
 
Join Date: Jun 2006
Posts: 4,812
Default

Quote:
Originally Posted by Doug Kerr View Post
...Actually what I meant (and I see I wasn't too clear about that) is, is there some way to emded HTML in a post itself to do that?
Ah, I kind of suspected that but I chose to answer the easier option ;-).
Well, executing custom html code from within a post is not possible. If it were so, it would become a security breach. As you know, one can change the color of the fonts using the preset palette but not the background.

Cheers,
__________________
Kind Regards,

Cem

Photography by Cem_Usakligil - cem.usakligil.com
Reply With Quote
  #70  
Old January 14th, 2011, 09:40 PM
Doug Kerr Doug Kerr is offline
Senior Member
 
Join Date: May 2006
Location: Alamogordo, New Mexico, USA
Posts: 4,901
Default

Hi, Cem,

Quote:
Originally Posted by Cem_Usakligil View Post
Ah, I kind of suspected that but I chose to answer the easier option ;-).
Well, executing custom html code from within a post is not possible.
Well, that's what I figgered.

Thanks.

Best regards,

Doug
Reply With Quote
  #71  
Old April 9th, 2011, 11:25 AM
fahim mohammed fahim mohammed is offline
Senior Member
 
Join Date: May 2008
Posts: 5,243
Default OPF Color Scheme

I feel a neutral gray or dark background would help in displaying the images posted better.

The current almost white ( computer paper color ) to me is atrocious on the eyes and the image borders.

This has been my experience based on the use of other forums.

What do the members think?
Reply With Quote
  #72  
Old April 9th, 2011, 12:28 PM
Doug Kerr Doug Kerr is offline
Senior Member
 
Join Date: May 2006
Location: Alamogordo, New Mexico, USA
Posts: 4,901
Default

Hi, Fahim,

Quote:
Originally Posted by fahim mohammed View Post
I feel a neutral gray or dark background would help in displaying the images posted better.

The current almost white ( computer paper color ) to me is atrocious on the eyes and the image borders.

This has been my experience based on the use of other forums.

What do the members think?
Do you not find the gray background "style" option useful? (I don't care for it myself.)

Best regards,

Doug
Reply With Quote
  #73  
Old April 9th, 2011, 12:55 PM
fahim mohammed fahim mohammed is offline
Senior Member
 
Join Date: May 2008
Posts: 5,243
Default

Hi Doug,

First, I have to confess that I did not know about the options. Now I have tried them.

To be honest, I prefer the Grey bg, when the image is displayed but the lettering colors seem like so much of a mishmash.

The grey bg is tiring my eyes fast.

I don't know. Scientific answer...some other forums present a very comfortable display palette to me.

I am reverting to the defaut.

Thanks.
Reply With Quote
  #74  
Old April 9th, 2011, 01:06 PM
Asher Kelman Asher Kelman is offline
OPF Owner/Editor-in-Chief
 
Join Date: Apr 2006
Posts: 24,147
Default

Quote:
Originally Posted by fahim mohammed View Post
Hi Doug,

First, I have to confess that I did not know about the options. Now I have tried them.

To be honest, I prefer the Grey bg, when the image is displayed but the lettering colors seem like so much of a mishmash.

The grey bg is tiring my eyes fast.

I don't know. Scientific answer...some other forums present a very comfortable display palette to me.

I am reverting to the defaut.

Thanks.
Hi Fahim,

So you see it's not easy! Look above at post # 26, my mock-up of a dark background, and tell me how readable that is to you? We need to design the artistic identity of the page to be tolerant of the change in background. Nicolas Claris' design has worked well for us! However, it is not easy on the eyes with a background foreign to it's original esthetics. We love top have advice and opinions here as a change involves considerable effort. However, when the time comes, we'll do it with care, respecting what we already have.

Asher
__________________
Follow us on Twitter at @opfweb

Our purpose is getting to an impressive photograph. So we encourage browsing and then feedback. Consider a link to your galleries annotated, C&C welcomed. Images posted within OPF are assumed to be for Comment & Critique, unless otherwise designated.
Reply With Quote
  #75  
Old April 9th, 2011, 01:34 PM
fahim mohammed fahim mohammed is offline
Senior Member
 
Join Date: May 2008
Posts: 5,243
Default

I looked at post #26. Some images look very good there. Not all.

As you said, I guess I can survive with the default.

Till I am here, that is.

Regards.
Reply With Quote
  #76  
Old April 9th, 2011, 02:08 PM
Asher Kelman Asher Kelman is offline
OPF Owner/Editor-in-Chief
 
Join Date: Apr 2006
Posts: 24,147
Default

Quote:
Originally Posted by fahim mohammed View Post
I looked at post #26. Some images look very good there. Not all.

As you said, I guess I can survive with the default.

Till I am here, that is.

Regards.
Can you specify where it does not work?

Asher
__________________
Follow us on Twitter at @opfweb

Our purpose is getting to an impressive photograph. So we encourage browsing and then feedback. Consider a link to your galleries annotated, C&C welcomed. Images posted within OPF are assumed to be for Comment & Critique, unless otherwise designated.
Reply With Quote
  #77  
Old April 9th, 2011, 02:29 PM
fahim mohammed fahim mohammed is offline
Senior Member
 
Join Date: May 2008
Posts: 5,243
Default

Asher, please understand that this is purely my subjective opinion.

In post #26, #5 does not seem to me to go very well with that bg. #1 is not bad.
#2,3,4 appear, to me, to be a better viewing experience than on the default bg.

I really do not want to seem to insist that that should be the bg.

There are many other forum members, and then there is the issue as I saw of the grey bg and the lettering. I understand that there might not be an ideal solution, within aesthetic, cost, time, technical constraints. Also most members ( if they ever voice an opinion in this matter ) might not want to change anything. Fine.

I am just one forum member voicing a subjective opinion.
I have expressed my opinion , and I shall let the matter rest there.

Regards.
Reply With Quote
  #78  
Old April 9th, 2011, 02:36 PM
Asher Kelman Asher Kelman is offline
OPF Owner/Editor-in-Chief
 
Join Date: Apr 2006
Posts: 24,147
Default

Quote:
Originally Posted by fahim mohammed View Post
Asher, please understand that this is purely my subjective opinion.

In post #26, #5 does not seem to me to go very well with that bg. #1 is not bad.
#2,3,4 appear, to me, to be a better viewing experience than on the default bg.
Fahim,

Thanks for being so sporting and sharing your impressions, however restrained and non-demanding. Despite your reluctance to champion any change to satisfy your own needs, your contribution will help me understand better the complexity of reader experience. We need to be nudged to get things right in the next big update of the forum.

No one should be concerned lest we act on their one personal POV to the detriment of everyone else! This feedback is only used in a gestalt fashion with many views taken as a whole. So the more replies, the better our understanding of what we might do.

Asher
__________________
Follow us on Twitter at @opfweb

Our purpose is getting to an impressive photograph. So we encourage browsing and then feedback. Consider a link to your galleries annotated, C&C welcomed. Images posted within OPF are assumed to be for Comment & Critique, unless otherwise designated.
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
What is Light? Georg R. Baumann Provocative Thoughts and Images: May be offensive NSFW, Nudity/moral/political issues! 22 April 3rd, 2009 11:20 PM
"Incident" and "reflected" white balance measurements Doug Kerr Imaging Technology: Theory, Alternatives, Practice and Advances. 2 August 23rd, 2008 05:23 PM
Color correction info in EOS JPG files? Doug Kerr Canon Eos Mount DSLRs 27 March 9th, 2008 12:19 PM
Some thoughts on white balance measurement diffusers Doug Kerr CM Theory and Practice 7 February 14th, 2008 03:52 PM
Creating with Light KrisCarnmarker Studio, Portrait, Still Life, Lighting Equipment and Technique 2 March 31st, 2007 09:56 AM


All times are GMT -7. The time now is 04:54 PM.


Posting images and text grants limited license to OPF , while the © of these individual items remains with the originator, all the assembled content Copyright 2006-2013 Asher Kelman (all rights reserved)