Group Abstract Group Abstract

Message Boards Message Boards

Export W|A table as image?

Posted 10 years ago
POSTED BY: Mark Greenberg
3 Replies

It is beautiful. ImageSize -> {Automatic, 360} will help keep the tall side in your 360 box.

Export["turbine.png", Magnify[
  WolframAlpha["Wind Turbine Formula", {{"Equation", 1}, "Content"}],
  2], ImageSize -> {Automatic, 360}] 

ImageDimensions@Import["turbine.png"]
(*{294,360}*)
Posted 10 years ago

Perfect, thank you. Looks like I'd better Magnify[] the table first before rasterizing it so as to avoid pixelization.

Good answer.

POSTED BY: Mark Greenberg

Export

Export["turbine.png", 
 WolframAlpha["Wind Turbine Formula", {{"Equation", 1}, "Content"}], 
 ImageSize -> 360]

Rasterize

ImageResize[
 Rasterize[WolframAlpha["Wind Turbine Formula", {{"Equation", 1}, "Content"}]], 
360]

PodImages

ImageResize[
 WolframAlpha["Wind Turbine Formula", "PodImages"][[2]],
 360]
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard