(PGraphics g)
| 1946 | } |
| 1947 | |
| 1948 | private void loadImage(PGraphics g){ |
| 1949 | |
| 1950 | if(this.imagePath.startsWith("data:image")){ |
| 1951 | loadBase64Image(); |
| 1952 | } |
| 1953 | |
| 1954 | if(this.imagePath.startsWith("file://")){ |
| 1955 | loadFileSystemImage(g); |
| 1956 | } |
| 1957 | this.imagePath = null; |
| 1958 | } |
| 1959 | |
| 1960 | private void loadFileSystemImage(PGraphics g){ |
| 1961 | imagePath = imagePath.substring(7); |
no test coverage detected