mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
increase buffer size for pdf, minor todo items
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user