The redacted version (pdf) of the Mueller report was released today. Here’s the thumbnailed view for a sense of the redactions.
I had to do this in R real quick, or I wasn’t going to get anything done for the rest of the day. Here’s my snippet in case you’re interested:
pdf_convert ( "mueller-report.pdf" ) |
totalwidth <- (imgwidth+spacing) * (gridwidth) |
totalheight <- (imgheight+spacing) * gridheight |
png ( "all_pages.png" , round ((imgwidth+spacing)*gridwidth/7), round ((imgheight+spacing)*gridheight/7)) |
plot (0, 0, type= 'n' , xlim= c (0, totalwidth), ylim= c (0, totalheight), asp=1, bty= "n" , axes= FALSE ) |
fname <- paste ( "mueller-report_" , i, ".png" , sep= "" ) |
x <- (i %% gridwidth) * (imgwidth+spacing) |
y <- totalheight - ( floor (i / gridwidth)) * (imgheight+spacing) |
rasterImage (img, xleft=x, ybottom = y-imgheight, xright = x+imgwidth, ytop=y) |