﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3A2.4%2FDoc%2FHow_to%2FEdit_the_SplashScreen</id>
	<title>Dev:2.4/Doc/How to/Edit the SplashScreen - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3A2.4%2FDoc%2FHow_to%2FEdit_the_SplashScreen"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.4/Doc/How_to/Edit_the_SplashScreen&amp;action=history"/>
	<updated>2026-06-02T10:21:49Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:2.4/Doc/How_to/Edit_the_SplashScreen&amp;diff=55468&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.4/Doc/How_to/Edit_the_SplashScreen&amp;diff=55468&amp;oldid=prev"/>
		<updated>2018-06-28T17:51:57Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 17:51時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:2.4/Doc/How_to/Edit_the_SplashScreen&amp;diff=55467&amp;oldid=prev</id>
		<title>wiki&gt;Brecht: moved Dev:Doc/How to/Edit the SplashScreen to Dev:2.4/Doc/How to/Edit the SplashScreen</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.4/Doc/How_to/Edit_the_SplashScreen&amp;diff=55467&amp;oldid=prev"/>
		<updated>2011-06-15T13:08:04Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/Dev:Doc/How_to/Edit_the_SplashScreen&quot; class=&quot;mw-redirect&quot; title=&quot;Dev:Doc/How to/Edit the SplashScreen&quot;&gt;Dev:Doc/How to/Edit the SplashScreen&lt;/a&gt; to &lt;a href=&quot;/Dev:2.4/Doc/How_to/Edit_the_SplashScreen&quot; title=&quot;Dev:2.4/Doc/How to/Edit the SplashScreen&quot;&gt;Dev:2.4/Doc/How to/Edit the SplashScreen&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=Editing the Splash Screen=&lt;br /&gt;
&lt;br /&gt;
Editing the Splash Screen is a fairly straight forward process, suitable for your first blender programing attempt.&lt;br /&gt;
&lt;br /&gt;
==Finding the appropriate files in the source files==&lt;br /&gt;
&lt;br /&gt;
===release/datafiles/splash.jpg===&lt;br /&gt;
&lt;br /&gt;
This is the location of the current splash screen being used by blender. First you have to create your new splash screen. Do this by editing the current splash screen in your favorite image editing software ie '''Photoshop''', '''Gimp''' even '''Microsoft's Paint''' program will do.&lt;br /&gt;
&lt;br /&gt;
Once you have created your splash screen save it as '''splash.jpg''' If you're using a version of blender 2.5, the new datatoc.py supports .png files, so you should probably save it as a .png.&lt;br /&gt;
&lt;br /&gt;
===release/datafiles/datatoc.c===&lt;br /&gt;
&lt;br /&gt;
Find this file in the same location and compile it using any compiler you have.&lt;br /&gt;
'''datatoc.c''' is a small program which converts the '''JPG''' image to text format suitable for blender to interpret. You do not need to do this if you are using Blender 2.5.&lt;br /&gt;
&lt;br /&gt;
I compiled it with the following commmand&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;gcc -o datatoc datatoc.c&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
once compiled you will have a program called datatoc&lt;br /&gt;
you then use this program to convert your '''splash.jpg''' to a '''splash.jpg.c''' file&lt;br /&gt;
by typing the following at the command prompt. Do not do this with Blender 2.5&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;python datatoc.py splash.jpg&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
giving you a '''splash.jpg.c''' file&lt;br /&gt;
&lt;br /&gt;
If you do use blender 2.5, than there is a python script (that supports .png files) that does this. Invoke it with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;./datatoc.py splash.png&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
giving you a '''splash.png.c''' file&lt;br /&gt;
&lt;br /&gt;
If using a version of Blender prior to 2.5, copy your splash.jpg.c file to&lt;br /&gt;
&lt;br /&gt;
===source/blender/src=== &lt;br /&gt;
replacing the original. If using Blender 2.5, copy your splash .png.c file to source/blender/editors/datafiles&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now compile blender as you would normally. &lt;br /&gt;
&lt;br /&gt;
All done, you now have a new splash screen!&lt;br /&gt;
&lt;br /&gt;
[[Category:Script]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Brecht</name></author>
		
	</entry>
</feed>