-
Great .... Now i'll start digging inside ProGuard & try it.
Thanks ,
Hesham.
2009-05-13 03:06:00 UTC in ProGuard Java Optimizer and Obfuscator
-
Hello,
This is a start up question i hope to find its answer before digging inside ProGuard .
I know ProGuard can obfuscate multiple jars, but my question is :
Will ProGuard return multiple jars obfuscated or just (1) jar containing all the jars obfuscated inside it ?
For example my application hierarchy is like this :
MyApp(Folder)
|------------ MyApp.jar
|------------...
2009-05-12 04:30:10 UTC in ProGuard Java Optimizer and Obfuscator
-
Yes ... I've figured this out :
PDPageContentStream.setNonStrokingColor( 247, 57, 30 );.
2008-11-18 23:37:59 UTC in PDFBox
-
Hi all ,
Is there a way i can write a colorized text in the pdf ?
Thanks ,
2008-11-18 23:17:40 UTC in PDFBox
-
I think there may be a way to do this by overriding the method addPage() :
public void addPage( PDPage page )
{
PDPageNode rootPages = getDocumentCatalog().getPages();
rootPages.getKids().add( page );
page.setParent( rootPages );
rootPages.updateCount();
}
But i still can't figure how ... I don't know how PDFBox reads the pdf file.
2008-11-13 00:49:26 UTC in PDFBox
-
Hello ,
It's my first time to see your framework ... Nice work :)
I would like to a know if this feature is available in your framework :
Can i add a new page to a pdf after a specific page ?
Thanks ...
2008-11-13 00:37:40 UTC in openPDF
-
I found the problem ... i was referencing the pdf file object from another class, so the first pdf remains still in memory reserving a lot.
Thanks ,
Hesham.
2008-08-20 10:44:52 UTC in PDFBox
-
Is the question so hard ??!
It is just a yes or no question ... Please anyone can answer that, I'd be grateful.
Thanks ,
Hesham.
2008-08-20 10:42:39 UTC in PDFBox
-
Hello,
I'm creating a program that i have to read (2) pdf files in it, but both are big in size(About 17 MB) each.
Here is an example for what i want to do :
public void loadPdfs() {
String pdf1FilePath = "c:\\java long pdf1.pdf";
String pdf2FilePath = "c:\\java long pdf2.pdf";
try {
PDDocument pdf1File = PDDocument.load( pdf1FilePath );...
2008-07-14 14:40:47 UTC in PDFBox
-
I think this's exactly what you're looking for :
http://kickjava.com/src/org/pdfbox/TextToPDF.java.htm
Good Luck,
Hesham.
2008-07-01 18:07:40 UTC in PDFBox