Skip to content

Instantly share code, notes, and snippets.

View aspose-com-gists's full-sized avatar

Aspose.com Gists aspose-com-gists

View GitHub Profile
@aspose-com-gists
aspose-com-gists / convert-pdf-to-base64-in-csharp.md
Created October 17, 2025 04:09
Convert PDF to Base64 in C# using Aspose.PDF for .NET
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Advanced Features Examples
Last active November 3, 2025 13:44
Advanced TeX features: job names, terminal output, LaTeX repair, base64 images with .NET
Aspose.TeX for .NET – Advanced Features Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Working with I_O Examples
Last active October 24, 2025 12:42
Work with file system, ZIP archives, and streams for TeX I/O with .NET
Aspose.TeX for .NET – Working with I_O Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Custom TeX Format Examples
Last active November 3, 2025 13:44
Create and use custom TeX formats with .NET
Aspose.TeX for .NET – Custom TeX Format Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Render Figures Examples
Last active November 3, 2025 13:44
Render LaTeX figures and graphics to PNG and SVG with .NET
Aspose.TeX for .NET – Render Figures Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Render Math Examples
Last active November 3, 2025 13:44
Render LaTeX math formulas to PNG and SVG with .NET
Aspose.TeX for .NET – Render Math Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Convert LaTeX Examples
Last active October 20, 2025 05:34
Convert LaTeX to PDF, PNG, XPS, SVG with .NET
Aspose.TeX for .NET – Convert LaTeX Examples
@aspose-com-gists
aspose-com-gists / convert-markdown-to-word-in-python.md
Created October 16, 2025 07:29
Convert Markdown to Word using Aspose.Words for Python
@aspose-com-gists
aspose-com-gists / apply-photosho-layer-effects.py
Last active October 15, 2025 17:54
Apply Photoshop Layer Effects in Python
import aspose.psd as psd
from aspose.psd import Image, Color
from aspose.psd.fileformats.png import PngColorType
from aspose.psd.fileformats.psd import PsdImage
from aspose.psd.fileformats.psd.layers.fillsettings import GradientColorPoint, GradientTransparencyPoint, FillType, \
GradientFillSettings, PatternFillSettings, ColorFillSettings
from aspose.psd.imageloadoptions import PsdLoadOptions
from aspose.psd.imageoptions import PngOptions
from aspose.pycore import cast
@aspose-com-gists
aspose-com-gists / edit-text-in-psd.py
Created October 14, 2025 22:09
Modify Text in Photoshop in Python
# Import necessary modules from Aspose.PSD for working with PSD files
import aspose.psd as psd
from aspose.psd import Color
from aspose.psd.fileformats.psd import PsdImage, FontBaseline, FontCaps
from aspose.psd.fileformats.psd.layers import TextLayer
from aspose.pycore import cast
# Define the license file path for Aspose.PSD
license_path = "latest.lic"
# Apply the Aspose.PSD license to unlock full functionality