Convert a Word document to JPG format in C# code. Save a Word document as JPG using C#....doc = new Document( "Input.docx" ); var saveOptions = new Imag...page++) { saveOptions.PageSet = new PageSet(page); doc.Save( $"Output_...
Convert DOC to JPG format in C# code. Save DOC as JPG using C#....doc = new Document( "Input.doc" ); var saveOptions = new Imag...page++) { saveOptions.PageSet = new PageSet(page); doc.Save( $"Output_...
Convert HTML to GIF format in C# code. Save HTML as GIF using C#....doc = new Document( "Input.html" ); var saveOptions = new Imag...page++) { saveOptions.PageSet = new PageSet(page); doc.Save( $"Output_...
Convert HTML to PNG format in C# code. Save HTML as PNG using C#....doc = new Document( "Input.html" ); var saveOptions = new Imag...page++) { saveOptions.PageSet = new PageSet(page); doc.Save( $"Output_...
Convert Image to GIF format in C# code. Save Image as GIF using C#....Words; var doc = new Document(); var builder = new DocumentBuilder(doc);...GetShapeRenderer().Save( "Output.gif" , new ImageSaveOptions(SaveFormat.Gif));...
Convert a Word document to Image format in C# code. Save a Word document as Image using C#....doc = new Document( "Input.docx" ); var saveOptions = new Imag...page++) { saveOptions.PageSet = new PageSet(page); doc.Save( $"Output_...
Convert PDF to TIFF format in C# code. Save PDF as TIFF using C#....doc = new Document( "Input.pdf" ); var saveOptions = new Imag...page++) { saveOptions.PageSet = new PageSet(page); doc.Save( $"Output_...
Convert JPG to TIFF format in C# code. Save JPG as TIFF using C#....Words; var doc = new Document(); var builder = new DocumentBuilder(doc);...GetShapeRenderer().Save( "Output.tiff" , new ImageSaveOptions(SaveFormat.Tiff));...
Convert TEXT to SVG format in C# code. Save TEXT as SVG using C#....doc = new Document( "Input.txt" ); var saveOptions = new Imag...page++) { saveOptions.PageSet = new PageSet(page); doc.Save( $"Output_...
Add an image into a document easily and fast instead of using docx4j....The image to add File file = new File ( dataDir + "java_logo.png"...java . io . InputStream is = new java . io . FileInputStream (...