- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I'm using the CreatePen Function to create a solid red pen
integer*4 linewidth,c,hPen
integer*2 i1,i2,i3
linewidth=1
i1=255
i2=0
i3=0
c=RGB(int1(i1),int1(i2),int1(i3)) ! red
hpen=createpen(PS_SOLID,LineWidth,c)
How do I create a transparent pen?
integer*4 linewidth,c,hPen
integer*2 i1,i2,i3
linewidth=1
i1=255
i2=0
i3=0
c=RGB(int1(i1),int1(i2),int1(i3)) ! red
hpen=createpen(PS_SOLID,LineWidth,c)
How do I create a transparent pen?
コピーされたリンク
3 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hello
See : http://msdn.microsoft.com/en-us/library/dd183509%28v=vs.85%29.aspx
PS_NULL for PenStyle parameter
See : http://msdn.microsoft.com/en-us/library/dd183509%28v=vs.85%29.aspx
PS_NULL for PenStyle parameter
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Thanks but I don't think that is what I want.
I want to be a be to see the line but also be able to see that is under the line, so I would set the transparency at say 50%.
You can do this in VB where thare are 4 parameters, 'argb' where a is the transparency.
I want to be a be to see the line but also be able to see that is under the line, so I would set the transparency at say 50%.
You can do this in VB where thare are 4 parameters, 'argb' where a is the transparency.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I think you need Gdiplus for that. I am not aware of Fortran bindings.
