initialPdfState.ts 427 B

123456789101112131415161718192021222324252627
  1. export default {
  2. totalPage: 0,
  3. currentPage: 1,
  4. pdf: null,
  5. progress: {
  6. loaded: 0,
  7. total: 1,
  8. },
  9. viewport: {},
  10. scale: 1,
  11. rotation: 0,
  12. annotations: [],
  13. watermark: {
  14. type: 'text',
  15. textcolor: '#c0c0c0',
  16. opacity: 0.3,
  17. text: '',
  18. scale: 2,
  19. rotation: 45,
  20. vertalign: 'center',
  21. horizalign: 'center',
  22. xoffset: 0,
  23. yoffset: 0,
  24. imagepath: '',
  25. isfront: 'yes',
  26. },
  27. };