Home > Blockchain >  GPU or CPU used for VCL graphics-based commands?
GPU or CPU used for VCL graphics-based commands?

Time:12-09

After searching for meaningful documentation and although the following are all root of VCL GRAPHICS, I'm trying to validate if a GPU or CPU are used for the following VCL commands (on a Windows Server)

  1. PngImage.assign(SomeMemoryStream);
  2. PngImage.canvas.TextOut(5,5,'Lee K');.
  3. JpgImage.assign(PngImage)
  4. the compression processing of the TJpgImage

knowing the above would determine the minimal specs for both the required CPU and graphics card.

Thanks in advance

CodePudding user response:

No, I don't think the VCL graphics commands that you have listed require a GPU to be used. The VCL is a set of visual components for the Delphi programming language. It is not related to graphics processing or the use of a GPU for graphics operations. And the minimal specs for the system will depend on the specific operations you are trying to perform.

Hope that helps you!

CodePudding user response:

Thanks to everyone! you all got cookies and a point.

Summary - looks like all the questions are CPU based. If someone will challenges - we'll reopen.

  • Related