Grasshopper

algorithmic modeling for Rhino

Hi
Is there some way to send and receive data from grasshopper to ex. paint in windows? Make it open a file, add a line then save and close?

Thanks

Views: 390

Replies to This Discussion

If you're looking to do some basic bitmap stuff, wouldn't it be much easier to use GDI+ to do it?

If you want to draw a line in a bitmap, how about the following:

Dim bmp As New Bitmap("C:\somewhere\blahblah\image.bmp")

Dim G As Graphics = Graphics.FromImage(bmp)

G.DrawLine(Pens.Black, 10, 10, 100, 70)

bmp.Save("C:\somewhere\blahblah\image.bmp")

bmp.Dispose()

G.Dispose()

Different applications have different APIs, so I can definitely see the point of remoting into Photoshop, but Paint.exe.... 

--

David Rutten

david@mcneel.com

Poprad, Slovakia

Thx for the answer.

Paint is light and simple to run - has its potentials :P.

It's not for some basic bitmap stuff. I'm trying to connect grashopper with other parts of software so the geometry controls the rest of the computer.

Lets say if u move one point down z>1000 units, the computer shuts down.

I could imagine this could be coded through VB net (preferebly) or C:

1: make connection to the other software

2: add command

3: read some of the data

Maybe there is some basic connection scripts i can find somewhere to get some inspiration? Or some experts who has done this before?

There are many different ways in which application can choose to expose themselves to the outside world. Some provide C++ SDKs, which can be compiled against. Some provide .NET SDKs, sometimes it's COM, sometimes its AJAX or ...... Some applications do not allow external access at all. 

We'll need to know exactly which program you want to access and what it is you want to do with it. And even then you're probably better off asking on the forums of those applications whether they can be invoked from .NET

--

David Rutten

david@mcneel.com

Poprad, Slovakia

RSS

About

Translate

Search

Photos

  • Add Photos
  • View All

© 2024   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service