Page 1 of 1

Thumbnails

Posted: 24 Nov 2009 16:08
by zzjean
How could I :

have thumbnails of 3/2 proportions (ie 180x120 or a little smaller)

see thumbnails for pictures dimensions 4256x2832 - actually, it indicate "Too Large"

thank you

Re: Thumbnails

Posted: 24 Nov 2009 16:15
by j_c_hallgren
In Config>Thumbnails, you can define the sizes to be used via pulldowns...I have 128x96 as my 3rd so...

Re: Thumbnails

Posted: 24 Nov 2009 16:27
by zzjean
OK, I'd seen but 128x96 = 4x3 I'd like 3x2 (my camera is 24x36) It would fit better !

and the pictures are 4256x2832 -

and I can not show the RAW files (NEF Nikon) since I've Win 764 bits :x

but I like XYplorer It's wonderfull

Re: Thumbnails

Posted: 24 Nov 2009 16:45
by j_c_hallgren
zzjean wrote:OK, I'd seen but 128x96 = 4x3 I'd like 3x2 (my camera is 24x36) It would fit better !
You could maybe try 180 x 128?...as 128 is close to the 119 that would compute to the 3x2 ratio...and it's just a thumbnail so a bit of stretching shouldn't hurt that much (hopefully).

Also, I suspect the RAW thing is more of a unique file format issue rather than OS...though as I don't have a camera that uses RAW, I've never checked on this much.

Re: Thumbnails

Posted: 24 Nov 2009 16:47
by serendipity
zzjean wrote:OK, I'd seen but 128x96 = 4x3 I'd like 3x2 (my camera is 24x36) It would fit better !
You can add your own thumb sizes to the XYplorer.ini file. Go to menu "Tools>Open Configuration file" and go to section "Thumbs" and change the thumbs sizes. See here:
http://88.191.26.34/XYwiki/index.php/IN ... ails_Sizes

Re: Thumbnails

Posted: 24 Nov 2009 16:50
by j_c_hallgren
serendipity wrote:You can add your own thumb sizes to the XYplorer.ini file. Go to menu "Tools>Open Configuration file" and go to section "Thumbs" and change the thumbs sizes.
:oops: It's been way too long since I did that so I'd totally forgotten about that...DUH!

Re: Thumbnails

Posted: 24 Nov 2009 16:53
by Muroph
zzjean wrote:see thumbnails for pictures dimensions 4256x2832 - actually, it indicate "Too Large"
zzjean wrote:I'd like 3x2 (my camera is 24x36) It would fit better
you can fix them with 2 ini tweaks.
save your settings, run this script and enter the value you want.

Code: Select all

getkey $MaxArea,MaxArea,thumbs;
	getkey $ThumbSizes,ThumbSizes,thumbs;
	$MaxArea=input("XY Tweaks","max area of thumbed images, 0 = unlimited",$MaxArea);
	$ThumbSizes=input("XY Tweaks","Tweak: comma-separated list of values used for width and height in pixels",$ThumbSizes);
	setkey $MaxArea,MaxArea,thumbs;
	setkey $ThumbSizes,ThumbSizes,thumbs;
	#190;
PS: this is based on a script i use to change some common tweaks.
i'll post the full version later.

PPS: damn! i was too slow! :mrgreen:

Re: Thumbnails

Posted: 24 Nov 2009 17:39
by zzjean
thank you everybody. It's perfect - you're very good !