User Chris Dolan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T09:13:38Zhttp://stackoverflow.com/feeds/user/14783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1613953/how-can-i-extract-the-first-paragraph-of-a-pdf-document-using-perls-campdf/1634946#16349461Answer by Chris Dolan for How can I extract the first paragraph of a PDF document using Perl's CAM::PDF?Chris Dolan2009-10-28T02:46:24Z2009-10-28T02:46:24Z<pre><code>print CAM::PDF->new('file.pdf')->getPageText(1);
</code></pre>
<p>will get you all of the text from the page. But, CAM::PDF is definitely not the best tool for this particular job (I'm the author). I added text extraction as a whim just to see if I could do it.</p>
http://stackoverflow.com/questions/1546337/seachreplace-strings-in-pdf-with-perl-ruby-php/1546813#15468132Answer by Chris Dolan for Seach&Replace strings in PDF with perl/ruby/phpChris Dolan2009-10-10T01:51:53Z2009-10-10T01:51:53Z<p>As part of my open-source <a href="http://search.cpan.org/dist/CAM-PDF/" rel="nofollow">CAM::PDF</a> Perl library, I include a tiny front-end program called <a href="http://search.cpan.org/dist/CAM-PDF/bin/changepagestring.pl" rel="nofollow">changepagestring.pl</a> which does what you ask.</p>
<p>However, it only replaces text that's contiguous in the PDF syntax. If you switch fonts, size, style, etc. mid-phrase then it won't match. If you do any advanced kerning then it won't match.</p>
<p>Those limitations aside, it's really easy to use and it's simple enough that you can easily fork it and hack it to your needs.</p>
http://stackoverflow.com/questions/1488554/how-might-i-remove-a-black-background-from-pdf-text-when-printing/1507556#15075560Answer by Chris Dolan for How might I remove a black background from PDF text when printing?Chris Dolan2009-10-02T02:57:21Z2009-10-02T03:45:13Z<p>This is likely to be non-trivial to solve in general, but if you have a predictable collections of PDFs (say, all from the same source) then you may be able to hack together a quick solution like so:</p>
<ul>
<li>install <a href="http://search.cpan.org/dist/CAM-PDF" rel="nofollow">CAM::PDF</a> from CPAN</li>
<li>run "getpdfpage.pl my.pdf 1 > page1.txt" to get the graphic codes for page 1</li>
<li>search for " rg" to find where the RGB text color is changed (or "RG" for background, or maybe "g" or "G" for grayscale or "k" or "K" for CMYK colors "sc" or "SC" for special colorspaces)</li>
<li>edit page1.txt to set the colors you like</li>
<li>run "setpdfpage.pl my.pdf 1 page1.txt out.pdf"</li>
</ul>
<p>All of this can be done programmatically instead of via command line tools too. getpdfpage.pl and setpdfpage.pl are simple little wrappers around the CAM::PDF API.</p>
<p>A general solution would be to use getPageContentTree() to parse the PDF page syntax and search for the color changing operators and alter them. But if your PDF uses a custom color space ("sc") this can be tricky. And searching for the operator that does the full-page black fill could be hard too, depending on the geometry.</p>
<p>If you provide an URL for a sample PDF, I could provide some more specific advice.</p>
<p><strong>UPDATE:</strong> on a whim, I wrote a rudimentary color changer script that may work for some PDFs. To use it, run like this example which turns any red element green instead:</p>
<pre><code>perl recolor.pl input.pdf '1 0 0 rg' '0 1 0 rg' out.pdf
</code></pre>
<p>This requires you to know the PDF syntax of the color directives you're trying to change, so it may still require something like the getpdfpage.pl steps recommended above.</p>
<p>And the source code:</p>
<pre><code>#!/usr/bin/perl -w
use strict;
use CAM::PDF;
use CAM::PDF::Content;
my %COLOROPS = map {$_ => 1} qw(rg RG g G k K sc SC);
my $pdf = CAM::PDF->new(shift) || die $CAM::PDF::errstr;
my @oldcolors;
my @newcolors;
while (@ARGV >= 2) {
push @oldcolors, parseColor(shift);
push @newcolors, parseColor(shift);
}
my $out = shift || '-';
for my $p (1 .. $pdf->numPages) {
my $page = $pdf->getPageContentTree($p);
traverse($page->{blocks});
$pdf->setPageContent($p, $page->toString());
}
$pdf->cleanoutput($out);
sub parseColor {
my ($in) = @_;
my $ops = CAM::PDF::Content->new($in);
die 'Invalid color syntax in ' . $in if !$ops->validate();
my @blocks = @{$ops->{blocks}};
die 'Expected one color operator in ' . $in if @blocks != 1;
my $color = $blocks[0];
die 'Not a color operator in ' . $in if !exists $COLOROPS{$color->{name}};
return $color;
}
sub traverse {
my ($blocks) = @_;
for my $op (@{$blocks}) {
if ($op->{type} eq 'block') {
traverse($op->{value});
} elsif (exists $COLOROPS{$op->{name}}) {
COLOR:
for (my $i=0; $i < @oldcolors; ++$i) {
my $old = $oldcolors[$i];
if ($old->{name} eq $op->{name} && @{$old->{args}} == @{$op->{args}}) {
for (my $v=0; $v < @{$op->{args}}; ++$v) {
next COLOR if $old->{args}->[$v]->{value} != $op->{args}->[$v]->{value};
}
# match! so we will replace
$op->{name} = $newcolors[$i]->{name};
@{$op->{args}} = @{$newcolors[$i]->{args}};
last COLOR;
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1429160/picking-pages-from-pdf-document/1436412#14364120Answer by Chris Dolan for Picking pages from PDF documentChris Dolan2009-09-17T02:18:45Z2009-09-17T02:18:45Z<p>As part of my CAM::PDF Perl library on CPAN, I bundle a command-line utility <a href="http://search.cpan.org/perldoc?deletepdfpage.pl" rel="nofollow">deletepdfpage.pl</a> that does the inverse of what you are asking for, with almost the exact same syntax:</p>
<pre><code>deletepdfpage.pl original.pdf 74-99,101- target.pdf
</code></pre>
http://stackoverflow.com/questions/1144592/is-perls-campdf-able-to-aggregate-annotation-objects/1148449#11484492Answer by Chris Dolan for Is Perl's CAM::PDF able to aggregate Annotation objects?Chris Dolan2009-07-18T20:07:12Z2009-07-18T20:07:12Z<p>Hi, I'm the author of CAM::PDF. I have built only very limited support for annotations to date, specifically just for form field filling. So, no, that's not a supported feature today. The feature you describe is very interesting, though, and I can imagine that others would use it too, so I'd be interested in discussing it further with you offline.</p>
http://stackoverflow.com/questions/1074932/pdf-security/1077817#10778171Answer by Chris Dolan for PDF SecurityChris Dolan2009-07-03T04:59:04Z2009-07-03T04:59:04Z<p>My Perl CAM::PDF library has a command-line utility called <a href="http://search.cpan.org/dist/CAM-PDF/bin/rewritepdf.pl" rel="nofollow">rewritepdf.pl</a> that can do this quite easily with the <code>-P</code> flag. The library exposes this functionality quite easily, too.</p>
http://stackoverflow.com/questions/1009529/determining-boxes-of-interest-on-a-pdf-page/1010439#10104392Answer by Chris Dolan for Determining "boxes of interest" on a PDF pageChris Dolan2009-06-18T02:07:56Z2009-06-18T02:07:56Z<p>You may be able to start with the solution to <a href="http://stackoverflow.com/questions/196788/how-do-i-get-character-offset-information-from-a-pdf-document/203553#203553">"How do I get character offset information from a pdf document?"</a> That will give you x, y, width and height for characters and/or substrings in the document. From there, the harder part is to bound the groups of characters into spatially distinct regions. There's no guarantee that spatially grouped text on a page will be close to each other in the syntax of the file format...</p>
http://stackoverflow.com/questions/972001/programmatically-add-comments-to-pdf-header/999682#9996821Answer by Chris Dolan for Programmatically add comments to PDF headerChris Dolan2009-06-16T05:11:44Z2009-06-16T05:11:44Z<p>You can store the data as real PDF metadata. For example, with <a href="http://search.cpan.org/dist/CAM-PDF" rel="nofollow">CAM::PDF</a> you can write metadata like this:</p>
<pre><code>use CAM::PDF;
my $pdf = CAM::PDF->new('temp.pdf') || die;
my $info = $pdf->getValue($pdf->{trailer}->{Info}) || die;
$info->{PRN} = CAM::PDF::Node->new('dictionary', {
DOC_TYPE => CAM::PDF::Node->new('string', 'Clinical'),
DOC_NUM => CAM::PDF::Node->new('number', 192837475),
DOC_VER => CAM::PDF::Node->new('number', 1),
});
$pdf->cleanoutput('out.pdf');
</code></pre>
<p>The Info node of the PDF then looks like this:</p>
<pre><code>8 0 obj
<< /CreationDate (D:20080916083455-04'00')
/ModDate (D:20080916083729-04'00')
/PRN << /DOC_NUM 192837475 /DOC_TYPE (Clinical) /DOC_VER 1 >> >>
endobj
</code></pre>
<p>You can read the PRN data back out like so (simplistic code...)</p>
<pre><code>my $pdf = CAM::PDF->new('out.pdf') || die;
my $info = $pdf->getValue($pdf->{trailer}->{Info}) || die;
my $prn = $info->{PRN};
if ($prn) {
my $prndict = $pdf->getValue($prn);
for my $key (sort keys %{$prndict}) {
print "$key = ", $pdf->getValue($prndict->{$key}), "\n";
}
}
</code></pre>
<p>Which makes output like this:</p>
<pre><code>DOC_NUM = 192837475
DOC_TYPE = Clinical
DOC_VER = 1
</code></pre>
<p>PDF supports arbitrarily nested arrays, dictionaries and references so just about any data can be represented. For example, I built an entire <a href="http://search.cpan.org/dist/Fuse-PDF" rel="nofollow">filesystem embedded in a PDF</a> just for fun!</p>
http://stackoverflow.com/questions/848513/lossless-merging-of-pdfs-php/868245#8682450Answer by Chris Dolan for Lossless merging of PDFs (PHP)Chris Dolan2009-05-15T11:55:03Z2009-05-15T11:55:03Z<p>My <a href="http://search.cpan.org/dist/CAM-PDF/" rel="nofollow">CAM::PDF</a> Perl library includes a flexible command-line tool called <a href="http://search.cpan.org/perldoc?appendpdf.pl" rel="nofollow">appendpdf.pl</a> which can mix arbitrary pages of a PDF into another document.</p>
http://stackoverflow.com/questions/823348/how-can-i-extract-fonts-from-a-pdf-file-with-perl/823402#8234024Answer by Chris Dolan for How can I extract fonts from a PDF file with Perl?Chris Dolan2009-05-05T04:51:43Z2009-05-05T23:36:08Z<p>I'm the author of <a href="http://search.cpan.org/dist/CAM-PDF" rel="nofollow">CAM::PDF</a>, one of the several popular Perl PDF libraries. Included in my package is a <a href="http://search.cpan.org/perldoc?listfonts.pl" rel="nofollow">tool to list embedded fonts</a> in a document, but I have not built any support for extracting fonts. That would probably be used primarily for <strong>copyright violation</strong>, so I'm not interested in supporting such a feature.</p>
http://stackoverflow.com/questions/816288/unable-to-terminate-a-job-without-opening-it/816308#8163082Answer by Chris Dolan for Unable to terminate a job without opening itChris Dolan2009-05-03T04:05:24Z2009-05-03T04:16:46Z<p>I believe you want "kill" instead of "killall". I tested under tcsh like this:</p>
<pre><code>home% cat
^Z
Suspended
home% kill %1
home%
[1] Terminated cat
</code></pre>
<p>Furthermore, I doubt this would work with sudo because sudo would invoke a new shell, wouldn't it? And in that shell, %4 would not be defined.</p>
<pre><code>home% cat
^Z
Suspended
home% sudo kill %1
Password:
kill: illegal process id: %1
</code></pre>
<p>If you really need to sudo, you can try this:</p>
<pre><code>home% jobs -l
[1] + 26318 Suspended cat
home% sudo kill 26318
</code></pre>
http://stackoverflow.com/questions/816193/what-is-a-real-life-use-for-the-builder-design-pattern/816222#8162223Answer by Chris Dolan for What is a real-life use for the builder design pattern?Chris Dolan2009-05-03T03:15:40Z2009-05-03T03:56:35Z<p>Key use cases:</p>
<ul>
<li>When the end result is immutable, but
doing it all with a constructor would
be too complicated</li>
<li>When I want to partially build
something and reuse that partially
built thing, but customize it at
the end each time</li>
<li>When you start with the factory pattern, but the thing being built by
the factory has too many permutations</li>
</ul>
<p>In summary, builder keeps your constructors simple, yet permits immutability.</p>
<p>You said C#, but here's a trivial Java example:</p>
<pre><code>StringBuilder sb = new StringBuilder();
sb.append("Hello");
sb.append(" ");
sb.append("World!");
System.out.println(sb.toString());
</code></pre>
<p>As opposed to:</p>
<pre><code>String msg = "";
msg += "Hello";
msg += " ";
msg += "World!";
System.out.println(msg);
</code></pre>
http://stackoverflow.com/questions/816257/unable-to-put-manuals-open-at-emacs-directly-from-terminal/816277#8162770Answer by Chris Dolan for Unable to put manuals open at Emacs directly from terminalChris Dolan2009-05-03T03:40:02Z2009-05-03T03:40:02Z<p>A few possibilities, depending on how you want the man pages formatted:</p>
<pre><code>man man > /tmp/man
emacs /tmp/man
</code></pre>
<p>or</p>
<pre><code>zcat `man -w man` | nroff > /tmp/man
emacs /tmp/man
</code></pre>
<p>or</p>
<pre><code>emacs `man -w man`
</code></pre>
http://stackoverflow.com/questions/816258/good-architecture-interview-questions/816264#8162645Answer by Chris Dolan for Good Architecture Interview Questions Chris Dolan2009-05-03T03:31:59Z2009-05-03T03:31:59Z<p>"So, I'm not going to jerk you around here: can you tell me something that will convince me that you know a lot about architecture?"</p>
http://stackoverflow.com/questions/816194/what-will-be-the-fastest-way-to-implement-a-good-search-on-my-site/816201#8162011Answer by Chris Dolan for What will be the fastest way to implement a good search on my site?Chris Dolan2009-05-03T03:04:51Z2009-05-03T03:04:51Z<p>Untested, but something like this has worked for me in the past:</p>
<pre><code><form action="http://www.google.com/search" onSubmit="this.q.value+=' site:mysite.com';return true">
<input name="q" />
</form>
</code></pre>
<p>Otherwise, perhaps this: <a href="http://www.google.com/sitesearch/" rel="nofollow">http://www.google.com/sitesearch/</a></p>
http://stackoverflow.com/questions/813104/uploading-pdf-v1-3-to-db/815280#8152800Answer by Chris Dolan for Uploading PDF v1.3 to DBChris Dolan2009-05-02T17:44:14Z2009-05-02T17:44:14Z<p>I agree with Jon Skeet's answer to this question. The difference is probably because Adobe added a handful of new compression techniques to PDF 1.4, so your 1.4 PDFs could be significantly smaller than the 1.3 PDFs. So, the need to read in a loop may only manifest for v1.3 PDFs as a consequence. (but that's just a guess)</p>
http://stackoverflow.com/questions/814088/movieclip-inside-another-movieclip-for-a-drawing-applet-why-and-how/814095#8140950Answer by Chris Dolan for MovieClip inside another MovieClip for a drawing applet. Why and how?Chris Dolan2009-05-02T03:52:32Z2009-05-02T03:52:32Z<p>My Flash skills are a little rusty, but I think it's because you can't apply a mask to the root movie.</p>
http://stackoverflow.com/questions/814082/finding-element-in-linkedlist/814092#8140923Answer by Chris Dolan for Finding element in LinkedListChris Dolan2009-05-02T03:49:40Z2009-05-02T03:49:40Z<p>Just walk the list and look for matches. If you do this often and change the list infreqently, build a Map index first.</p>
<pre><code>List<Employee> list = ...
for (Employee e : list)
if (e.getID() == id)
return true;
return false;
</code></pre>
<p>That said, saving employees in a LinkedList?? What a strange example problem...</p>
http://stackoverflow.com/questions/812790/restrict-word-list-in-xml-schema/814077#8140770Answer by Chris Dolan for Restrict word list in XML schemaChris Dolan2009-05-02T03:39:11Z2009-05-02T03:39:11Z<p>Without negative lookahead, this is pretty tedious. Attached is a regex that works with some unit tests. This is written in Perl, not XSD, but it's pretty basic regex so it should work... You should remove the whitespace from the regex before using it. I added the whitespace just to make it a little easier to read.</p>
<p>Note: I don't know if "\A" and "\z" are allowed in XSD. If not, replace with "^" and "$" respectively.</p>
<pre><code>use Test::More 'no_plan';
my $re = qr/\A(\z|[^ibs]
|i(\z|[^n]|n(\z|[^t]|t.))
|b(\z|[^y]|y(\z|[^t]|t(\z|[^e]|e.)))
|s(\z|[^t]|t(\z|[^r]|r(\z|[^i]|i(\z|[^n]|n(\z|[^g]|g.))))))/x;
for my $str ( qw(inter bytes ins str strings in sdgsdfger i b s by byt bite st \
str stri strin strink) ) {
like($str, $re, $str);
}
for my $str ( qw(int byte string) ) {
unlike($str, $re, $str);
}
</code></pre>
http://stackoverflow.com/questions/751267/how-do-i-gather-output-from-an-external-command-in-a-perl-script/754549#7545491Answer by Chris Dolan for How do I gather output from an external command in a Perl script?Chris Dolan2009-04-16T02:43:01Z2009-04-16T02:43:01Z<p>You might also consider another approach: <a href="http://stackoverflow.com/questions/196788/how-do-i-get-character-offset-information-from-a-pdf-document">use a Perl library to extract the coordinates</a>.</p>
http://stackoverflow.com/questions/745138/how-do-i-get-text-orientation-of-a-text-string-in-a-pdf-page-using-campdf/746460#7464602Answer by Chris Dolan for How do I get text orientation of a text string in a PDF page using CAM::PDF?Chris Dolan2009-04-14T05:38:05Z2009-04-14T05:38:05Z<p>Somewhat related questions: <a href="http://stackoverflow.com/questions/662602/how-can-i-get-the-page-orientation-of-a-pdf-page">How can I get the page orientation of a PDF page?</a> and <a href="http://stackoverflow.com/questions/196788/how-do-i-get-character-offset-information-from-a-pdf-document">How do I get character offset information from a pdf document?</a></p>
<p>Starting with the solution for the latter question, I came up with this recipe:</p>
<pre><code>use CAM::PDF;
my $pdf = CAM::PDF->new('my.pdf') or die $CAM::PDF::errstr;
for my $pagenum (1 .. $pdf->numPages) {
my $pagetree = $pdf->getPageContentTree($pagenum) or next;
my @text = $pagetree->traverse('MyRenderer')->getTextBlocks;
for my $textblock (@text) {
print "text '$textblock->{str}' at ",
"($textblock->{left},$textblock->{bottom}), angle $textblock->{angle}\n";
}
}
package MyRenderer;
use base 'CAM::PDF::GS';
sub new {
my ($pkg, @args) = @_;
my $self = $pkg->SUPER::new(@args);
$self->{refs}->{text} = [];
return $self;
}
sub getTextBlocks {
my ($self) = @_;
return @{$self->{refs}->{text}};
}
sub renderText {
my ($self, $string, $width) = @_;
my ($x, $y) = $self->textToDevice(0,0);
my ($x1, $y1) = $self->textToDevice(1,0);
push @{$self->{refs}->{text}}, {
str => $string,
left => $x,
bottom => $y,
angle => atan2($y1-$y, $x1-$x),
};
return;
}
</code></pre>
<p>which yielded this result for page 565 of PDFReference15_v5.pdf:</p>
<pre><code>text 'ab' at (371.324,583.7249), angle -1.5707963267949
text 'c' at (371.324,576.63365), angle -1.5707963267949
</code></pre>
<p>Note that the angle is in radians. Divide by Pi and multiply by 180 to convert that to degrees. So, -1.5707963267949 is 270 degrees, which agrees with page 565.</p>
<p>Note that the angle printed is the angle relative to the page content. If the page itself is further rotated (as per the page orientation question above) then you may want to compound the rotation calculations.</p>
http://stackoverflow.com/questions/712494/how-do-i-allow-two-concurrent-processes-to-communicate/712502#7125025Answer by Chris Dolan for How do I allow two concurrent processes to communicate?Chris Dolan2009-04-03T03:58:04Z2009-04-03T03:58:04Z<p>The C program should fflush() its output buffers explictly, or use a pty. The latter is much more awkward but keeps the C code simpler. Try "man 3 fflush" if this is unfamiliar to you.</p>
http://stackoverflow.com/questions/684405/what-data-structure-is-most-suitable-for-implementing-a-2-d-array-in-java/684467#6844670Answer by Chris Dolan for What data structure is most suitable for implementing a 2-D array in Java?Chris Dolan2009-03-26T03:55:44Z2009-03-26T03:55:44Z<p>Arrays <em>can</em> be sized at runtime. If you have a row/column size that doesn't vary too often, and the data is not too sparse, then an array is your best bet.</p>
<pre><code>class TwoDimArray {
public int[][] createArray(int nRows, int nCols) {
return new int[nRows][nCols];
}
public int[][] resizeArray(int[][] oldArray, int nRows, int nCols) {
int[][] newArray = new int[nRows][nCols];
for (int i=0; i<Math.min(oldArray.length, nRows); ++i)
for (int j=0; j<Math.min(oldArray[i].length, nCols); ++j)
newArray[i][j] = oldArray[i][j];
return newArray;
}
}
</code></pre>
http://stackoverflow.com/questions/668734/how-to-copy-the-data-from-excel-to-oracle/668743#6687431Answer by Chris Dolan for How to copy the data from Excel to oracle?Chris Dolan2009-03-21T04:32:13Z2009-03-21T04:32:13Z<p>Perhaps some combination of <a href="http://search.cpan.org/dist/DBD-Oracle/" rel="nofollow">DBD::Oracle</a>, <a href="http://search.cpan.org/dist/DBD-Excel/" rel="nofollow">DBD::Excel</a> and <a href="http://search.cpan.org/perldoc?DBIx::Copy" rel="nofollow">DBIx::Copy</a>? But surely there's an easier way...</p>
http://stackoverflow.com/questions/668682/when-benchmarking-what-causes-a-lag-between-cpu-time-and-elapsed-real-time/668686#6686863Answer by Chris Dolan for When benchmarking, what causes a lag between CPU time and "elapsed real time"?Chris Dolan2009-03-21T03:33:33Z2009-03-21T03:33:33Z<p>Multitasking operating system, stalls while waiting for I/O, and other moments when you code is not actively working.</p>
http://stackoverflow.com/questions/668653/how-could-i-implement-logical-implication-with-bitwise-or-other-efficient-code-in/668658#6686589Answer by Chris Dolan for How could I implement logical implication with bitwise or other efficient code in C?Chris Dolan2009-03-21T03:00:25Z2009-03-21T03:21:49Z<pre><code>~p | q
</code></pre>
<p>For visualization:</p>
<pre><code>perl -e'printf "%x\n", (~0x1100 | 0x1010) & 0x1111'
1011
</code></pre>
<p>In tight code, this should be faster than "!p || q" because the latter has a branch, which might cause a stall in the CPU due to a branch prediction error. The bitwise version is deterministic and, as a bonus, can do 32 times as much work in a 32-bit integer than the boolean version!</p>
http://stackoverflow.com/questions/668624/how-to-do-this-mysql-query-how-to-get-n-fields-in-1-row/668645#6686452Answer by Chris Dolan for How to do this mysql query? (how to get n fields in 1 row)Chris Dolan2009-03-21T02:51:09Z2009-03-21T02:51:09Z<p>See <a href="http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function%5Fgroup-concat" rel="nofollow">GROUP_CONCAT</a> for one solution. I don't know how efficient this approach is, however.</p>
<pre><code>select message.Id as id, Message, group_concat(Subject separator ';') as subjects
from message,subject,message_subject_rel
where message.Id=message_subject_rel.message_id
and subject.Id=message_subject_rel.subject_id
group by message.Id
having subjects like '%Math%' and subjects like '%Science%';
</code></pre>
<p>From that, I get:</p>
<pre><code>+------+---------+----------------------+
| id | Message | subjects |
+------+---------+----------------------+
| 1 | Message | Math;Science;Numbers |
+------+---------+----------------------+
</code></pre>
<p>Obviously, you could do a better job than my ';' separator and my like clauses.</p>
http://stackoverflow.com/questions/668031/how-to-get-the-x-y-coordinates-of-a-point-in-a-pdf/668564#6685640Answer by Chris Dolan for How to get the X,Y coordinates of a point in a PDFChris Dolan2009-03-21T01:40:01Z2009-03-21T01:40:01Z<p>The form-filling part of your question seems related to <a href="http://stackoverflow.com/questions/77873/filling-pdf-forms-with-php/112712#112712">this question</a>. As for coords, I can't help with PHP but I have a good Perl solution for this. Here are <a href="http://stackoverflow.com/questions/620470/how-can-i-get-the-width-and-height-of-a-text-string-with-campdf">two</a> <a href="http://stackoverflow.com/questions/196788/how-do-i-get-character-offset-information-from-a-pdf-document/203553#203553">questions</a> about computing X,Y coords of text. CAM::PDF has a <a href="http://search.cpan.org/dist/CAM-PDF/bin/fillpdffields.pl" rel="nofollow">fillformfields.pl</a> utility that can help.</p>
http://stackoverflow.com/questions/662602/how-can-i-get-the-page-orientation-of-a-pdf-page/665038#6650383Answer by Chris Dolan for How can I get the page orientation of a PDF page?Chris Dolan2009-03-20T04:58:43Z2009-03-21T01:29:31Z<p>Hi, I'm the author of CAM::PDF.</p>
<p>Well, there's two parts to this. One is the page's dimensions, as you noted. That works as expected: I used Apple's Preview.app to rotate a PDF file and ran these two command lines:</p>
<pre><code>perl -MCAM::PDF -le'print "@{[CAM::PDF->new(shift)->getPageDimensions(1)]}"' orig.pdf
0 0 612 792
perl -MCAM::PDF -le'print "@{[CAM::PDF->new(shift)->getPageDimensions(1)]}"' rotated.pdf
0 0 792 612
</code></pre>
<p>But there's also the `/Rotate' page attribute. The argument is a number of degrees (default 0, but 90 or 270 are not uncommon). Like page dimensions, it's an inheritable property so you have to navigate to parent pages. Here's a quick-and-dirty command line tool to output the rotation value:</p>
<pre><code>use CAM::PDF;
my $filename = shift || die;
my $pagenum = shift || die;
my $pdf = CAM::PDF->new($filename) || die;
my $pagedict = $pdf->getPage($pagenum);
my $rotate = 0;
while ($pagedict) {
$rotate = $pdf->getValue($pagedict->{Rotate});
if (defined $rotate) {
last;
}
my $parent = $pagedict->{Parent};
$pagedict = $parent && $pdf->getValue($parent);
}
print "/Rotate $rotate\n";
</code></pre>
http://stackoverflow.com/questions/638042/java-vnc-applet-vs-screen-capture/665079#6650792Answer by Chris Dolan for Java VNC Applet vs Screen CaptureChris Dolan2009-03-20T05:28:51Z2009-03-20T05:28:51Z<p>I agree that this is pretty hard. I implemented those two solutions (VNC and onboard screen capture) plus a third (capture from an external VGA source via an <a href="http://www.epiphan.com/products/frame-grabbers/" rel="nofollow">Epiphan</a> grabber) for a former employer. I had the best bandwidth-to-quality ratio with VNC, but I got higher framerate with VGA capture. In all three cases, I reduced the frames + capture times to PNGs and sequenced them in a QuickTime reference movie. Then I made flattened video (MPEG4 or SWF) of the results. In my case, I then synchronized the screen video with a DV stream.</p>
<p>In the end the technology worked (see <a href="http://www.media-landscape.com/yapc/2006-06-26.ChrisDolan/" rel="nofollow">a sample</a> of the output) but our business model failed.</p>
http://stackoverflow.com/questions/638042/java-vnc-applet-vs-screen-capture/665079#665079Comment by Chris Dolan on Java VNC Applet vs Screen CaptureChris Dolan2009-10-26T02:05:43Z2009-10-26T02:05:43ZThe URL is fixed. It was a DNS error.http://stackoverflow.com/questions/1546337/seachreplace-strings-in-pdf-with-perl-ruby-php/1546813#1546813Comment by Chris Dolan on Seach&Replace strings in PDF with perl/ruby/phpChris Dolan2009-10-26T02:03:49Z2009-10-26T02:03:49Z@santosh not likely. Those limitations have existed since CAM::PDF 0.01 and are unlikely to ever change. It's too hard a problem to solve in my spare time and nobody has been willing to fund the work to date.http://stackoverflow.com/questions/638042/java-vnc-applet-vs-screen-capture/665079#665079Comment by Chris Dolan on Java VNC Applet vs Screen CaptureChris Dolan2009-10-08T03:14:53Z2009-10-08T03:14:53Z@MikeNereson -- thanks for pointing that out. They're my former employer and I've passed on the message. I think it was accidental.http://stackoverflow.com/questions/1136990/how-can-i-extract-text-from-a-pdf-file-in-perl/1137961#1137961Comment by Chris Dolan on How can I extract text from a PDF file in Perl?Chris Dolan2009-07-18T20:09:43Z2009-07-18T20:09:43ZI'm the CAM::PDF author and I agree with the disclaimers. I built the text extraction on a whim and it turned out to be a lot harder than I anticipated.http://stackoverflow.com/questions/1136990/how-can-i-extract-text-from-a-pdf-file-in-perl/1137653#1137653Comment by Chris Dolan on How can I extract text from a PDF file in Perl?Chris Dolan2009-07-18T20:08:35Z2009-07-18T20:08:35ZYeah, but it's not very good (I'm the author)http://stackoverflow.com/questions/906457/allow-only-pdfs-to-be-uploaded/906466#906466Comment by Chris Dolan on Allow only pdfs to be uploadedChris Dolan2009-05-25T22:19:47Z2009-05-25T22:19:47ZBecause I could use ANY web library to upload a virus-laden .exe or .msi (or non-MS equivalent) and claim it's application/pdf. Depending on the web browser, a subsequent download could harm a naive user.http://stackoverflow.com/questions/823348/how-can-i-extract-fonts-from-a-pdf-file-with-perl/823402#823402Comment by Chris Dolan on How can I extract fonts from a PDF file with Perl?Chris Dolan2009-05-05T23:34:25Z2009-05-05T23:34:25Z@Svante: If you want a non-copyrighted font, then you just download it -- you don't need to extract it from the PDF. By your analogy, the questioner is asking for lockpicks to acquire a hammer: it seems highly suspicious.
In your comment you said "buy". The questioner did not ask what's the URL for a website where s/he can buy fonts.http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment/235867#235867Comment by Chris Dolan on Most Astonishing Violation of the Principle of Least AstonishmentChris Dolan2009-05-04T01:55:22Z2009-05-04T01:55:22ZClearCase is guilty of thishttp://stackoverflow.com/questions/816258/good-architecture-interview-questions/816290#816290Comment by Chris Dolan on Good Architecture Interview Questions Chris Dolan2009-05-03T04:21:22Z2009-05-03T04:21:22ZDespite my tongue-in-cheek answer to this same question, I like point #1 the best.http://stackoverflow.com/questions/816226/circle-functions-not-behaving-as-expected-in-java-class/816255#816255Comment by Chris Dolan on Circle functions not behaving as expected in Java ClassChris Dolan2009-05-03T03:44:57Z2009-05-03T03:44:57ZOh, I just tested and you're right. I thought it would downconvert to an int.http://stackoverflow.com/questions/816226/circle-functions-not-behaving-as-expected-in-java-classComment by Chris Dolan on Circle functions not behaving as expected in Java ClassChris Dolan2009-05-03T03:27:38Z2009-05-03T03:27:38ZSo.... what does it output that's wrong??http://stackoverflow.com/questions/816038/why-does-spreadsheetxlsxutility2007s-xls2csv-round-off-to-two-decimal-placesComment by Chris Dolan on Why does Spreadsheet::XLSX::Utility2007's xls2csv round off to two decimal places?Chris Dolan2009-05-03T03:20:06Z2009-05-03T03:20:06ZThis question is too complicated. Can you reduce the problem to a short code snippet and post that? Or at least link to the example script and/or the CPAN module perldoc?http://stackoverflow.com/questions/814130/help-in-j2me-for-creating-image-and-parse-itComment by Chris Dolan on Help in J2ME for creating image and parse itChris Dolan2009-05-02T04:26:43Z2009-05-02T04:26:43ZYou mean 100 sub images, not 10. You mentioned an exception. Do you have a stacktrace?http://stackoverflow.com/questions/813563/renaming-a-property-and-system-error-messageComment by Chris Dolan on renaming a property and system error message Chris Dolan2009-05-02T04:19:38Z2009-05-02T04:19:38ZStop asking this same question over and over.
<a href="http://stackoverflow.com/questions/814096/renaming-the-triangleindices-property-and-error-message" rel="nofollow" title="renaming the triangleindices property and error message">stackoverflow.com/questions/814096/…</a>
<a href="http://stackoverflow.com/questions/814074/renaming-the-triabgleindices-property-and-error-message" rel="nofollow" title="renaming the triabgleindices property and error message">stackoverflow.com/questions/814074/…</a>http://stackoverflow.com/questions/814096/renaming-the-triangleindices-property-and-error-messageComment by Chris Dolan on Renaming the TriangleIndices Property and Error MessageChris Dolan2009-05-02T04:14:48Z2009-05-02T04:14:48ZStop asking this same question over and over. You're abusing the system.