我需要将一些文本添加到现有的表格图像(png).这意味着我需要在图像上"写",我需要选择文本位置.我该怎么做?非常感谢你.

void WriteToPipe(void)
// Read from a file and write its contents to the pipe for the child's STDIN.
// Stop when there is no more data.
{
DWORD dwRead, dwWritten;
CHAR chBuf[BUFSIZE];
BOOL bSuccess = FALSE;
char * name = malloc(100);
fgets(name, 100, stdin);
bSuccess = WriteFile(g_hChildStd_IN_Wr, name, 10, &dwWritten, NULL);
if (!bSuccess)
ErrorExit("");
}
void ReadFromPipe(void)
// Read output from the child process's pipe for STDOUT
// and write to the parent process's pipe for STDOUT.
// Stop when …Run Code Online (Sandbox Code Playgroud) 如何将对象放在JFrame上的特定位置(x,y)?
有谁知道Microsoft Office如何知道是否从Internet下载了文档?
例如,当我打开从互联网下载的Word文档时,它将以某种安全模式打开。
Office如何知道文件是从Internet下载的?
是否可以绕过这个受保护的视图(例如通过签名)?
可能重复:
以编程方式静音/静音iOS设备?
是否可以通过编程方式关闭iPhone的静音模式?我需要打开,大多选择关闭静音模式,不使用硬件.