Learn how to Apply Data Validation in Excel Using C#
Learn how to perform Mail Merge from Excel in C#
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.Color; | |
import com.aspose.imaging.Image; | |
import com.aspose.imaging.SmoothingMode; | |
import com.aspose.imaging.TextRenderingHint; | |
import com.aspose.imaging.fileformats.pdf.PdfDocumentInfo; | |
import com.aspose.imaging.imageoptions.PdfOptions; | |
import com.aspose.imaging.imageoptions.VectorRasterizationOptions; | |
public class main |
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.Imaging; | |
using Aspose.Imaging.FileFormats.Jpeg; | |
using Aspose.Imaging.ImageOptions; | |
using Aspose.Imaging.Sources; | |
// Define the folder where the images are located | |
string templatesFolder = "Desktop"; | |
// Set the base directory for input and output images | |
string dataDir = templatesFolder; | |
// Define the paths of the images to be stitched together. |
Learn how to Change PDF Page Size in C# Using Aspose.PDF for .NET
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.pdf.PdfDocumentInfo; | |
import com.aspose.imaging.fileformats.png.PngImage; | |
import com.aspose.imaging.imageoptions.PdfOptions; | |
public class main | |
{ | |
public static void main(String[] args) | |
{ |
NewerOlder