مدیریت پاراگرافهای متن پاورپوینت در اندروید
نمای کلی
Aspose.Slides for Android via Java متن را به عنوان یک سلسلهمراتب از فریمهای متن، پاراگرافها و بخشها نمایش میدهد:
- ITextFrame نمایانگر محفظه متن در یک شکل است و دسترسی به مجموعه پاراگرافهای آن را فراهم میکند.
- IParagraph نمایانگر یک پاراگراف در یک فریم متن است و دسترسی به بخشها و قالببندی سطح پاراگراف را فراهم میکند.
- IPortion نمایانگر یک بخش متن داخل یک پاراگراف است. هر بخش میتواند متن و قالببندی سطح کاراکتر خاص خود را داشته باشد.
به این ترتیب یک پاراگراف میتواند متنی با فونتها، رنگها، اندازهها و سایر قالببندیهای مختلف داشته باشد با استفاده از چندین بخش.
ایجاد و قالببندی پاراگرافها
ایجاد پاراگرافها با چند بخش
مراحل زیر یک فریم متن با سه پاراگراف، هر کدام شامل سه بخش، ایجاد میکند:
- یک نمونه از کلاس Presentation بسازید.
- اسلاید مربوطه را از طریق ایندکس آن دسترسی پیدا کنید.
- یک IAutoShape مستطیلی به اسلاید اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید.
- از پاراگراف پیشفرض استفاده کنید و دو شیء دیگر IParagraph را به فریم متن اضافه کنید.
- به مقدار کافی شیء IPortion برای هر پاراگراف اضافه کنید تا هر کدام شامل سه بخش باشند. پاراگراف پیشفرض در حال حاضر یک بخش خالی دارد.
- متن هر بخش را تنظیم کنید.
- قالببندی سطح کاراکتر را از طریق IPortion.getPortionFormat اعمال کنید.
- ارائه اصلاحشده را ذخیره کنید.
این مثال Android via Java مراحل فوق را پیادهسازی میکند:
import com.aspose.slides.*;
import android.graphics.Color;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 50, 150, 300, 150);
ITextFrame textFrame = shape.getTextFrame();
IParagraph firstParagraph = textFrame.getParagraphs().get_Item(0);
firstParagraph.getPortions().add(new Portion());
firstParagraph.getPortions().add(new Portion());
IParagraph secondParagraph = new Paragraph();
secondParagraph.getPortions().add(new Portion());
secondParagraph.getPortions().add(new Portion());
secondParagraph.getPortions().add(new Portion());
textFrame.getParagraphs().add(secondParagraph);
IParagraph thirdParagraph = new Paragraph();
thirdParagraph.getPortions().add(new Portion());
thirdParagraph.getPortions().add(new Portion());
thirdParagraph.getPortions().add(new Portion());
textFrame.getParagraphs().add(thirdParagraph);
int paragraphCount = textFrame.getParagraphs().getCount();
for (int paragraphIndex = 0; paragraphIndex < paragraphCount; paragraphIndex++) {
IParagraph paragraph = textFrame.getParagraphs().get_Item(paragraphIndex);
int portionCount = paragraph.getPortions().getCount();
for (int portionIndex = 0; portionIndex < portionCount; portionIndex++) {
IPortion portion = paragraph.getPortions().get_Item(portionIndex);
portion.setText("Portion " + (paragraphIndex + 1) + "." + (portionIndex + 1));
if (portionIndex == 0) {
portion.getPortionFormat().getFillFormat().setFillType(FillType.Solid);
portion.getPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.RED);
portion.getPortionFormat().setFontBold(NullableBool.True);
portion.getPortionFormat().setFontHeight(15);
} else if (portionIndex == 1) {
portion.getPortionFormat().getFillFormat().setFillType(FillType.Solid);
portion.getPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLUE);
portion.getPortionFormat().setFontItalic(NullableBool.True);
portion.getPortionFormat().setFontHeight(18);
}
}
}
presentation.save("paragraphs_with_portions.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
ایجاد فهرستهای گلولهای و عددی
ایجاد یک فهرست گلولهای یا عددی
گلولهها و شمارهگذاری موارد مرتبط را اسکن آسانتر میسازند. در Aspose.Slides تنظیمات فهرست از طریق IBulletFormat تعریف میشود.
- یک نمونه از کلاس Presentation بسازید.
- اسلاید مربوطه را از طریق ایندکس آن دسترسی پیدا کنید.
- یک IAutoShape به اسلاید انتخابشده اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید.
- پاراگراف پیشفرض را از فریم متن حذف کنید.
- یک Paragraph برای یک گلوله نمادین ایجاد کنید.
- IBulletFormat.setType را به BulletType.Symbol تنظیم کنید و کاراکتر گلوله را مشخص کنید.
- متن پاراگراف، تورفتگی، رنگ گلوله و ارتفاع گلوله را تنظیم کنید.
- پاراگراف را به فریم متن اضافه کنید.
- پاراگراف دوم را ایجاد کنید و IBulletFormat.setType را به BulletType.Numbered تنظیم کنید.
- سبک گلوله عددی را پیکربندی کنید و پاراگراف را به فریم متن اضافه کنید.
- ارائه را ذخیره کنید.
این مثال Android via Java یک گلوله نمادین و یک گلوله عددی ایجاد میکند:
import com.aspose.slides.*;
import android.graphics.Color;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
ITextFrame textFrame = shape.getTextFrame();
textFrame.getParagraphs().clear();
Paragraph symbolParagraph = new Paragraph();
symbolParagraph.setText("Welcome to Aspose.Slides");
symbolParagraph.getParagraphFormat().getBullet().setType(BulletType.Symbol);
symbolParagraph.getParagraphFormat().getBullet().setChar((char) 0x2022);
symbolParagraph.getParagraphFormat().setIndent(25);
symbolParagraph.getParagraphFormat().getBullet().getColor().setColorType(ColorType.RGB);
symbolParagraph.getParagraphFormat().getBullet().getColor().setColor(Color.BLACK);
symbolParagraph.getParagraphFormat().getBullet().setBulletHardColor(NullableBool.True);
symbolParagraph.getParagraphFormat().getBullet().setHeight(100);
textFrame.getParagraphs().add(symbolParagraph);
Paragraph numberedParagraph = new Paragraph();
numberedParagraph.setText("This is a numbered item");
numberedParagraph.getParagraphFormat().getBullet().setType(BulletType.Numbered);
numberedParagraph.getParagraphFormat().getBullet().setNumberedBulletStyle(NumberedBulletStyle.BulletCircleNumWDBlackPlain);
numberedParagraph.getParagraphFormat().setIndent(25);
numberedParagraph.getParagraphFormat().getBullet().getColor().setColorType(ColorType.RGB);
numberedParagraph.getParagraphFormat().getBullet().getColor().setColor(Color.BLACK);
numberedParagraph.getParagraphFormat().getBullet().setBulletHardColor(NullableBool.True);
numberedParagraph.getParagraphFormat().getBullet().setHeight(100);
textFrame.getParagraphs().add(numberedParagraph);
presentation.save("bulleted_and_numbered_list.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
استفاده از گلولههای تصویری
گلولههای تصویری به شما امکان میدهند به جای یک نماد یا عدد از تصویر سفارشی استفاده کنید.
- یک نمونه از کلاس Presentation بسازید.
- اسلاید مربوطه را از طریق ایندکس آن دسترسی پیدا کنید.
- یک IAutoShape اضافه کنید و به ITextFrame آن دسترسی پیدا کنید.
- پاراگراف پیشفرض را از فریم متن حذف کنید.
- تصویر گلوله را بارگذاری کنید و به مجموعه تصاویر ارائه به عنوان یک IPPImage اضافه کنید.
- یک Paragraph ایجاد کنید و متن آن را تنظیم کنید.
- IBulletFormat.setType را به BulletType.Picture تنظیم کنید.
- تصویر را از طریق IBulletFormat.getPicture اختصاص دهید و ارتفاع گلوله را تنظیم کنید.
- پاراگراف را به فریم متن اضافه کنید.
- ارائه اصلاحشده را ذخیره کنید.
این مثال Android via Java یک گلوله تصویری ایجاد میکند:
import com.aspose.slides.*;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
IImage bulletImage = Images.fromFile("bullets.png");
IPPImage presentationImage;
try {
presentationImage = presentation.getImages().addImage(bulletImage);
} finally {
bulletImage.dispose();
}
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
ITextFrame textFrame = shape.getTextFrame();
textFrame.getParagraphs().clear();
Paragraph paragraph = new Paragraph();
paragraph.setText("Welcome to Aspose.Slides");
paragraph.getParagraphFormat().getBullet().setType(BulletType.Picture);
paragraph.getParagraphFormat().getBullet().getPicture().setImage(presentationImage);
paragraph.getParagraphFormat().getBullet().setHeight(100);
textFrame.getParagraphs().add(paragraph);
presentation.save("picture_bullet.pptx", SaveFormat.Pptx);
presentation.save("picture_bullet.ppt", SaveFormat.Ppt);
} finally {
presentation.dispose();
}
ایجاد فهرست چندسطحی
IPreagraphFormat.setDepth را تنظیم کنید تا پاراگرافها در سطوح مختلف فهرست قرار بگیرند. سطح بالایی دارای عمق 0 است.
- یک Presentation ایجاد کنید و به یک اسلاید دسترسی پیدا کنید.
- یک IAutoShape اضافه کنید و پاراگراف پیشفرض را از فریم متن آن پاک کنید.
- چهار پاراگراف ایجاد کنید و نمادهای گلوله آنها را پیکربندی کنید.
- مقادیر IPreagraphFormat.setDepth آنها را به ترتیب
0،1،2و3تنظیم کنید. - پاراگرافها را به فریم متن اضافه کرده و ارائه را ذخیره کنید.
این مثال Android via Java یک فهرست چهارسطحی گلولهای ایجاد میکند:
import com.aspose.slides.*;
import android.graphics.Color;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
ITextFrame textFrame = shape.getTextFrame();
textFrame.getParagraphs().clear();
IParagraph firstParagraph = new Paragraph();
firstParagraph.setText("Content");
firstParagraph.getParagraphFormat().getBullet().setType(BulletType.Symbol);
firstParagraph.getParagraphFormat().getBullet().setChar((char) 0x2022);
firstParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
firstParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
firstParagraph.getParagraphFormat().setDepth((short) 0);
IParagraph secondParagraph = new Paragraph();
secondParagraph.setText("Second level");
secondParagraph.getParagraphFormat().getBullet().setType(BulletType.Symbol);
secondParagraph.getParagraphFormat().getBullet().setChar('-');
secondParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
secondParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
secondParagraph.getParagraphFormat().setDepth((short) 1);
IParagraph thirdParagraph = new Paragraph();
thirdParagraph.setText("Third level");
thirdParagraph.getParagraphFormat().getBullet().setType(BulletType.Symbol);
thirdParagraph.getParagraphFormat().getBullet().setChar((char) 0x2022);
thirdParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
thirdParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
thirdParagraph.getParagraphFormat().setDepth((short) 2);
IParagraph fourthParagraph = new Paragraph();
fourthParagraph.setText("Fourth level");
fourthParagraph.getParagraphFormat().getBullet().setType(BulletType.Symbol);
fourthParagraph.getParagraphFormat().getBullet().setChar('-');
fourthParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
fourthParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
fourthParagraph.getParagraphFormat().setDepth((short) 3);
textFrame.getParagraphs().add(firstParagraph);
textFrame.getParagraphs().add(secondParagraph);
textFrame.getParagraphs().add(thirdParagraph);
textFrame.getParagraphs().add(fourthParagraph);
presentation.save("multilevel_list.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
شروع شمارهگذاری فهرست از مقادیر دلخواه
از IBulletFormat.setNumberedBulletStartWith برای تعیین شماره اولیه نمایش دادهشده برای یک پاراگراف عددی استفاده کنید.
- یک Presentation ایجاد کنید و یک IAutoShape را به اسلاید اضافه کنید.
- پاراگراف پیشفرض را از فریم متن شکل پاک کنید.
- سه پاراگراف عددی ایجاد کنید.
- برای هر پاراگراف IBulletFormat.setNumberedBulletStartWith را به ترتیب به
2،3و7تنظیم کنید. - پاراگرافها را به فریم متن اضافه کرده و ارائه را ذخیره کنید.
این مثال Android via Java شماره شروع سفارشی را برای هر پاراگراف اختصاص میدهد:
import com.aspose.slides.*;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
ITextFrame textFrame = shape.getTextFrame();
textFrame.getParagraphs().clear();
Paragraph firstParagraph = new Paragraph();
firstParagraph.setText("Start at 2");
firstParagraph.getParagraphFormat().getBullet().setType(BulletType.Numbered);
firstParagraph.getParagraphFormat().getBullet().setNumberedBulletStartWith((short) 2);
textFrame.getParagraphs().add(firstParagraph);
Paragraph secondParagraph = new Paragraph();
secondParagraph.setText("Start at 3");
secondParagraph.getParagraphFormat().getBullet().setType(BulletType.Numbered);
secondParagraph.getParagraphFormat().getBullet().setNumberedBulletStartWith((short) 3);
textFrame.getParagraphs().add(secondParagraph);
Paragraph thirdParagraph = new Paragraph();
thirdParagraph.setText("Start at 7");
thirdParagraph.getParagraphFormat().getBullet().setType(BulletType.Numbered);
thirdParagraph.getParagraphFormat().getBullet().setNumberedBulletStartWith((short) 7);
textFrame.getParagraphs().add(thirdParagraph);
presentation.save("custom_numbered_list.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
کنترل چیدمان پاراگراف و ویژگیهای انتهایی
تنظیم تورفتگی خط اول
از IParagraphFormat.setIndent برای کنترل تورفتگی خط اول یک پاراگراف استفاده کنید. این متد فقط خط اول را نسبت به حاشیه چپ پاراگراف جابهجا میکند. مقدار مثبت خط اول را به سمت راست میبرد، در حالی که بقیه خطوط در جای خود باقی میمانند.
وقتی نیاز به جابهجایی کل پاراگراف دارید، از IParagraphFormat.setMarginLeft استفاده کنید. وقتی فقط خط اول باید جابهجا شود، از IParagraphFormat.setIndent استفاده کنید.
مثال زیر چند پاراگراف ایجاد میکند و مقادیر مختلف IParagraphFormat.setIndent را برای نشان دادن تأثیر تورفتگی خط اول بر چیدمان پاراگراف اعمال میکند.
- یک نمونه از کلاس Presentation بسازید.
- اسلاید هدف را دسترسی پیدا کنید.
- یک IAutoShape مستطیلی به اسلاید اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید و پاراگراف پیشفرض را حذف کنید.
- چند پاراگراف ایجاد کنید و مقادیر مختلف IParagraphFormat.setIndent را برای آنها تنظیم کنید.
- پاراگرافها را به فریم متن اضافه کنید.
- ارائه اصلاحشده را ذخیره کنید.
این کد نحوه تنظیم تورفتگی پاراگراف را نشان میدهد:
import com.aspose.slides.*;
import android.graphics.Color;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 50, 50, 420, 220);
shape.getFillFormat().setFillType(FillType.NoFill);
shape.getLineFormat().getFillFormat().setFillType(FillType.Solid);
shape.getLineFormat().getFillFormat().getSolidFillColor().setColor(Color.GRAY);
ITextFrame textFrame = shape.getTextFrame();
textFrame.getTextFrameFormat().setAutofitType(TextAutofitType.Shape);
textFrame.getParagraphs().clear();
Paragraph firstParagraph = new Paragraph();
firstParagraph.setText("No first-line indent. Wrapped lines start at the same position as the first line.");
firstParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
firstParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
firstParagraph.getParagraphFormat().setMarginLeft(20f);
firstParagraph.getParagraphFormat().setIndent(0f);
Paragraph secondParagraph = new Paragraph();
secondParagraph.setText("First-line indent of 20 points. The first line moves to the right, while wrapped lines remain aligned to the paragraph body.");
secondParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
secondParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
secondParagraph.getParagraphFormat().setMarginLeft(20f);
secondParagraph.getParagraphFormat().setIndent(20f);
Paragraph thirdParagraph = new Paragraph();
thirdParagraph.setText("First-line indent of 40 points. This paragraph shows a larger first-line offset to make the effect easier to see.");
thirdParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
thirdParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
thirdParagraph.getParagraphFormat().setMarginLeft(20f);
thirdParagraph.getParagraphFormat().setIndent(40f);
textFrame.getParagraphs().add(firstParagraph);
textFrame.getParagraphs().add(secondParagraph);
textFrame.getParagraphs().add(thirdParagraph);
presentation.save("paragraph_indent.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
نتیجه:

تنظیم تورفتگی معلق
تورفتگی معلق یک چیدمان پاراگراف است که در آن خط اول نسبت به خطوط بعدی به سمت چپ شروع میشود. در Aspose.Slides این اثر را با IParagraphFormat.setIndent ایجاد میکنید. برای جابهجایی خط اول به سمت چپ، مقدار منفی بدهید.
در عمل، IParagraphFormat.setMarginLeft موقعیت سمت چپ بدنه پاراگراف را تعریف میکند و IParagraphFormat.setIndent موقعیت خط اول را نسبت به آن حاشیه تعریف میکند. برای ایجاد تورفتگی معلق، مقدار مثبت به setMarginLeft و مقدار منفی به setIndent بدهید.
این قالببندی برای کتابشناسیها، مراجع، اصطلاحات واژهنامه و سایر پاراگرافهایی که خطوط بستهشده باید زیر بدنه پاراگراف و نه زیر اولین کاراکتر خط اول قرار گیرند مفید است.
- یک نمونه از کلاس Presentation بسازید.
- اسلاید هدف را دسترسی پیدا کنید.
- یک IAutoShape مستطیلی به اسلاید اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید و پاراگراف پیشفرض را حذف کنید.
- برای هر پاراگراف مقدار مثبت به IParagraphFormat.setMarginLeft بدهید.
- مقدار منفی به IParagraphFormat.setIndent بدهید تا اثر تورفتگی معلق ایجاد شود.
- پاراگرافها را به فریم متن اضافه کنید.
- ارائه اصلاحشده را ذخیره کنید.
این کد نحوه تنظیم تورفتگی معلق برای یک پاراگراف را نشان میدهد:
import com.aspose.slides.*;
import android.graphics.Color;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 50, 50, 420, 220);
shape.getFillFormat().setFillType(FillType.NoFill);
shape.getLineFormat().getFillFormat().setFillType(FillType.Solid);
shape.getLineFormat().getFillFormat().getSolidFillColor().setColor(Color.GRAY);
ITextFrame textFrame = shape.getTextFrame();
textFrame.getTextFrameFormat().setAutofitType(TextAutofitType.Shape);
textFrame.getParagraphs().clear();
Paragraph firstParagraph = new Paragraph();
firstParagraph.setText("A hanging indent is created by combining a positive left margin with a negative indent. The first line starts to the left, while wrapped lines align with the paragraph body.");
firstParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
firstParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
firstParagraph.getParagraphFormat().setMarginLeft(40f);
firstParagraph.getParagraphFormat().setIndent(-20f);
Paragraph secondParagraph = new Paragraph();
secondParagraph.setText("This second example uses a deeper hanging indent so the difference between the first line and the wrapped lines is easier to compare.");
secondParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType(FillType.Solid);
secondParagraph.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
secondParagraph.getParagraphFormat().setMarginLeft(60f);
secondParagraph.getParagraphFormat().setIndent(-30f);
textFrame.getParagraphs().add(firstParagraph);
textFrame.getParagraphs().add(secondParagraph);
presentation.save("hanging_indent.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
نتیجه:

تنظیم ویژگیهای پایان پاراگراف
IParagraph.setEndParagraphPortionFormat قالببندی علامت پایان پاراگراف را کنترل میکند. مثال زیر اندازه قلم و قلم لاتین را برای علامت پایان پاراگراف دوم اختصاص میدهد:
- یک Presentation بارگذاری کنید و به یک اسلاید دسترسی پیدا کنید.
- یک IAutoShape اضافه کنید و پاراگراف پیشفرض آن را پاک کنید.
- دو پاراگراف ایجاد کنید و به هر کدام بخشهای متنی اضافه کنید.
- برای علامت پایان پاراگراف دوم یک PortionFormat ایجاد کنید.
- IBasePortionFormat.setFontHeight و IBasePortionFormat.setLatinFont را تنظیم کنید.
- قالب را با IParagraph.setEndParagraphPortionFormat اختصاص دهید و ارائه را ذخیره کنید.
import com.aspose.slides.*;
Presentation presentation = new Presentation("Test.pptx");
try {
ISlide slide = presentation.getSlides().get_Item(0);
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 10, 10, 200, 250);
ITextFrame textFrame = shape.getTextFrame();
textFrame.getParagraphs().clear();
Paragraph firstParagraph = new Paragraph();
firstParagraph.getPortions().add(new Portion("Sample text"));
Paragraph secondParagraph = new Paragraph();
secondParagraph.getPortions().add(new Portion("Sample text 2"));
PortionFormat endParagraphFormat = new PortionFormat();
endParagraphFormat.setFontHeight(48);
endParagraphFormat.setLatinFont(new FontData("Times New Roman"));
secondParagraph.setEndParagraphPortionFormat(endParagraphFormat);
textFrame.getParagraphs().add(firstParagraph);
textFrame.getParagraphs().add(secondParagraph);
presentation.save("end_paragraph_format.pptx", SaveFormat.Pptx);
} finally {
presentation.dispose();
}
واردات و صادرات محتوای پاراگراف
وارد کردن متن HTML به پاراگرافها
از ParagraphCollection.addFromHtml برای تبدیل نشانهگذاری HTML به پاراگرافها و بخشها در یک فریم متن استفاده کنید.
- یک نمونه از کلاس Presentation بسازید.
- به یک اسلاید دسترسی پیدا کنید و یک IAutoShape اضافه کنید.
- به ITextFrame شکل دسترسی پیدا کنید و پاراگراف پیشفرض را پاک کنید.
- فایل HTML منبع را بخوانید.
- رشته HTML را به ParagraphCollection.addFromHtml پاس کنید.
- ارائه اصلاحشده را ذخیره کنید.
این مثال Android via Java HTML را به یک فریم متن وارد میکند:
import com.aspose.slides.*;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
float shapeWidth = (float) presentation.getSlideSize().getSize().getWidth() - 20;
float shapeHeight = (float) presentation.getSlideSize().getSize().getHeight() - 20;
IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 10, 10, shapeWidth, shapeHeight);
shape.getFillFormat().setFillType(FillType.NoFill);
shape.getTextFrame().getParagraphs().clear();
try {
byte[] htmlBytes = Files.readAllBytes(Paths.get("file.html"));
String html = new String(htmlBytes, StandardCharsets.UTF_8);
shape.getTextFrame().getParagraphs().addFromHtml(html);
presentation.save("html_text.pptx", SaveFormat.Pptx);
} catch (IOException exception) {
System.out.println("The HTML file could not be read: " + exception.getMessage());
}
} finally {
presentation.dispose();
}
صادرات متن پاراگراف به HTML
از ParagraphCollection.exportToHtml برای صادرات یک بازه انتخابی از پاراگرافها به صورت HTML استفاده کنید.
- یک نمونه از کلاس Presentation ایجاد کنید و ارائه مورد نظر را بارگذاری کنید.
- به اسلاید دسترسی پیدا کنید و IAutoShape حاوی متن را پیدا کنید.
- به ITextFrame شکل دسترسی پیدا کنید.
- با پارامترهای ایندکس پاراگراف شروع و تعداد پاراگرافها، ParagraphCollection.exportToHtml را فراخوانی کنید.
- رشته HTML بازگشتی را در یک فایل بنویسید.
این مثال Android via Java تمام پاراگرافهای اولین شکل متنی را صادر میکند:
import com.aspose.slides.*;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
Presentation presentation = new Presentation("ExportingHTMLText.pptx");
try {
IShape shape = presentation.getSlides().get_Item(0).getShapes().get_Item(0);
if (shape instanceof IAutoShape) {
IAutoShape textShape = (IAutoShape) shape;
ITextFrame textFrame = textShape.getTextFrame();
if (textFrame != null) {
IParagraphCollection paragraphs = textFrame.getParagraphs();
String html = paragraphs.exportToHtml(0, paragraphs.getCount(), null);
try {
Files.write(Paths.get("paragraphs.html"), html.getBytes(StandardCharsets.UTF_8));
} catch (IOException exception) {
System.out.println("The HTML file could not be written: " + exception.getMessage());
}
} else {
System.out.println("The first shape does not contain a text frame.");
}
} else {
System.out.println("The first shape is not a text shape.");
}
} finally {
presentation.dispose();
}
رندر یک پاراگراف به عنوان تصویر
IParagraph.getImage یک پاراگراف منفرد را مستقیم رندر میکند و یک IImage بازمیگرداند. نتیجه را با IImage.save به فایل یا جریان ذخیره کنید. نیازی به رندر شکل حاوی آن یا برش بیتمپ به صورت دستی نیست.
IParagraph.getImage ممکن است null برگرداند اگر پاراگراف در مجموعه والد یافت نشود، مرزهای رندر معتبری نداشته باشد یا قابل رندر نباشد. قبل از ذخیرهسازی نتیجه را بررسی کنید و پس از استفاده تصویر بازگشتی را آزاد کنید.
رندر پاراگراف در مقیاس پیشفرض
فرض کنید فایلی به نام sample.pptx داریم که یک اسلاید دارد و اولین شکل آن یک جعبه متن با سه پاراگراف است.

مثال زیر پاراگراف دوم را در یک شکل متنی عادی در مقیاس پیشفرض رندر میکند و تصویر حاصل را به فرمت PNG ذخیره مینماید. بلوک finally اطمینان میدهد که تصویر بهدرستی آزاد شود.
import com.aspose.slides.*;
Presentation presentation = new Presentation("sample.pptx");
try {
IShape shape = presentation.getSlides().get_Item(0).getShapes().get_Item(0);
if (shape instanceof IAutoShape) {
IAutoShape textShape = (IAutoShape) shape;
ITextFrame textFrame = textShape.getTextFrame();
if (textFrame != null && textFrame.getParagraphs().getCount() > 1) {
IParagraph paragraph = textFrame.getParagraphs().get_Item(1);
IImage paragraphImage = paragraph.getImage();
if (paragraphImage != null) {
try {
paragraphImage.save("paragraph.png", ImageFormat.Png);
} finally {
paragraphImage.dispose();
}
} else {
System.out.println("The paragraph could not be rendered.");
}
} else {
System.out.println("The expected paragraph was not found.");
}
} else {
System.out.println("The first shape is not a text shape.");
}
} finally {
presentation.dispose();
}
نتیجه:

رندر پاراگراف در سلول جدول با مقیاسبندی
از نسخه overload IParagraph.getImage که پارامترهای float scaleX و float scaleY را میپذیرد برای تنظیم عوامل مقیاس افقی و عمودی استفاده کنید. مثال زیر یک جدول ایجاد میکند، پاراگراف را در اولین سلول با دو برابر عرض و ارتفاع پیشفرض رندر میکند و نتیجه را به صورت تصویر PNG ذخیره میکند.
import com.aspose.slides.*;
float scaleX = 2f;
float scaleY = 2f;
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
ITable table = slide.getShapes().addTable(50, 50, new double[] { 300 }, new double[] { 80 });
IParagraph paragraph = table.get_Item(0, 0).getTextFrame().getParagraphs().get_Item(0);
paragraph.setText("Text in a table cell");
IImage paragraphImage = paragraph.getImage(scaleX, scaleY);
if (paragraphImage != null) {
try {
paragraphImage.save("table_paragraph.png", ImageFormat.Png);
} finally {
paragraphImage.dispose();
}
} else {
System.out.println("The paragraph could not be rendered.");
}
} finally {
presentation.dispose();
}
عامل مقیاس 1 آن محور را در اندازه پیکسلی پیشفرض نگه میدارد. برای مثال، 2 برای هر دو عامل تصویری تولید میکند که عرض و ارتفاع آن تقریباً دو برابر ابعاد پیشفرض است، که باعث چهار برابر شدن تعداد پیکسلها میشود. عوامل بزرگتر معمولاً متن شفافتری برای زوم یا خروجی با وضوح بالا تولید میکنند، اما مصرف حافظه و حجم فایل را نیز افزایش میدهند. عوامل کمتر از 1 تصاویر کوچکتری با جزئیات کمتر تولید میکنند. برای حفظ نسبت تصویر پاراگراف از عوامل مساوی استفاده کنید؛ عوامل متفاوت افقی و عمودی خروجی را بهصورت مستقل کشیده میکنند.
رندر کل شکل با IShape.getImage زمانی مفید است که خروجی باید شامل پر کردن، حاشیه یا سایر زمینههای بصری شکل باشد. برای تصویر فقط پاراگراف، از IParagraph.getImage استفاده کنید.
سوالات متداول
آیا میتوانم بهطور کامل بسته شدن خطوط داخل یک فریم متن را غیرفعال کنم؟
بله. برای غیرفعال کردن بسته شدن خطوط، ITextFrameFormat.setWrapText را تنظیم کنید.
چگونه میتوانم مرزهای دقیق روی اسلاید یک پاراگراف خاص را به دست آورم؟
از IParagraph.getRect برای دریافت مستطیل محصور پاراگراف استفاده کنید. IPortion.getRect مرزهای یک بخش منفرد را فراهم میکند.
محل تنظیم تراز پاراگراف (چپ، راست، مرکز یا توجیه) کجا کنترل میشود؟
IParagraphFormat.setAlignment یک تنظیم سطح پاراگراف است و بر تمام پاراگراف اعمال میشود، صرفنظر از قالببندی بخشهای منفرد.
آیا میتوانم زبان اصلاحکننده را برای بخشی از یک پاراگراف تنظیم کنم؟
بله. برای بخشهای منفرد IBasePortionFormat.setLanguageId را تنظیم کنید تا یک پاراگراف بتواند متنی در چند زبان داشته باشد.