• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
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

Copy link to clipboard

Copied

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

Views

387

Translate

Translate

Report

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

Copy link to clipboard

Copied

You can check the size of the icon stream.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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?

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Check the size of iconStream1

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

I did, it's showing "undefined "

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

How does you check the size?

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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...

Votes

Translate

Translate

Report

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