I'm working about a drawing interface. The result must be the draw surface who is save into another bigger Jpg, I use PGraphics for this.
The problem is than the bigger jpg is in format A4 in 150 dpi, but when I save the new JPG he change in 2 A4 in 72 dpi.
But I want that the ending format be easy printable, without dpi's translation in photoshop (or other soft). I want than the ending files can be print without modification.
Library, function or other solution, exist for export in 150 dpi ?
I want to create a generativ program, who the result can be print (in a4).
I've a format problem : The A4 format in px is very bigest than all computer screen. I want to know if we can change the DPI of a size, for this reason (and because, if a .tiff is export from this program he can be directly to the good size for print)
I don't use PDF export because the process is big, and the pdf export will become to big for be print.
how can I change my program size in 225 dpi or more?
I've a problem for export an applet with the oscp5 library. The applet is ok, but when I use the function for send OSC, the page stop. Id read than I need for this problem give this object public ? How can I make this ?
my class is :
class Osc{
float variable;
/////constructor///////
Osc(){
oscP5 = new OscP5(this,3000);
myRemoteLocation = new NetAddress('receiver IP',3000);
variable=0;
}
void envoi(float variable, String patch){
OscMessage myMessage = new OscMessage(patch);myMessage.add(variable);
Hello !
I've problem to stream an ".ogg" with processing. I don't know how that work with minim or ess, but the ogg's format look not able to be read by processing.
I work with Linux, (and I ve munch problem with some library, and video's work who need quicktime) maybe minim or ess have problem with linux too. I ask if some one know this problem and have a solution? (another library? a different synthax code?)
I have a easy (i think) problem with the printwriter, function.
I'd make in my programm a creatwriter who make a new .txt file, and I print into this, every thing is ok.
I print numbers in my txt but the problem is i want to go to the next line after each number, and I don't know the synthax to make this! (in my txt, everynumber is writte on the same line!)
I think it's a easy problem but I don't have see solutions on the processing's website (maybe my english lvl is too bad to understand everything...)!