Click here to Skip to main content
15,887,027 members
Home / Discussions / Graphics
   

Graphics

 
QuestionDirect x8 download Pin
Otekpo Emmanuel13-Feb-14 13:42
Otekpo Emmanuel13-Feb-14 13:42 
AnswerRe: Direct x8 download Pin
Jochen Arndt13-Feb-14 21:46
professionalJochen Arndt13-Feb-14 21:46 
QuestionCan I draw an color filled object (circle) on top of anything else? Pin
transoft11-Dec-13 8:33
transoft11-Dec-13 8:33 
QuestionSharpDX Community Pin
Sentenryu9-Dec-13 22:52
Sentenryu9-Dec-13 22:52 
AnswerRe: SharpDX Community Pin
thatraja12-Dec-13 14:44
professionalthatraja12-Dec-13 14:44 
GeneralRe: SharpDX Community Pin
Sentenryu12-Dec-13 22:54
Sentenryu12-Dec-13 22:54 
QuestionHow do I plot lines to separate boundaries in a video or image Pin
neodeaths10-Nov-13 17:37
neodeaths10-Nov-13 17:37 
Questiongraphics quality very poor, how to improve? Pin
joost.versteegen16-Jun-13 20:27
joost.versteegen16-Jun-13 20:27 
I'm loading a image into the graphics of a form, but the quality is very poor. How to improve? The original image is 48*48 (96dpi). Here's my code:
C#
public partial class Form1 : Form
  {
    private ImageList ObjImageList;
    private int OPERSTEP_SIZE = 48;

    public Form1()
    {
      InitializeComponent();

      ObjImageList = new ImageList();
      ObjImageList.Images.Add("prodstep", Image.FromFile("ProdStep_BW.gif"));

      this.Paint += new PaintEventHandler(Form1_Paint);
    }

    void Form1_Paint(object sender, PaintEventArgs e)
    {
      Graphics g = e.Graphics;
      g.DrawImage(ObjImageList.Images["prodstep"], new Rectangle(20, 20, OPERSTEP_SIZE, OPERSTEP_SIZE));
    }
  }

AnswerRe: graphics quality very poor, how to improve? Pin
Marco Bertschi25-Jun-13 23:10
protectorMarco Bertschi25-Jun-13 23:10 
AnswerRe: graphics quality very poor, how to improve? Pin
MaulikDusara26-Jun-13 9:00
MaulikDusara26-Jun-13 9:00 
GeneralRe: graphics quality very poor, how to improve? Pin
joost.versteegen26-Jun-13 22:11
joost.versteegen26-Jun-13 22:11 
GeneralRe: graphics quality very poor, how to improve? Pin
Kamran Ayati16-Sep-13 1:29
Kamran Ayati16-Sep-13 1:29 
GeneralRe: graphics quality very poor, how to improve? Pin
Mr. Nand Lal Gordhan Das Bheel10-May-14 20:03
Mr. Nand Lal Gordhan Das Bheel10-May-14 20:03 
GeneralRe: graphics quality very poor, how to improve? Pin
Tino Fourie12-Jul-14 11:56
Tino Fourie12-Jul-14 11:56 
AnswerRe: graphics quality very poor, how to improve? Pin
Tino Fourie12-Jul-14 12:02
Tino Fourie12-Jul-14 12:02 
QuestionUseage about OPCODE collision detection Pin
Henry Hong4-Jun-13 15:23
Henry Hong4-Jun-13 15:23 
AnswerRe: Useage about OPCODE collision detection - REPOST Pin
Richard MacCutchan4-Jun-13 22:03
mveRichard MacCutchan4-Jun-13 22:03 
GeneralRe: Useage about OPCODE collision detection - REPOST Pin
Henry Hong4-Jun-13 22:09
Henry Hong4-Jun-13 22:09 
GeneralRe: Useage about OPCODE collision detection - REPOST Pin
Richard MacCutchan4-Jun-13 23:31
mveRichard MacCutchan4-Jun-13 23:31 
QuestionOpenGL 3.0 Square is being drawn behind another Square Pin
mrpeed1-May-13 12:51
mrpeed1-May-13 12:51 
AnswerRe: OpenGL 3.0 Square is being drawn behind another Square Pin
Santhosh G_27-May-13 6:23
Santhosh G_27-May-13 6:23 
QuestionGestures, jestures, and swipes - implementation fundamentals Pin
charlieg10-Apr-13 11:51
charlieg10-Apr-13 11:51 
AnswerRe: Gestures, jestures, and swipes - implementation fundamentals Pin
Pete O'Hanlon10-Apr-13 12:14
mvePete O'Hanlon10-Apr-13 12:14 
GeneralRe: Gestures, jestures, and swipes - implementation fundamentals Pin
charlieg10-Apr-13 23:23
charlieg10-Apr-13 23:23 
GeneralRe: Gestures, jestures, and swipes - implementation fundamentals Pin
Pete O'Hanlon10-Apr-13 23:34
mvePete O'Hanlon10-Apr-13 23:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.