Skip to main content
Known Participant
September 2, 2020
Question

PDF is not able to handle Images if it's more than 600Kb

  • September 2, 2020
  • 2 replies
  • 811 views

Hello All,

 

I have a question , When I used the below method it's not able to call the web service, if pdf has 10 images on the pdf and size is 10kb each. Is there size limit when we used the below query.

var fields = [];
var Arrays =[];
for (var i = 0; i <= this.numFields - 1; i++)
{
fields.push(this.getNthFieldName(i));
Arrays = fields.sort( function(a,b)
{return a - b; } );
}

var aSubmitFields = fields ;

this.submitForm({
cURL: "http://localhost/Ssvc/df",
aFields: aSubmitFields,
cSubmitAs: "FDF"
});

Is there any alternative way for doing this?

 

Thanks 

This topic has been closed for replies.

2 replies

try67
Community Expert
Community Expert
September 2, 2020

Does it work if you submit it via email, for example?

Known Participant
September 2, 2020

if I submit as email, it won't inculde Images. It's working if I submit as email.

 

 

 

Thanks

Bernd Alheit
Community Expert
Community Expert
September 2, 2020

Does it working or not?

Bernd Alheit
Community Expert
Community Expert
September 2, 2020

What happens when you use it? Any error in the Javascript console?

Known Participant
September 2, 2020

I can not see any errro in the console, It's just say Genral Error, Nothing done. If I'm removing Images on the pdf two images it started working