increase buffer size for pdf, minor todo items

This commit is contained in:
benfry
2007-06-22 21:10:13 +00:00
parent 19f3988776
commit 3b4b678042
3 changed files with 14 additions and 1 deletions
+2
View File
@@ -88,6 +88,8 @@ X http://dev.processing.org/bugs/show_bug.cgi?id=526
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1171574044
0125p4 (in progress)
X significant improvement to text and images in opengl
X now using mipmaps to interpolate large and small images
_ PGraphics problem with fillColor
+3 -1
View File
@@ -161,7 +161,9 @@ public class PGraphicsPDF extends PGraphicsJava2D {
if (document == null) {
document = new Document(new Rectangle(width, height));
try {
writer = PdfWriter.getInstance(document, new FileOutputStream(file));
FileOutputStream fos = new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(fos, 16384);
writer = PdfWriter.getInstance(document, bos);
document.open();
content = writer.getDirectContent();
+9
View File
@@ -54,6 +54,15 @@ X can't confirm this one
X no longer default to sketchbook folder on open
0125p4 (in progress)
_ keywords/reference
_ map is going to null reference, not colored properly
_ general issue when reference not found, going to 'null' reference
_ do a trim() on the selection for find in reference
_ ocd is broken - do a better error message for this
_ moviemaker is broken
_ save/saveas should use modal dialog
_ only use the bottom bar for naming
_ "Object" example isn't using tabs.. others?
new bugs