Spot Colors for Text : Spot Colors « PDF RTF « Java






Spot Colors for Text

Spot Colors for Text
import java.io.FileOutputStream;

import com.lowagie.text.Document;
import com.lowagie.text.Font;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.GrayColor;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfSpotColor;
import com.lowagie.text.pdf.PdfWriter;
import com.lowagie.text.pdf.SpotColor;

public class SpotColorsForTextPDF {
  public static void main(String[] args) {
    Document document = new Document();
    try {
      PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("SpotColorsForTextPDF.pdf"));
      document.open();

      PdfSpotColor spc_g = new PdfSpotColor("PANTONE 100 CV", 0.5f, new GrayColor(0.9f));

      document.add(new Paragraph("text in color", new Font(Font.HELVETICA, 24, Font.NORMAL, new SpotColor(spc_g))));
    } catch (Exception de) {
      de.printStackTrace();
    }
    document.close();
  }

}

           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Spot Colors for TemplateSpot Colors for Template
2.Spot Colors GraySpot Colors Gray
3.Spot Colors with CMYKColorSpot Colors with CMYKColor
4.SpotColor with PdfContentByte
5.Spot Color TintSpot Color Tint