skip to Main Content

How to Set the background image to center by using apache poi

For example: Slide size : 950 x 510 Image size : 500 x 4620 Here is my code XSLFPictureData idx = ppt.addPicture(file, pictureType); CTBackgroundProperties bgPr = this.slide.getXmlObject().getCSld().addNewBg().addNewBgPr(); CTBlipFillProperties blipPr = bgPr.addNewBlipFill(); CTBlip blib = blipPr.addNewBlip(); CTRelativeRect ctRelativeRect = blipPr.addNewStretch().addNewFillRect(); double…

VIEW QUESTION

Django rest API deploy on apache

I have created a django application and deployed it on the server.I have run the application through :- python manage.py runserver 8000 & and handle the requests on the apache server through proxy ProxyPass "/" "http://www.example.com/" ProxyPassReverse "/" "http://www.example.com/". But…

VIEW QUESTION
Back To Top
Search