Hello
Hi Saadia,
Thanks for your interest in Aspose. Please double check whether you have followed the given instructions in IntelliJ IDEA section of How to Run the Examples documentation page. However if the issue persist then please share some more details about the issue, so we will guide you accordingly.
We are sorry for the inconvenience.
Best Regards,
I have tried it on net-beans IDE, but facing errors in pom.xml as well as dependency errors through out all the source code.
Hi Saadia,
Hi Saadia,
Thanks for sharing the pom.xml. I have same pom.xml file and its working fine at my end.
However, please try following Aspose Maven repository url instead Aspose.PDF | Java PDF Document Processing Class Library and share the results.
http://maven.aspose.com/artifactory/simple/ext-release-local/
Best Regards,
Still facing this error:
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
BUILD FAILURE
Total time: 1.527s
Finished at: Mon Aug 29 14:31:24 PKT 2016
Final Memory: 5M/123M
Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5: Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.5 from/to central (http://repo.maven.apache.org/maven2
): Access denied to: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
, ReasonPhrase:Forbidden ( Forefront TMG denied the specified Uniform Resource Locator (URL). ). -> [Help 1]
To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.
For more information about the errors and possible solutions, please read the following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException
Okay got it the issue was on my end due to a proxy.
Hi Saadia,
Hello Tilal
Hi Saadia,
Thanks for your inquriy. Please note Aspose.Pdf evaluation version has two limitations, evaluation watermark and at most four elements of any collection can be viewed. Please make a request for 30 days temporary license and implement it to evaluate our product without any limitation, your issue will be resolved.
Please feel free to contact us for any further assistance.
Thanks it worked like a magic.
Hi Saadia,
Yes i have to extract text from specified coordinates of a certain page. To acheive this we first need to have web based PDF Editor, so that user can specify the coordinates that will be used for all other pdf documents.
Hi Saadia,
Hello Talal
Hi Saadia,
In addition to Nayyer’s reply, for Web based editor you may check GroupDocs document viewer, a product of our sister concern and may contact GroupDocs support for the details. Hopefully It will help you to accomplish the task graphically.
saadia:
I have been working on your proposed solution, but the coordinates of image are different from pdf respective coordinates.
Any solution to fix the resolution changes issue.
please note Aspose.Pdf page origin is left bottom and its coordinates are (0,0). So rectangle coordinates of page will be x=0,y=0,urx=page width and ury= page height.
For example if you have X,Y,width and height values of a rectangle. And X and Y values are top left coordinates of your rectangle, then you can convert these values to Aspose.Pdf Rectangle parameters as following. However if still there is any confusion then please share some further details and your sample PDF document, so we will look into it and guide you accordingly.
llx=x;
lly=page.Rect.Height-y-height;
urx=x+width;
ury=page.Rect.Height-y;
Best Regards,