itext pdfimage library

This commit is contained in:
Marco Giuntoni
2024-03-01 16:00:16 +01:00
parent 4cbbee5147
commit 0c24ec1cbb
9 changed files with 502 additions and 400 deletions
+13
View File
@@ -0,0 +1,13 @@
using System.Drawing;
namespace itext.pdfimage.Models
{
public class ImageChunk : IChunk
{
public float X { get; set; }
public float Y { get; set; }
public float W { get; set; }
public float H { get; set; }
public Image Image { get; set; }
}
}