Translation:Ink

From IDMLWiki

Jump to: navigation, search

Contents

インキ

インキは、印刷時に特定のカラーを作るために使われるものです。プロセスカラーでは、シアン、マゼンタ、イエロー、黒のインキを混合して、様々なカラーを作ります。一方、特色は、特色ごとに独立した1種類のインキ、または刷版を表現します。インキとカラーの関係については、InDesignのドキュメントを参照してください。

スキーマの例63 Ink
  1. Ink_Object = element Ink {
  2.   attribute Self { xsd:string },
  3.   attribute Name { xsd:string },
  4.   attribute AliasInkName{  xsd:string }?,
  5.   attribute Angle { xsd:double {minInclusive="0" maxInclusive="360"} }?,
  6.   attribute ConvertToProcess{  xsd:boolean }?,
  7.   attribute Frequency { xsd:double {minInclusive="1" maxInclusive="500"} }?,
  8.   attribute NeutralDensity{ xsd:double{minInclusive="0.001" maxInclusive="10"}}?,
  9.   attribute PrintInk{  xsd:boolean }?,
  10.   attribute TrapOrder{  xsd:int }?,
  11.   attribute InkType{  InkTypes_EnumValue }?,
  12.   element Properties {
  13.     element Label { element KeyValuePair{  KeyValuePair_TypeDef }*
  14.     }?
  15.   }
  16.   ?
  17. }
表69 属性としてのInkプロパティ
名前 必須 説明
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インキ
  1. <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
  1. <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"/>
Personal tools