This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.util.List; | |
import org.apache.poi.xslf.usermodel.XMLSlideShow; | |
import org.apache.poi.xslf.usermodel.XSLFPictureData; | |
public class ImageExtracter { | |
/* | |
This will extarct all image from PPTX and save them in images folder | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
db: | |
image: mysql | |
platform: linux/x86_64 | |
command: --default-authentication-plugin=mysql_native_password | |
restart: always | |
ports: |