Learn how to Convert OneNote to JPG in Java
This file contains hidden or 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
package com.example; | |
import com.aspose.zip.XarArchive; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
public class main { | |
public static void main(String[] args) { | |
// Define input and output directory paths. | |
String dataDir = "files"; | |
String outDir = "output"; |
This file contains hidden or 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
package com.example; | |
import com.aspose.zip.GzipArchive; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
public class main { | |
public static void main(String[] args) { | |
// Set path for the working directories. |
This file contains hidden or 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
using Aspose.Zip; | |
// Extract specific file by name | |
class Program | |
{ | |
static void Main() | |
{ | |
// Define path for the working directories. | |
string zipPath = "sample.zip"; | |
string extractPath = "data"; | |
string fileName = "sample.txt"; |
Learn how to Read Visio Shape Data in C#
Learn how to Edit PDF Page Size in Java
This file contains hidden or 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
package com.example; | |
import com.aspose.imaging.Image; | |
import com.aspose.imaging.fileformats.svg.SvgImage; | |
import com.aspose.imaging.imageoptions.PngOptions; | |
import com.aspose.imaging.imageoptions.SvgRasterizationOptions; | |
public class main | |
{ | |
public static void main(String[] args) | |
{ |
This file contains hidden or 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
package com.example; | |
import com.aspose.imaging.Image; | |
import com.aspose.imaging.SmoothingMode; | |
import com.aspose.imaging.imageoptions.CmxRasterizationOptions; | |
import com.aspose.imaging.imageoptions.PngOptions; | |
import com.aspose.imaging.imageoptions.PositioningTypes; | |
public class main { | |
public static void main(String[] args) { |
Learn how to Apply Data Validation in Excel Using C#
NewerOlder