Hello
I'm submitting a wallpaper I have made. It is based on 3D model made of CentOS logo.
https://github.com/CentOS/Artwork/blob/master/Wallpaper_3d_logo.png
Sincerely, Andrew Ognev
On Thu, Sep 25, 2014 at 12:49 PM, Andrew Ognev 80lin08@gmail.com wrote:
Hello
I'm submitting a wallpaper I have made. It is based on 3D model made of CentOS logo.
https://github.com/CentOS/Artwork/blob/master/Wallpaper_3d_logo.png
This is awesome, very well done ... May I request a widescreen ratio version?
-AdamM
Sincerely, Andrew Ognev _______________________________________________ CentOS-devel mailing list CentOS-devel@centos.org http://lists.centos.org/mailman/listinfo/centos-devel
On Thu, Sep 25, 2014 at 02:40:05PM -0500, Adam Miller wrote:
On Thu, Sep 25, 2014 at 12:49 PM, Andrew Ognev 80lin08@gmail.com wrote:
Hello
I'm submitting a wallpaper I have made. It is based on 3D model made of CentOS logo.
https://github.com/CentOS/Artwork/blob/master/Wallpaper_3d_logo.png
This is awesome, very well done ... May I request a widescreen ratio version?
I second that emotion!
On 09/25/2014 02:40 PM, Adam Miller wrote:
This is awesome, very well done ... May I request a widescreen ratio version?
Note that he posted the .blend file, so I assume that anyone who knows how to use blender (i.e. not me) can generate any resolution they desire.
2014-09-26 4:36 GMT+01:00, Ian Pilcher arequipeno@gmail.com:
On 09/25/2014 02:40 PM, Adam Miller wrote:
This is awesome, very well done ... May I request a widescreen ratio version?
Note that he posted the .blend file, so I assume that anyone who knows how to use blender (i.e. not me) can generate any resolution they desire.
You're right. Wallpaper is rendered at resolution 1920x1200. You can set on 1920x1080 or smaller widescreen without modifications, for higher resolution it's possible to re-render, but It'll take a while.
Sincerely, Andrew Ognev
On 09/26/2014 03:48 AM, Andrew Ognev wrote:
You're right. Wallpaper is rendered at resolution 1920x1200. You can set on 1920x1080 or smaller widescreen without modifications, for higher resolution it's possible to re-render, but It'll take a while.
Pardon my ignorance - I know very little about Blender. Would it be possible to tell us how we could take the blender file and render it to the size of our own liking? I'm using a 4K monitor, not many wallpapers for that resolution yet...
Best,
jzb
On Sat, Sep 27, 2014 at 2:28 PM, Joe Brockmeier jzb@redhat.com wrote:
On 09/26/2014 03:48 AM, Andrew Ognev wrote:
You're right. Wallpaper is rendered at resolution 1920x1200. You can set on 1920x1080 or smaller widescreen without modifications, for higher resolution it's possible to re-render, but It'll take a while.
Pardon my ignorance - I know very little about Blender. Would it be possible to tell us how we could take the blender file and render it to the size of our own liking? I'm using a 4K monitor, not many wallpapers for that resolution yet...
I am a blender newbie, too. :) I tried to find an option to specify the dimension (resolution) from the command line but was not able to. The only way to achieve this was by running blender in GUI and set up the desired parameters in the Dimensions section.
"Resolution The Dimensions section has settings for the size of the rendered images. By default the dimensions SizeX and SizeY are 1920×1080 and can be changed by adjusting the X and Y fields. These buttons control the overall size of the image."
(from http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Output)
Once this is set, blender used the specified resolution in the subsequent run from the CLI. For example, the following command seems to have worked (to write a jpg file):
blender -b Wallpaper_3d_logo.blend -o /tmp/wall.jpg -F JPEG -x 1 -f 1
Akemi
2014-09-28 17:56 GMT+01:00, Akemi Yagi amyagi@gmail.com:
On Sat, Sep 27, 2014 at 2:28 PM, Joe Brockmeier jzb@redhat.com wrote:
Pardon my ignorance - I know very little about Blender. Would it be possible to tell us how we could take the blender file and render it to the size of our own liking? I'm using a 4K monitor, not many wallpapers for that resolution yet...
I am a blender newbie, too. :) I tried to find an option to specify the dimension (resolution) from the command line but was not able to. The only way to achieve this was by running blender in GUI and set up the desired parameters in the Dimensions section.
"Resolution The Dimensions section has settings for the size of the rendered images. By default the dimensions SizeX and SizeY are 1920×1080 and can be changed by adjusting the X and Y fields. These buttons control the overall size of the image."
(from http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Output)
Once this is set, blender used the specified resolution in the subsequent run from the CLI. For example, the following command seems to have worked (to write a jpg file):
blender -b Wallpaper_3d_logo.blend -o /tmp/wall.jpg -F JPEG -x 1 -f 1
Akemi
Blender has bad CLI. So even changing render resolution is tricky. You can run this bash script to render at custom resolution:
x=1920; y=1080; echo "import bpy bpy.data.scenes['Scene'].render.resolution_x=$x bpy.data.scenes['Scene'].render.resolution_y=$y bpy.ops.render.render(write_still=True) " | blender -b ./Wallpaper_3d_logo.blend -o /tmp/wall.png -F PNG --python-console
I recommend to use latest stable blender (2.71) because of render engine optimizations, but at least blender 2.66.
Regards, Andrew Ognev