-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
27 lines (23 loc) · 891 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BlastPDF.Builder;
using BlastPDF.Filter;
using BlastType;
namespace ShowCase;
public class Program {
public static void Main(string[] args)
{
//PdfBuilderExample.Run("megatest.pdf");
//ImageParsingExample.Run("../../../images/qoi/dice.qoi");
//ImageParsingExample.Run("../../../images/qoi/kodim10.qoi");
//ImageParsingExample.Run("../../../images/qoi/kodim23.qoi");
//ImageParsingExample.Run("../../../images/bmp/w3c_home.bmp");
//ImageParsingExample.Run("../../../images/qoi/testcard.qoi");
//ImageParsingExample.Run("../../../images/qoi/testcard_rgba.qoi");
//ImageParsingExample.Run("../../../images/qoi/wikipedia_008.qoi");
//ImageParsingExample.Run("../../../images/gif/bird.gif");
BlastFont.Load("../../../../Samples/airtraveler.otf");
}
}