Translation:Ink
From IDMLWiki
Contents |
インキ
インキは、印刷時に特定のカラーを作るために使われるものです。プロセスカラーでは、シアン、マゼンタ、イエロー、黒のインキを混合して、様々なカラーを作ります。一方、特色は、特色ごとに独立した1種類のインキ、または刷版を表現します。インキとカラーの関係については、InDesignのドキュメントを参照してください。
スキーマの例63 Ink
Ink_Object = element Ink {
attribute Self { xsd:string },
attribute Name { xsd:string },
attribute AliasInkName{ xsd:string }?,
attribute Angle { xsd:double {minInclusive="0" maxInclusive="360"} }?,
attribute ConvertToProcess{ xsd:boolean }?,
attribute Frequency { xsd:double {minInclusive="1" maxInclusive="500"} }?,
attribute NeutralDensity{ xsd:double{minInclusive="0.001" maxInclusive="10"}}?,
attribute PrintInk{ xsd:boolean }?,
attribute TrapOrder{ xsd:int }?,
attribute InkType{ InkTypes_EnumValue }?,
element Properties {element Label { element KeyValuePair{ KeyValuePair_TypeDef }*
}?
}?}
| 名前 | 値 | 必須 | 説明 |
|---|---|---|---|
| AliasInkName | string | インキエイリアスのユニークなID。(Self属性)インキエイリアスについてはInDesignドキュメントを参照 | |
| Angle | double | スクリーン角度(0-360) | |
| ConvertToProcess | boolean | trueのとき、特色をプロセスカラーに変換する(ドキュメント中の特色の定義には影響しない) | |
| Frequency | double | スクリーン線数(1-500) | |
| InkType | InkTypes_EnumValue | トラップタイプ。Normal、Opaque、TransparentまたはOpaqueIgnore | |
| Name | string | ○ | インキ名 |
| NeutralDensity | double | ND値(0.001-10.0) | |
| PrintInk | boolean | trueのとき(デフォルト値)、インキは印刷される | |
| TrapOrder | int | トラップの順番 |
IDMLの例60 Process Magentaインキ
<Ink Self="Ink\Process Magenta" Name="$ID/Process Magenta" AliasInkName="[ NoAlias]" Angle="15" ConvertToProcess=" false" Frequency="70" NeutralDensity=" 0.76" PrintInk=" true" TrapOrder=" 2" InkType=" Normal"/>
上記の例で、「$ID」がデフォルトのインキ名「Magenta」の前についていることに注意してください。このインキ名がローカルであることを意味しています。
IDMLの例61 特色Pantone 274 C
<Ink Self="Ink\cPANTONE 274 C" Name="PANTONE 274 C" AliasInkName="[ NoAlias]" Angle="45" ConvertToProcess=" false" Frequency="70" NeutralDensity=" 1.6130121989933028" PrintInk=" true" TrapOrder=" 5" InkType=" Normal"/>
