fix width and height order in jpeg parsing

height is before width, incorrect order caused adobe reader to draw image strangely.
This commit is contained in:
Eliot Jones
2020-03-15 18:02:46 +00:00
parent 7212b9e38c
commit 98bcc16e11
5 changed files with 18 additions and 4 deletions

View File

@@ -278,6 +278,9 @@
public static readonly NameToken If = new NameToken("IF");
public static readonly NameToken Im = new NameToken("IM");
public static readonly NameToken Image = new NameToken("Image");
public static readonly NameToken ImageB = new NameToken("ImageB");
public static readonly NameToken ImageC = new NameToken("ImageC");
public static readonly NameToken ImageI = new NameToken("ImageI");
public static readonly NameToken ImageMask = new NameToken("ImageMask");
public static readonly NameToken Index = new NameToken("Index");
public static readonly NameToken Indexed = new NameToken("Indexed");