Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

Community Beginner ,
Sep 03, 2020 Sep 03, 2020

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.

TOPICS
Acrobat SDK and JavaScript
607
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 03, 2020 Sep 03, 2020

You can check the size of the icon stream.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 03, 2020 Sep 03, 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?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 03, 2020 Sep 03, 2020

Check the size of iconStream1

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 03, 2020 Sep 03, 2020

I did, it's showing "undefined "

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 03, 2020 Sep 03, 2020
LATEST

How does you check the size?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 03, 2020 Sep 03, 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...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines