-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Proposal: Rasterization of SVGs at Runtime for Eclipse Icons #2593
base: master
Are you sure you want to change the base?
Conversation
org.eclipse.search org.eclipse.ui org.eclipse.ui.ide org.eclipse.ui.ide.application org.eclipse.ui.editors org.eclipse.ui.navigator
I just pushed the changes I made for/in our yesterdays 1:1 meeting, mainly adapt to the change that |
try (InputStream in = getStream(tempURL)) { | ||
if (rasterizer.isSVGFile(in)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we would just check the file-extension here we would save creating an InputStream
for each image to render. The latter is probably a significant performance overhead.
Furthermore it would save us from making SVGRasterizerRegistry
and SVGRasterizer
public.
See the following PR in Eclipse SWT for a detailed description of the changes.
Fixes eclipse-platform/eclipse.platform.swt#1438.