ほしのあき 7
GIMP Script-Fuでレタッチしました。
壁紙の解像度は1024x768です。


使用Script
| super-softfocus | 綺麗なソフトフォーカス |
| my-curve | カラーカーブの調整 |
| my-logo 1.1 | テキストの配置 |
my-logoを使用するにはType1フォントの追加が必要です。
ほしのあき 6
GIMP Script-Fuでレタッチしました。
壁紙の解像度は1024x768です。


使用Script
| super-softfocus | 綺麗なソフトフォーカス |
| my-curve | カラーカーブの調整 |
| my-logo 1.1 | テキストの配置 |
my-logoを使用するにはType1フォントの追加が必要です。
ほしのあき 5
GIMP Script-Fuでレタッチしました。
壁紙の解像度は1024x768です。


使用Script
| super-softfocus | 綺麗なソフトフォーカス |
| my-curve | カラーカーブの調整 |
| my-logo 1.1 | テキストの配置 |
my-logoを使用するにはType1フォントの追加が必要です。
ほしのあき 4
GIMP Script-Fuでレタッチしました。
壁紙の解像度は1024x768です。


相互リンク
| アイドルを見たい | アイドル動画サイト。厳選画像サイトも紹介 |
| ちょっとエッチなWallpaper | 18歳未満アクセス禁止です |
| アイドル壁紙Z | アイドル壁紙をお探しの方はこちらもチェック |
| 壁紙ウエルサーチ◆ Wall S ◆ | 壁紙をお探しの方はこちらもチェック |
| 壁紙アクア | 壁紙をお探しの方はこちらもチェック |
使用Script
| super-softfocus | 綺麗なソフトフォーカス |
| my-curve | カラーカーブの調整 |
| my-logo 1.1 | テキストの配置 |
my-logoを使用するにはType1フォントの追加が必要です。
ほしのあき 3
GIMP Script-Fuでレタッチしました。
壁紙の解像度は1024x768です。

相互リンク
| FC2 アイドル Blog Ranking | アイドルブログランキングをチェック |
| アイドル壁紙Z | アイドル壁紙をお探しの方はこちらもチェック |
| 壁紙ウエルサーチ◆ Wall S ◆ | 壁紙をお探しの方はこちらもチェック |
| 壁紙アクア | 壁紙をお探しの方はこちらもチェック |
使用Script
| scale | 縦768pxに画像を拡大縮小 |
| super-softfocus | 綺麗なソフトフォーカス |
| my-curve | カラーカーブの調整 |
| resize | 1024x768にキャンパスサイズを変更 |
ほしのあき
GIMP Script-Fuでレタッチしました。
壁紙の解像度は1024x768です。

相互リンク
| FC2 アイドル Blog Ranking | アイドルブログランキングをチェック |
| アイドル壁紙Z | アイドル壁紙をお探しの方はこちらもチェック |
| 壁紙ウエルサーチ◆ Wall S ◆ | 壁紙をお探しの方はこちらもチェック |
| アイドルリンクの輪 | アイドル画像をお探しの方はこちらもチェック |
使用Script
| super-softfocus | 綺麗なソフトフォーカス |
| my-curve | カラーカーブの調整 |
| my-logo 1.1 | テキストの配置 |
my-logoを使用するにはType1フォントの追加が必要です。
ほしのあき - スクリプト解説 4in1 -
フリー画像編集ソフトGIMPのScript-Fuを使って、Wallpaperを作りました。

_
_
_
相互リンク
| アイドル壁紙Z | アイドル壁紙をお探しの方はこちらもチェック |
| 壁紙ウエルサーチ◆ Wall S ◆ | 壁紙をお探しの方はこちらもチェック |
Scriptは下のリンクからダウンロードして下さい。
4in1
【Wallpaper作成手順】
- 新規画像を開く
- 統合する4ファイルをレイヤーダイアログにドロップする。
- 4in1を実行する。
背景レイヤー以外の4つのレイヤーを取得します。
(set! layers-num (car (gimp-image-get-layers image))) (set! layer-1 (aref (cadr (gimp-image-get-layers image)) 0)) (set! layer-2 (aref (cadr (gimp-image-get-layers image)) 1)) (set! layer-3 (aref (cadr (gimp-image-get-layers image)) 2)) (set! layer-4 (aref (cadr (gimp-image-get-layers image)) 3))
4つのレイヤーのサイズを変更します。
横幅は(画像の半分 - 20px)
縦幅は、縦横比を保持したサイズにします。
layer-2/layer-3/layer-4に対しても同様の処理をします。
(gimp-layer-scale
layer-1
(- (/ width 2) 20)
(* (- (/ width 2) 20)
(/ (car (gimp-drawable-height layer-1 ))
(car (gimp-drawable-width layer-1 ))
)
)
0)
4つのレイヤーをそれぞれの位置に配置します。
(gimp-layer-set-offsets layer-1 10
10)
(gimp-layer-set-offsets layer-2 (+ (/ width 2) 5)
10)
(gimp-layer-set-offsets layer-3 10
(+ (/ height 2) 5))
(gimp-layer-set-offsets layer-4 (+ (/ width 2) 5)
(+ (/ height 2) 5))
layer-4はロゴレイヤーなので、ドロップシャドウのために背景の白を透明に変換します。
(plug-in-colortoalpha 1 image layer-4 '(256 256 256))
4つのレイヤーをgimp-image-merge-downで統合します。
(set! merge-layer (car (gimp-image-merge-down image
(car (gimp-image-merge-down image
(car (gimp-image-merge-down image layer-1 0)) 0)) 0)) )
レイヤーサイズをイメージサイズに合わせます。
(gimp-layer-resize-to-image-size merge-layer)
ドロップシャドウのためにレイヤーをコピーします。
(set! copy-layer (car(gimp-layer-copy merge-layer 1))) (gimp-image-add-layer image copy-layer 0)
merge-layerの透明部分以外を前景色で塗りつぶします。
(gimp-selection-layer-alpha merge-layer) (gimp-edit-fill merge-layer 0) (gimp-selection-none image)
ドロップシャドウを作成します。
ガウシアンぼかしを適用、x方向/y方向に4pxずらし、不透明度を80%に設定します。
(plug-in-gauss-iir2 1 image merge-layer 10 10) (gimp-layer-set-offsets merge-layer 5 5) (gimp-layer-set-opacity merge-layer 80)
画像を再描画します。
(gimp-displays-flush)









