Editing Talk:GimConv
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
= | =gimconv.cfg unnofficial changes made for rcomage= | ||
The version used as an standard unofficially is the one included in [[rcomage]] that uses a configuration file (named GimConv.cfg) initially edited by Zinga Burga to improve compatibility with rcomage, and later to add compatibility with ps3 rco's (there are some specific settings for ps3 that was added at some point, but now can be considered incorrect for ps3, or not generic enought) | |||
The command line help of GimConv.exe gives a very limited explain of a few options (the ones at top are not real options, are more like groups of presets) | |||
The help | C:\rcomage-v1.1.1\GimConv>GimConv.exe | ||
gimconv ver 1.20h --- generic picture converter | |||
Copyright (C) 2006 Sony Computer Entertainment Inc. | |||
All Rights Reserved. | |||
usage: | |||
gimconv <input files> [options] | |||
options: | |||
-o <filename> specify output file name | |||
-s <w,h> resize image data | |||
-P resize image data to a power of two | |||
-N output in normal (not faster) pixel storage format | |||
-X swap RGBA <-> ABGR | |||
-ps3 output ps3 style GIM | |||
-bpp<n> color output bit depth; n is: 4, 8, 16, 16p, 16a or 32 | |||
4, 8 are indexed; 16, 16a, 16p, 32 are RGBA format | |||
-S output text format | |||
-interact input additional options | |||
-pictures merge files as pictures | |||
-frames merge files as frames | |||
-levels merge files as levels | |||
-prompt prompt always | |||
-warning prompt on warning | |||
-error prompt on error | |||
Some of the options that appears in the help of the command line what are really doing is to load the real options from GimConv.cfg, where all the options are listed and is posible to specify his default values, or to create groups of options, is also the only place where is posible to see all the different settings availables of the tool | |||
These options was added by Zinga Burga to improve compatibility with rcomage, and later to add compatibility with ps3 rco's | |||
*changed under '''default settings''' section: | |||
{{Boxcode|content=<syntaxhighlight lang="c"> | |||
* | |||
{{Boxcode| | |||
pixel_order = faster // default normal faster | pixel_order = faster // default normal faster | ||
limit_image_width = 512 // off $count | limit_image_width = 512 // off $count | ||
Line 60: | Line 43: | ||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||
*''' | *added under '''process option''' section: | ||
{{Boxcode|content=<syntaxhighlight lang="c"> | |||
{{Boxcode| | |||
option -ps3 { | option -ps3 { | ||
format_style = ps3 | format_style = ps3 | ||
Line 146: | Line 68: | ||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||
*''' | *removed under '''default settings''' section: | ||
{{Boxcode|content=<syntaxhighlight lang="c"> | |||
{{Boxcode| | |||
// PS3 OSD default settings | // PS3 OSD default settings | ||
format_endian = big // -B | format_endian = big // -B | ||
pixel_order = normal // -N | pixel_order = normal // -N | ||
pixel_channel = default // -R | pixel_channel = default // -R | ||
image_format = rgba8888 // --image_format rgba8888 | image_format = rgba8888 // --image_format rgba8888 | ||
</syntaxhighlight>}} | |||
*removed under '''mode option''' section: | |||
{{Boxcode|content=<syntaxhighlight lang="c"> | |||
option -viewer { | |||
object_viewer = "GimView.exe" | |||
} | |||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||
*removed under '''process option''' section: | |||
{{Boxcode| | {{Boxcode|content=<syntaxhighlight lang="c"> | ||
option -F { | |||
pixel_order = faster | |||
/ | </syntaxhighlight>}} | ||
*removed under '''PS3 OSD specific options''' section: | |||
{{Boxcode|content=<syntaxhighlight lang="c"> | |||
option -B { | option -B { | ||
format_endian = big | format_endian = big | ||
} | } | ||
option -R { | option -R { | ||
pixel_channel = default | pixel_channel = default | ||
} | } | ||
option -DXT { | option -DXT { | ||
pixel_order = default | pixel_order = default | ||
pixel_channel = default | pixel_channel = default | ||
image_format = default | image_format = default | ||
} | } | ||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||