Skip to main content
Known Participant
September 3, 2020
Question

How we can restrict to user not to upload images more than 45 kb on PDF using Javascript on adobe

  • September 3, 2020
  • 2 replies
  • 685 views

Hello All,

 

I have to write a Java scrript to User not to upload Images for More than 45 kb. I have checked the Bible did not find anything related to images size Validation , Could you please help me with this.

This topic has been closed for replies.

2 replies

try67
Community Expert
Community Expert
September 3, 2020

You can't do it while they're selecting the image to prevent them from doing so. Maybe you can use an On Blur event on the button or the document's Will Save event to check the length of the icon stream, as mentioned, or even the file-size...

Bernd Alheit
Community Expert
Community Expert
September 3, 2020

You can check the size of the icon stream.

Known Participant
September 3, 2020

I have used this method but it's giving same value for diffrent images 

var im1 = this.getField(event.target.name);
// get the icon for image 1
var icon1 = im1.buttonGetIcon();
try {
var iconStream1 = util.iconStreamFromIcon(icon1);
var dd= icon1.toSource().length

Is this not correct?

Bernd Alheit
Community Expert
Community Expert
September 3, 2020

Check the size of iconStream1