Questions tagged [aspose-slides]

Aspose.Slides is a component that allows .NET and Java developers to embed the ability to read, write, convert and manipulate PowerPoint presentations into their own applications without needing to rely on Microsoft PowerPoint.

Aspose.Slides is a component that allows .NET and Java developers to embed the ability to read, write, convert and manipulate PowerPoint presentations into their own applications without needing to rely on Microsoft PowerPoint.

52 questions
0
votes
2 answers

C# WebAPI to download PowerPoint file using memory stream

This is my code so far to download the powerpoint file. I used aspose package for powerpoint this is the link to the aspose documentation https://docs.aspose.com/dashboard.action [HttpGet] [Route("exportpowerpoint1")] public…
Ginish Sharma
  • 141
  • 1
  • 2
  • 9
0
votes
1 answer

How to replace ppt/word template data using Aspose and java

I want to update a PowerPoint template using Java and Aspose library: For Example: I have key and value in ppt as firstname:${firstname} lastname:${lastname} I have an XML file which contains below data: Arjun
0
votes
1 answer

Error in replacing image from Aspose.slide java

Error :- WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.aspose.slides.ms.core.System.Drawing.imagecodecs.jpeg.oracle.OracleJpegImageReader …
0
votes
0 answers

How to increase jvm heap size pro-grammatically while project is on aws-lambda

I have developed aws-lambda function, that collects pptx file sources from s3 bucket and builds a new presentation from given sources. But if the size of the sourec files is large, then I'm getting ERROR: { "errorMessage": "Java heap space", …
0
votes
1 answer

Problem with loading html into paragraph TextFrame.Paragraphs.AddFromHtml() with Aspose.Slides

I have problem with importing html text into paragraphs. I know Aspose.Slides support BASIC text import along with LIMITED tag support but can anyone from the Aspose support team share which tags and styles are supported?
0
votes
4 answers

How to embedded font inside the .pptx file

I am creating a .pptx file using ASPOSE.Slides. I am trying to a embed font using Aspose, but it's not working because of some issues. Therefore i am searching for an alternative option to achieve the same functionality. I want to embed my custom…
0
votes
1 answer

How to create dynamic charts in a power point by using Aspose slides

Need help for creating dynamic charts in a power point by using Aspose slides.
Mohini
  • 87
  • 6
0
votes
1 answer

Rendering Symbol font to PDF with Aspose Slides

I am using Aspose Slides to convert user generated PPTX files to PDF. We have a file where the user has used the Symbol font, which when rendered into a PDF displays only as a box. I have tried embedding the font, but that does not seem to…
SeeBee
  • 5
  • 2
0
votes
2 answers

Aspose slide include svg into ppt slide

Does Aspose slide include svg into ppt slide? Is there way using slide api to do this? Any snippet would be good for reference.
SO19
  • 105
  • 9
0
votes
2 answers

How to Add Image/Shape with chart data label in ASPOSE Slide

Can we add any shape/image with chart data labels in ASPOSE .I need to show one arrow with different colors according to certain values with each data labels in the chart. i am using ASPOSE to generate my ppt. Or there is any way to find the data…
user3501613
  • 596
  • 7
  • 28
0
votes
1 answer

how to rotate SmartArtNode text aspose.slide

How to rotate SmartArtNode text aspose.slide I use: tmNode.TextFrame.TextFrameFormat.RotationAngle = 90 But it's not working
Yoga Derana
  • 31
  • 1
  • 3
0
votes
1 answer

change text of slide in java using aspose api ppt

public void save() { Presentation pres = new Presentation(filename); ISlide slide = pres.getSlides().get_Item(0); IShape shape= null; for (int i = 0 ; i < slide.getShapes().size() ; i++) { shape = slide.getShapes().get_Item(i); if…
0
votes
1 answer

Saving a presentation with text highlight in Pdf format

I'm using .NET Aspose.Slides to create a presentation and trying to save the resulting file in PDF format. The problem is the presentation has text highlight that do not appear in the saved pdf file. In MS Powerpoint there is an option to make…
shekkizh
  • 165
  • 2
  • 8
0
votes
4 answers

Position title Aspose slide chart

Is it possible to position the title of a Aspose powerpoint slide chart? I have tried following: chart.ChartTitle.X = 100; chart.ChartTitle.Y = 100; With different values but title is not moved.
HischT
  • 933
  • 1
  • 9
  • 26
0
votes
1 answer

"Failure to find com.aspose:aspose-email:jar:5.3.0.0" when running GroupDocs sample "Java Viewer - Sample Dropwizard"

I'm trying to run this sample "GroupDocs Java Viewer - Sample Dropwizard" download it from here it need these jar files: aspose-email-5.3.0.0.jar aspose-imaging-2.9.0.jar aspose-words-15.6.0.jar aspose-slides-15.5.1.jar I can not find…
E.day
  • 97
  • 2
  • 14