mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
updating to itext 1.4.2
This commit is contained in:
32
.classpath
32
.classpath
@@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="src" path="core/src"/>
|
||||
<classpathentry kind="src" path="dxf/src"/>
|
||||
<classpathentry kind="src" path="opengl/src"/>
|
||||
<classpathentry kind="lib" path="opengl/library/jogl.jar"/>
|
||||
<classpathentry kind="src" path="net/src"/>
|
||||
<classpathentry kind="src" path="pdf/src"/>
|
||||
<classpathentry kind="lib" path="pdf/library/itext.jar"/>
|
||||
<classpathentry kind="src" path="serial/src"/>
|
||||
<classpathentry kind="lib" path="serial/library/RXTXcomm.jar"/>
|
||||
<classpathentry kind="lib" path="video/QTJava.zip"/>
|
||||
<classpathentry kind="src" path="video/src"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="src" path="core/src"/>
|
||||
<classpathentry kind="src" path="dxf/src"/>
|
||||
<classpathentry kind="src" path="opengl/src"/>
|
||||
<classpathentry kind="lib" path="opengl/library/jogl.jar"/>
|
||||
<classpathentry kind="src" path="net/src"/>
|
||||
<classpathentry kind="src" path="pdf/src"/>
|
||||
<classpathentry kind="src" path="serial/src"/>
|
||||
<classpathentry kind="lib" path="serial/library/RXTXcomm.jar"/>
|
||||
<classpathentry kind="lib" path="video/QTJava.zip"/>
|
||||
<classpathentry kind="src" path="video/src"/>
|
||||
<classpathentry sourcepath="pdf/itext-src-1.4.2.zip" kind="lib" path="pdf/library/itext-1.4.2.jar"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
||||
@@ -21,6 +21,9 @@ X nope, doesn't, didn't finish support
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=350
|
||||
X openStream() fails with java plug-in because non-null stream returned
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=359
|
||||
X update jogl to latest beta 5
|
||||
_ might fix blank screen issues on linux:
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=367
|
||||
|
||||
fixed in 0115 / quicktime 7.1
|
||||
X color values on camera input flipped on intel macs
|
||||
@@ -35,27 +38,18 @@ o right now the camera doesn't get set up unless you call depth()
|
||||
o box and sphere are broken in gl
|
||||
o what should the update image function be called?
|
||||
|
||||
_ should really be doing the 'right' thing with sketch file handling
|
||||
_ create temporary file when saving
|
||||
_ once done writing, use remove the original and rename the old
|
||||
_ some basic stuff like this..
|
||||
|
||||
_ copy() sort of broken in JAVA2D
|
||||
_ example sketch posted with bug report
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=372
|
||||
|
||||
_ what's up with stop() vs exit()?
|
||||
_ need to get this straightened for p5 (i.e. bc has this problem)
|
||||
_ make sure the main() doesn't exit until the applet has finished
|
||||
_ i.e. problem with main calling itself multiple times in Alpheus
|
||||
|
||||
_ copy() sort of broken in JAVA2D
|
||||
_ example sketch posted with bug report
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=372
|
||||
|
||||
_ AIOOBE in P3D during defaults/background/clear
|
||||
_ thread sync problem with allocation
|
||||
|
||||
_ update jogl to latest beta 5
|
||||
_ might fix blank screen issues on linux:
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=367
|
||||
|
||||
reasons to drop 1.1 support (and support 1.3+)
|
||||
_ remove reflection from createFont() constructor/methods in PFont
|
||||
_ this would make PFont much smaller
|
||||
@@ -67,6 +61,9 @@ _ split() function could echo the built in split/regexp setup
|
||||
_ and add features for regexp
|
||||
_ could introduce use of Timer class in examples
|
||||
_ also use SwingWorker to launch things on other threads
|
||||
_ weirdness of two modes of handling font metrics
|
||||
_ textFontNativeMetrics gives deprecation error
|
||||
_ getFontList stuff in PFont causes problems
|
||||
|
||||
_ fix the internal file chooser so that people don't need to make their own
|
||||
_ threading is a problem with inputFile() and inputFolder()
|
||||
|
||||
11
todo.txt
11
todo.txt
@@ -48,6 +48,14 @@ X audio hiccups, throttling the cpu
|
||||
X p5 will take as much cpu as it can, which can choke other apps
|
||||
X call delay(10) (or so) if you want to make sure audio keeps running
|
||||
|
||||
|
||||
FOR 1.0
|
||||
_ should really be doing the 'right' thing with sketch file handling
|
||||
_ create temporary file when saving
|
||||
_ once done writing, use remove the original and rename the old
|
||||
_ some basic stuff like this..
|
||||
|
||||
|
||||
_ bugs.html#application -> export.html#application
|
||||
_ with network, check in advanced, then rename advanced.html to howto.html
|
||||
|
||||
@@ -98,6 +106,8 @@ _ jai handles setting image size
|
||||
_ PNGEncodeParam png = PNGEncodeParam.getDefaultEncodeParam(bufImage);
|
||||
_ png.setPhysicalDimension(round(dpi*39.370079), round(dpi*39.370079), 1);
|
||||
_ JAI.create("filestore", bufImage, filename+".png", "PNG");
|
||||
_ add somethign about getting a bufferedimage from a PGraphics
|
||||
_ maybe this should be a method?
|
||||
|
||||
text faq
|
||||
_ how to use textMode(SHAPE) with opengl
|
||||
@@ -110,6 +120,7 @@ _ textMode(SCREEN) for P2D and P3D for nice fast text in screen space
|
||||
_ currently slow in JAVA2D and OPENGL, but this will improve
|
||||
_ what is the vlw font file format?
|
||||
_ createFont() needs to run 1.3+, and not in applets
|
||||
_ where is the bug reference for this.. and can it be fixed?
|
||||
_ shapes from 3D type
|
||||
_ the way to do it (will improve later) is to use some undocumented features
|
||||
_ 1) you have to use the OPENGL renderer
|
||||
|
||||
Reference in New Issue
Block a user