Microsoft® Visio แปลงรูปแบบผ่าน Java

แปลง MS Visio Diagrams เป็น HTML, PDF และรูปภาพ รวมถึง JPG, BMP, PNG, TIFF เพื่อสร้างแอปพลิเคชัน Java ข้ามแพลตฟอร์ม

 

สำหรับโซลูชันการแสดงผลรูปแบบ Microsoft Visio ใดๆ เช่น การออกแบบผังงานและแผนผังลำดับงานธุรกิจ ฯลฯ Java Visio API ช่วยให้การวาดแบบซับซ้อนทั้งหมดเป็นไปอย่างง่ายดาย โหลดไฟล์ต้นฉบับโดยใช้ Diagram คลาส และเรียกวิธีการบันทึกด้วยพารามิเตอร์ที่เหมาะสม

การแปลงระหว่าง Visio Files

โปรแกรมเมอร์สามารถแปลงรูปแบบ VSDX, VSX, VTX, VDX, VSSX, VSTX, VSDM, VSSM, VSTM รวมทั้งโหลด VDW, VSD, VSS, VST และแสดงผลเป็น PDF, HTML และรูปภาพ เมื่อพิจารณาสถานการณ์สมมติของ VSDX ถึง VDX กระบวนการคือ โหลดไฟล์ต้นทาง VSDX โดยใช้คลาสไดอะแกรมและเรียกวิธีการบันทึกโดยจัดเตรียมไฟล์เอาต์พุตและ บันทึกไฟล์รูปแบบ .VDX เป็นพารามิเตอร์

Java โค้ดสำหรับการแปลง VSDX ถึง VDX
// Load the VSDX in an object of Diagram
Diagram visio = new Diagram("template.vsdx");
// save VSDX as VDX
visio.save("output.vdx", SaveFileFormat.VDX);
 

Visio เป็นการแปลงรูปภาพ

สำหรับการแปลงทั่วไป กระบวนการแปลงไฟล์ viio เป็นรูปภาพจะเหมือนกัน เพียงโหลดไฟล์ผ่านคลาส Diagram และเรียกวิธีการบันทึกด้วยไฟล์เอาต์พุตและพารามิเตอร์เอาต์พุต SaveFileFormat และเมื่อใดก็ตามที่จำเป็นต้องกำหนดตัวเลือกเฉพาะ นักพัฒนาสามารถใช้คลาส ImageSaveOptions ในขณะที่แปลงหน้าไดอะแกรมเป็นรูปภาพและ SVGSaveOptions สำหรับการแปลง SVG

Java โค้ดสำหรับแปลง Visio เป็นรูปแบบรูปภาพ
Diagram vsdxtoImages = new Diagram("sourceDocument.vsdx");
ImageSaveOptions ImgOptions = new ImageSaveOptions(SaveFileFormat.JPEG);
// specify the quality level to use during compositing.
ImgOptions.setCompositingQuality(CompositingQuality.HIGH_QUALITY);
//The default value is 0.5. The value must be in the range between 0 and 1.
ImgOptions.setImageBrightness(1f);
ImgOptions.setDefaultFont("MS Gothic");
// sets the number of pages to render in image.
ImgOptions.setPageCount(2);
// sets the 0-based index of the first page to render. Default is 0.
ImgOptions.setPageIndex(0);
// set page size
PageSize pgSize = new PageSize(PaperSizeFormat.A_1);
ImgOptions.setPageSize(pgSize);
// discard saving background pages of the Visio diagram
ImgOptions.setSaveForegroundPagesOnly(true);
// sets the color mode for the generated images.
ImgOptions.setImageColorMode(ImageColorMode.BLACK_AND_WHITE);
// the default value is 0.5. The value must be in the range between 0 and 1.
ImgOptions.setImageContrast(1f);
// this property has effect only when saving to raster image formats.
ImgOptions.setInterpolationMode(InterpolationMode.NEAREST_NEIGHBOR);
// the value may vary from 0 to 100 where 0 means worst quality,
ImgOptions.setJpegQuality(100);
// set a value specifying how pixels are offset during rendering.
ImgOptions.setPixelOffsetMode(PixelOffsetMode.HIGH_SPEED);
// sets the resolution for the generated images, in dots per inch. The default value is 96.
ImgOptions.setResolution(2f);
// the default value is 1.0. The value must be greater than 0.
ImgOptions.setScale(1f);
// specify whether smoothing (antialiasing) is applied to lines
// and curves and the edges of filled areas.
ImgOptions.setSmoothingMode(SmoothingMode.HIGH_QUALITY);
// sets the type of compression to apply when saving generated images to the TIFF format.
ImgOptions.setTiffCompression(TiffCompression.CCITT_3);
// save in visio file into image of choice
vsdxtoImages.save("visiofiletoimage_Out.jpeg", ImgOptions);
Java โค้ดสำหรับแปลง Visio เป็น SVG
Diagram vsdxTosvg = new Diagram("sourceFile.vsdx");
SVGSaveOptions svgOpts = new SVGSaveOptions();
svgOpts.setDefaultFont("MS Gothic");
// sets the 0-based index of the first page to render. Default is 0.
svgOpts.setPageIndex(0);
// set page size
PageSize pgSize = new PageSize(PaperSizeFormat.A_1);
svgOpts.setPageSize(pgSize);
vsdxTosvg.save("visio-to-svg.svg", svgOpts);
 

แปลง Visio เป็น PDF และ HTML

API สามารถแปลงรูปแบบ Visio เป็น PDF เช่นเดียวกับใน HTML แค่ใช้ บันทึกไฟล์รูปแบบ .PDF และ SaveFileFormat.HTML ภายในวิธีการบันทึกเป็นพารามิเตอร์ และสำหรับการตั้งค่าพิเศษ นักพัฒนาสามารถใช้คลาส PdfSaveOptions และ HTMLSaveOptions

Java โค้ดสำหรับ Visio เป็นการแปลง PDF
// call the diagram constructor to load diagram from a VSDX file
Diagram vsdxtopdf = new Diagram("sourfile.vsdx");
// Options when saving a diagram into the PDF format
PdfSaveOptions pdfOpts = new PdfSaveOptions();
// discard saving background pages of the Visio diagram
pdfOpts.setSaveForegroundPagesOnly(true);
// specify the quality of JPEG compression for images (if JPEG compression is used). Default is 95.
pdfOpts.setJpegQuality(100);
// specify default font name
pdfOpts.setDefaultFont("Arial");
// conformance level for generated PDF document.
pdfOpts.setCompliance(PdfCompliance.PDF_15);
// sets a digital signature details. If not set, then no signing will be performed.
pdfOpts.setDigitalSignatureDetails(new PdfDigitalSignatureDetails(cert, "Test Signing", "Aspose Office", DateTime.getNow(), PdfDigitalSignatureHashAlgorithm.SHA_256));
// set encription details
PdfEncryptionDetails encriptionDetails = new PdfEncryptionDetails("user password", "Owner Password", PdfEncryptionAlgorithm.RC_4_128);
pdfOpts.setEncryptionDetails(encriptionDetails);
// sets the number of pages to render in PDF.
pdfOpts.setPageCount(2);
// sets the 0-based index of the first page to render. Default is 0.
pdfOpts.setPageIndex(0);
// set page size
PageSize pgSize = new PageSize(PaperSizeFormat.A_1);
pdfOpts.setPageSize(pgSize);
// save in visio file into PDF
vsdxtopdf.save("UsePDFSaveOptions_Out.pdf", pdfOpts);
Java โค้ดสำหรับแปลง Visio เป็นไฟล์ HTML
// call the diagram constructor to load diagram from a VSDX file
Diagram vsdxtohtml = new Diagram("sourceFile.vsdx");
// Options when saving a diagram into the HTML format
HTMLSaveOptions htmlOpt = new HTMLSaveOptions();
htmlOpt.setDefaultFont("MS Gothic");
// sets the number of pages to render in HTML.
htmlOpt.setPageCount(2);
// sets the 0-based index of the first page to render. Default is 0.
htmlOpt.setPageIndex(0);
// set page size
PageSize pgSize = new PageSize(PaperSizeFormat.A_1);
htmlOpt.setPageSize(pgSize);
// discard saving background pages of the Visio diagram
htmlOpt.setSaveForegroundPagesOnly(true);
// specify whether to include the toolbar or not. Default value is true.
htmlOpt.setSaveToolBar(false);
// set title of the HTML document
htmlOpt.setTitle("Title goes here");
// save visio file in HTML file format
vsdxtohtml.save("UseHTMLSaveOptions_Out.html", htmlOpt);