DOCX JPG PDF XML OTP
  Product Family
BMP

Converteer OTP naar BMP via Java

OTP naar BMP Java-conversie om enkele of meerdere pagina’s naar BMP te converteren met behulp van een lokale Java-bibliotheek.

Hoe OTP naar BMP te converteren met Java

Om OTP naar BMP te renderen, gebruiken we

Aspose.Slides voor Java

API, een veelzijdige, krachtige en gebruiksvriendelijke conversie-API voor het Java-platform. U kunt de nieuwste versie rechtstreeks downloaden van

Maven

en installeer het binnen uw op Maven gebaseerde project door de volgende configuraties toe te voegen aan pom.xml.

Opslagplaats


<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java API</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Afhankelijkheid


<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-slides</artifactId>
    <version>version of aspose-slides API</version>
    <classifier>jdk17</classifier>
</dependency>

Stappen om OTP naar BMP te converteren via Java

Java-ontwikkelaars kunnen het OTP-bestand eenvoudig in slechts een paar regels code naar BMP converteren.

  1. Laad OTP-bestand met een instantie van de klasse Presentatie
  2. Herhaal elke dia in de presentatie
  3. Maak bij elke iteratie een afbeelding op volledige schaal als een bitmap
  4. Roep de Bitmap.save-methode aan met de BMP-bestandsextensie & ImageFormat

systeem vereisten

Voordat u de voorbeeldcode voor Java-conversie uitvoert, moet u ervoor zorgen dat u aan de volgende vereisten voldoet.

  • Microsoft Windows of een compatibel besturingssysteem met Java Runtime Environment voor JSP/JSF-applicaties en desktopapplicaties.
  • Download de nieuwste versie van Aspose.Slides voor Java rechtstreeks van Maven.
 

OTP naar BMP Java-conversie broncode

// load OTP with Aspose.Slides
Presentation presentation = new Presentation("template.otp");
   
    // iterate over all slides in the presentation
for (ISlide sld : presentation.getSlides()) 
{
  
  // create a full scale image of each slide
  BufferedImage bi = sld.getThumbnail(new RenderingOptions());

  // create a new file of type BMP for every slide
  File outputfile = new File(sld.getSlideNumber() + ".bmp");
  
  // save the slide image to disk
  ImageIO.write(bi, "bmp", outputfile);
}   
 
  • Gratis app om OTP te converteren naar BMP

    Probeer onze gratis app om PPT te converteren naar BMP

    Andere ondersteunde conversies

    U kunt OTP ook converteren naar vele andere bestandsindelingen, waaronder enkele die hieronder worden vermeld.

    OTP TO GIF (Grafisch uitwisselingsformaat)
    OTP TO HTML (Hypertekst-opmaaktaal)
    OTP TO JPEG (JPEG-afbeelding)
    OTP TO ODP (OpenDocument-presentatie-indeling)
    OTP TO PDF (Draagbaar documentformaat)
    OTP TO PNG (Draagbare netwerkgrafieken)
    OTP TO POT (Microsoft PowerPoint-sjabloonbestanden)
    OTP TO POTM (Microsoft PowerPoint-sjabloonbestand)
    OTP TO POTX (Microsoft PowerPoint-sjabloonpresentatie)
    OTP TO PPS (PowerPoint-diavoorstelling)
    OTP TO PPSM (Diavoorstelling met macro's)
    OTP TO PPSX (PowerPoint-diavoorstelling)
    OTP TO PPT (Microsoft PowerPoint 97-2003)
    OTP TO PPTM (Presentatiebestand met macro's)
    OTP TO PPTX (Open XML-presentatie-indeling)
    OTP TO SVG (Schaalbare vectorafbeeldingen)
    OTP TO SWF (SWF-formaat)
    OTP TO TIFF (Gelabelde afbeeldingsindeling)
    OTP TO XPS (XML-papierspecificaties)