even gradient for large pdf export
in
Programming Questions
•
2 years ago
hi, i want to have a simple background gradient, but as vector for large PDF image export.
now i use this:
but when i render it large with gimp it shows up as many lines, not at all even. how can i solve this better?
thank you!
now i use this:
but when i render it large with gimp it shows up as many lines, not at all even. how can i solve this better?
thank you!
- colorMode (HSB);
for(int i=0;i<width;i++){
//for(int i=255;i>width;i--){
stroke(70,3,90+i*0.36,31);
line(0,i,width,i);
}
1