png.dict 788 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # AFL dictionary for PNG images
  3. # -----------------------------
  4. #
  5. # Just the basic, standard-originating sections; does not include vendor
  6. # extensions.
  7. #
  8. # Created by Michal Zalewski <lcamtuf@google.com>
  9. #
  10. header_png="\x89PNG\x0d\x0a\x1a\x0a"
  11. section_IDAT="IDAT"
  12. section_IEND="IEND"
  13. section_IHDR="IHDR"
  14. section_PLTE="PLTE"
  15. section_bKGD="bKGD"
  16. section_cHRM="cHRM"
  17. section_eXIf="eXIf"
  18. section_fRAc="fRAc"
  19. section_gAMA="gAMA"
  20. section_gIFg="gIFg"
  21. section_gIFt="gIFt"
  22. section_gIFx="gIFx"
  23. section_hIST="hIST"
  24. section_iCCP="iCCP"
  25. section_iTXt="iTXt"
  26. section_oFFs="oFFs"
  27. section_pCAL="pCAL"
  28. section_pHYs="pHYs"
  29. section_sBIT="sBIT"
  30. section_sCAL="sCAL"
  31. section_sPLT="sPLT"
  32. section_sRGB="sRGB"
  33. section_sTER="sTER"
  34. section_tEXt="tEXt"
  35. section_tIME="tIME"
  36. section_tRNS="tRNS"
  37. section_zTXt="zTXt"