当前位置: 首页>>代码示例>>Java>>正文


Java Chunk.setTextRise方法代码示例

本文整理汇总了Java中com.lowagie.text.Chunk.setTextRise方法的典型用法代码示例。如果您正苦于以下问题:Java Chunk.setTextRise方法的具体用法?Java Chunk.setTextRise怎么用?Java Chunk.setTextRise使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.lowagie.text.Chunk的用法示例。


在下文中一共展示了Chunk.setTextRise方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createChunk

import com.lowagie.text.Chunk; //导入方法依赖的package包/类
public Chunk createChunk(String text, ChainedProperties props) {
	Font font = getFont(props);
	float size = font.getSize();
	size /= 2;
	Chunk ck = new Chunk(text, font);
	if (props.hasProperty("sub"))
		ck.setTextRise(-size);
	else if (props.hasProperty("sup"))
		ck.setTextRise(size);
	ck.setHyphenation(getHyphenation(props));
	return ck;
}
 
开发者ID:albfernandez,项目名称:itext2,代码行数:13,代码来源:FactoryProperties.java

示例2: main

import com.lowagie.text.Chunk; //导入方法依赖的package包/类
/**
 * Demonstrates some Chunk functionality.
 */
@Test
public void main() throws Exception {

	// step 1: creation of a document-object
	Document document = new Document();
	// step 2:
	// we create a writer that listens to the document
	PdfWriter.getInstance(document, PdfTestBase.getOutputStream("Chunks.pdf"));

	// step 3: we open the document
	document.open();
	// step 4:
	Chunk fox = new Chunk("quick brown fox");
	float superscript = 8.0f;
	fox.setTextRise(superscript);
	fox.setBackground(new Color(0xFF, 0xDE, 0xAD));
	Chunk jumps = new Chunk(" jumps over ");
	Chunk dog = new Chunk("the lazy dog");
	float subscript = -8.0f;
	dog.setTextRise(subscript);
	dog.setUnderline(new Color(0xFF, 0x00, 0x00), 3.0f, 0.0f, -5.0f + subscript, 0.0f,
			PdfContentByte.LINE_CAP_ROUND);
	document.add(fox);
	document.add(jumps);
	document.add(dog);

	// step 5: we close the document
	document.close();
}
 
开发者ID:albfernandez,项目名称:itext2,代码行数:33,代码来源:ChunksTest.java

示例3: main

import com.lowagie.text.Chunk; //导入方法依赖的package包/类
/**
 * Demonstrates some Chunk functionality.
 * 
 * @param args
 *            no arguments needed here
 */
public static void main(String[] args) {

	System.out.println("the Chunk object");

	// step 1: creation of a document-object
	Document document = new Document();
	try {
		// step 2:
		// we create a writer that listens to the document
		PdfWriter.getInstance(document, new FileOutputStream(android.os.Environment.getExternalStorageDirectory() + java.io.File.separator + "droidtext" + java.io.File.separator + "Chunks.pdf"));

		// step 3: we open the document
		document.open();
		// step 4:
		Chunk fox = new Chunk("quick brown fox");
		float superscript = 8.0f;
		fox.setTextRise(superscript);
		fox.setBackground(new Color(0xFF, 0xDE, 0xAD));
		Chunk jumps = new Chunk(" jumps over ");
		Chunk dog = new Chunk("the lazy dog");
		float subscript = -8.0f;
		dog.setTextRise(subscript);
		dog.setUnderline(new Color(0xFF, 0x00, 0x00), 3.0f, 0.0f, -5.0f + subscript, 0.0f,
				PdfContentByte.LINE_CAP_ROUND);
		document.add(fox);
		document.add(jumps);
		document.add(dog);
	} catch (DocumentException de) {
		System.err.println(de.getMessage());
	} catch (IOException ioe) {
		System.err.println(ioe.getMessage());
	}

	// step 5: we close the document
	document.close();
}
 
开发者ID:fc-dream,项目名称:PDFTestForAndroid,代码行数:43,代码来源:Chunks.java

示例4: getChunk

import com.lowagie.text.Chunk; //导入方法依赖的package包/类
/**
 * Creates a Chunk object based on a list of properties.
 * @param attributes
 * @return a Chunk
 */
public static Chunk getChunk(Properties attributes) {
	Chunk chunk = new Chunk();

	chunk.setFont(FontFactory.getFont(attributes));
	String value;

	value = attributes.getProperty(ElementTags.ITEXT);
	if (value != null) {
		chunk.append(value);
	}
	value = attributes.getProperty(ElementTags.LOCALGOTO);
	if (value != null) {
		chunk.setLocalGoto(value);
	}
	value = attributes.getProperty(ElementTags.REMOTEGOTO);
	if (value != null) {
		String page = attributes.getProperty(ElementTags.PAGE);
		if (page != null) {
			chunk.setRemoteGoto(value, Integer.parseInt(page));
		} else {
			String destination = attributes
					.getProperty(ElementTags.DESTINATION);
			if (destination != null) {
				chunk.setRemoteGoto(value, destination);
			}
		}
	}
	value = attributes.getProperty(ElementTags.LOCALDESTINATION);
	if (value != null) {
		chunk.setLocalDestination(value);
	}
	value = attributes.getProperty(ElementTags.SUBSUPSCRIPT);
	if (value != null) {
		chunk.setTextRise(Float.parseFloat(value + "f"));
	}
	value = attributes.getProperty(Markup.CSS_KEY_VERTICALALIGN);
	if (value != null && value.endsWith("%")) {
		float p = Float.parseFloat(value.substring(0, value.length() - 1)
				+ "f") / 100f;
		chunk.setTextRise(p * chunk.getFont().getSize());
	}
	value = attributes.getProperty(ElementTags.GENERICTAG);
	if (value != null) {
		chunk.setGenericTag(value);
	}
	value = attributes.getProperty(ElementTags.BACKGROUNDCOLOR);
	if (value != null) {
		chunk.setBackground(Markup.decodeColor(value));
	}
	return chunk;
}
 
开发者ID:albfernandez,项目名称:itext2,代码行数:57,代码来源:ElementFactory.java

示例5: getChunk

import com.lowagie.text.Chunk; //导入方法依赖的package包/类
/**
 *
 */
protected Chunk getChunk(Map<Attribute,Object> attributes, String text, Locale locale)
{
	// underline and strikethrough are set on the chunk below
	Font font = getFont(attributes, locale, false);

	Chunk chunk = new Chunk(text, font);
	
	if (hasUnderline(attributes))
	{
		// using the same values as sun.font.Fond2D
		chunk.setUnderline(null, 0, 1f / 18, 0, -1f / 12, 0);
	}
	
	if (hasStrikethrough(attributes))
	{
		// using the same thickness as sun.font.Fond2D.
		// the position is calculated in Fond2D based on the ascent, defaulting 
		// to iText default position which depends on the font size
		chunk.setUnderline(null, 0, 1f / 18, 0, 1f / 3, 0);
	}

	Color backcolor = (Color)attributes.get(TextAttribute.BACKGROUND);
	if (backcolor != null)
	{
		chunk.setBackground(backcolor);
	}

	Object script = attributes.get(TextAttribute.SUPERSCRIPT);
	if (script != null)
	{
		if (TextAttribute.SUPERSCRIPT_SUPER.equals(script))
		{
			chunk.setTextRise(font.getCalculatedLeading(1f)/2);
		}
		else if (TextAttribute.SUPERSCRIPT_SUB.equals(script))
		{
			chunk.setTextRise(-font.getCalculatedLeading(1f)/2);
		}
	}

	if (splitCharacter != null)
	{
		//TODO use line break offsets if available?
		chunk.setSplitCharacter(splitCharacter);
	}

	return chunk;
}
 
开发者ID:TIBCOSoftware,项目名称:jasperreports,代码行数:52,代码来源:JRPdfExporter.java


注:本文中的com.lowagie.text.Chunk.setTextRise方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。