Convert RGB to CMYK or CMYK to RGB Color Space in C#

RGB color model is an additive color model while the CMYK is a subtractive color model which is also known as process color. In certain use cases, you may want to convert RGB color to CMYK color space or CMYK to RGB color model. In accordance with such scenarios, this article explains how to convert RGB to CMYK and CMYK to RGB programmatically in C#.
October 17, 2022 · Farhan Raza

Convert EOT to WOFF or WOFF2 in Java

EOT fonts are compact form of Open Type Fonts as they are embedded on web pages. While the WOFF fonts are compressed fonts that enable faster downloads of your content. In certain cases, you might want to convert an EOT file to WOFF or WOFF2 format. Following such scenarios, this article covers how to convert EOT to WOFF or WOFF2 programmatically in Java.
October 17, 2022 · Farhan Raza

Alpha Blending in C#

Alpha blending allows you to use transparency on your surfaces so that you can create more realistic effects and add variety to your images and 3D models. It’s easy to implement, though, so even if you have no experience with this technique yet, don’t worry! This blog post will walk you through the steps of implementing alpha blending in C#, creating a mesh, and then shows you how to display it.
October 17, 2022 · Muzammil Khan

Create 3D Cylinder in Java

In different three-dimensional scenes and animations, you may need to create different type of cylinders and apply several types of transformations and other opertaions as per your your requirements. Following such scenarios, this article elaborates how to create cylinder in Java applications. Moreover, it also covers how you can customize offset top, offset bottom, shear bottom, etc.
October 15, 2022 · Farhan Raza

Insert and Delete Rows in Excel Files using Java

While generating and manipulating Excel files, you may need to insert and delete rows in the worksheets programmatically. Therefore, this article covers how to dynamically manipulate rows in Excel worksheets. Particularly, you will learn how to insert or delete rows in an Excel worksheet in Java.
October 14, 2022 · Usman Aziz

Convert Grayscale to RGB PSD Image in C#

In certain cases, you may need to convert a PSD image with grayscale colors to a PSD image with RGB colors. Accordingly, this article covers how to convert Grayscale PSD to RGB PSD Image programmatically in C#.
October 13, 2022 · Farhan Raza

Convert Excel Files to SVG in Java

In certain cases, you may need to convert the Excel files to other formats, for example, to embed their content within the web applications. For such cases, this article covers how to convert Excel XLS and XLSX files to SVG in Java.
October 13, 2022 · Usman Aziz

Saturation Effect using SVG Color Matrix in C#

Saturation of an image describes the intensity of the color. The saturation effect is a common image processing technique that is used to make an image appear more vibrant. In this article, we’ll be discussing how to achieve the saturation effect using an SVG color matrix in C#.
October 13, 2022 · Muzammil Khan

Adjust Row Height and Column Width in Excel using Java

In Excel you can manually set row height and column width via the Format menu. Learn how to achieve the same adjustments programmatically using Java and Aspose.Cells.
October 12, 2022 · Usman Aziz

Convert DXF to FBX in C#

We can dynamically export 2D or 3D drawings from DXF files to FBX documents. CAD software produce and support DXF files. A portable format for sharing drawings is made possible by this conversion. Learn how to convert a DXF file to an FBX using C# in this post.
October 12, 2022 · Denis Demenko