基于IntelliJ IDEA处理>;库>;SVG导出
我正在尝试将SVG从IntelliJ IDEA上的处理中保存出来。但是,当我这样做时,IntelliJ一直告诉我‘processing.svg.PGraphicsSVG呈现器不在类路径中。``
这是我的环境。
IntelliJ IDEA 2019.1 (Community Edition)
Build #IC-191.6183.87, built on March 27, 2019
JRE: 1.8.0_202-release-1483-b39 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Processing 3.5.3
Windows 10 10.0
我尝试的内容:
步骤1.在处理IDE中运行此代码。
import processing.svg.*;
void setup () {
size(900, 600, SVG, "E:\test.svg");
smooth();
}
void draw() {
background(200);
line(0, 0, width/2, height/2);
System.out.print("Saved" +"
");
exit();
}
它起作用了。
步骤2.在IntelliJ IDEA中只需稍加修改即可运行上述代码
import processing.core.PApplet;
~~import processing.svg.*;~~
public class Main extends PApplet {
public static void main(String[] args) {
PApplet.main("Main", args);
}
public void settings() {
String path = "E:\";
size(900, 600, SVG, path + "test.svg");
smooth();
}
public void setup() {
}
public void draw() {
background(200);
line(0, 0, width/2, height/2);
System.out.print("Saved" +"
");
exit();
}
}
IntelliJ Idea告诉我,所有必要的库就绪后,在代码之上运行
The processing.svg.PGraphicsSVG renderer is not in the class path.
它不允许我通过说can not resolve symbol svg
import processing.svg.*;
我知道问题与此行import processing.svg.*;
有关,因为IntelliJ一直告诉我can not resolve symbol svg
,因此我无法解决此问题。
任何帮助都是救命稻草,提前感谢您。
svg
无法解析推荐答案符号,因为它不是core.jar
的一部分。
必须将处理安装中位于此目录modesjavalibrariessvglibrary
中的所有.jars添加到IntelliJ项目的类路径中才能启用SVG功能。
相关文章