Troubleshooting

Image won't load from URL

Problem: ImageLoadError when loading from URL.

Solutions:

  • Check if the URL is accessible
  • Verify CORS headers on the server
  • Try loading from same origin
  • Use fromFile() instead with a file input

Export quality is poor

Solutions:

  • Use higher quality setting: toBlob('image/jpeg', 0.95)
  • Use PNG for lossless: toBlob('image/png')
  • Avoid multiple resize operations
  • Use quality: 'high' for resize

Watermark appears even with license

Solutions:

  • Verify isLicenseValid() returns true
  • Ensure setLicenseKey() completed successfully before export
  • Check getLicenseInfo() for expiration
  • Try refreshLicense() to update cached license

Need More Help?