ImageSizeAttribute.cs 414 B

12345678910111213141516171819
  1. using System;
  2. using QuestPDF.Infrastructure;
  3. namespace QuestPDF.Examples.Engine
  4. {
  5. public class ImageSizeAttribute : Attribute
  6. {
  7. private int Width { get; }
  8. private int Height { get; }
  9. public Size Size => new Size(Width, Height);
  10. public ImageSizeAttribute(int width, int height)
  11. {
  12. Width = width;
  13. Height = height;
  14. }
  15. }
  16. }