Indesignでラフな線を書くには?

[5634]Indesignでラフな線を書くには? | 投稿者:悩み | 投稿日:2011/03/01(Tue) 19:41:28
Indesignでラフな線(直線にほんの少しだけギザギザとかうねりがある線)を書く方法はありますか?

普通の直線だと堅いイメージなので、手書き風というか、ラフっぽいというか
今まで、Illustratorで『効果→パスの変形→ラフ』で、若干のうねりのある線を書いていたのですが、
Indesignで、全て作成することになり、困っています。

ちなみに、Illustratorで囲みケイの線に『効果→パスの変形→ラフ』設定をしていました。
この囲みは左右、方向にサイズが可変します。

Indesignでは、このようなデザイン上のアレンジが出来ないのが難なので、
無理がありますかね?
最悪は、その囲み罫だけをIllustratorで作って、配置するしかないと思っていますが、
サイズ可変するので、その度に作り直すため効率が悪い。

もし、作成する手段があれば教えていただきたいです。
» 1
[5635]Re: Indesignでラフな線を書くには? | 投稿者:(z-) | 投稿日:2011/03/03(Thu) 12:25:33
ほうぼうから「そもそも...」と聞こえてきそうですが
InDesignは不規則にぐにゅぐにゅした物を基本機能に備えておりません。

Illustratorで、あらかじめ長縲懊€懊€懊€懊€懊€懊€懊€懊€懊€懊€怩「直線オブジェクトを作っておいて、InDesignで必要な長さのグラフィックフレームを作成して配置ではだめですかね。
フレームを拡げたぶんだけの直線が見えるという事で。
» 2
[5636]Re: Indesignでラフな線を書くには? | 投稿者:mg | 投稿日:2011/03/03(Thu) 17:50:48
フレームを選択して、鉛筆ツールでなぞって、線に弱いぼかし&ノイズを適用とかじゃダメでしょうか?
何個も面倒ってことなら、自分ならスクリプトを書くかもしれませんが
» 3
[5637]Re: Indesignでラフな線を書くには? | 投稿者:梅花藻 | 投稿日:2011/03/03(Thu) 18:25:20
昔、AppleScriptの勉強がてら、次のようなスクリプトを書いたことがあるのですが......、今現在はあまりスクリプトを書いている時間的な余裕がない上に、IllustratorのスクリプトもAppleScriptの方も結局、十分ものにできていませんので......

どなたかの参考になれば幸い......です。

(*
   InDesignのフレーム(グラフィックフレーム:Rectangle)を選択して
   そのサイズで飾り罫囲みをIllustratorで作成し、InDesignの選択さ
   れたそのフレーム内に配置するスクリプト
   飾り罫用のブラシを作成して登録してあるIllustratorファイル
   を開いておく必要があります。
       2006.12.22/16:00    作成    (C)CopyRight Mishima Baikamo.
*)

property mm2point : 72.0 / 25.4
property Enhancing : 3 --飾り罫の線幅があるので一旦選択フレームを拡大するサイズ(単位:mm)
property KazarikeiBrush : "飾り罫2" --飾り罫ブラシの登録名

tell application "Adobe InDesign CS2_J"
   set myselection to selection
   if class of item 1 of myselection is rectangle then
       set myBounds to geometric bounds of item 1 of myselection
       set flag to true
   else
       set flag to false
   end if
end tell

if flag is true then
   set myRectangleBounds to {(item 2 of myBounds) * mm2point, (item 1 of myBounds) * mm2point, (item 4 of myBounds) * mm2point, (item 3 of myBounds) * mm2point}
   
   tell application "Adobe Illustrator"
       activate
       set myKazarikeibrushe1 to brush KazarikeiBrush of current document
       set myKazarikeiKakomi to make new rectangle at beginning in current document with properties {bounds:myRectangleBounds, filled:false, stroked:true, polarity:positive}
       apply myKazarikeibrushe1 to myKazarikeiKakomi
       set selection to myKazarikeiKakomi
       cut
   end tell
   
   tell application "Adobe InDesign CS2_J"
       set myselection1 to item 1 of selection
       activate
       paste into
       set geometric bounds of myselection1 to {(item 1 of myBounds) - Enhancing, (item 2 of myBounds) - Enhancing, (item 3 of myBounds) + Enhancing, (item 4 of myBounds) + Enhancing}
       fit myselection1 given center content
       fit myselection1 given frame to content
   end tell
end if
この記事の書き込み元へのリンク (コメントや質問などはこちらへどうぞ)

このページをシェア