当前位置: 首页 > news >正文

网站规划的原则如何开一家网站建设公司?

网站规划的原则,如何开一家网站建设公司?,焊工培训心得体会,最好的网站模板下载网站背景 软件的一个功能是#xff1a; 打开图片在图片上绘制序号#xff0c;序号的样式是圆圈内包含数字将带有序号的图片打印出来 实现思路也很简单#xff0c;在屏幕上显示时重写paintEvent函数#xff0c;利用QPainter完成图片和序号的绘制。打印时只需要将QPainter对应…背景 软件的一个功能是 打开图片在图片上绘制序号序号的样式是圆圈内包含数字将带有序号的图片打印出来 实现思路也很简单在屏幕上显示时重写paintEvent函数利用QPainter完成图片和序号的绘制。打印时只需要将QPainter对应的QPaintDevice切换成QPrinter就可以了。 具体来说就是利用drawEllipse绘制圆圈利用drawText绘制数字利用QFont的setPointSizeF设置数字大小以适配圆圈大小。 问题 这个功能的逻辑不算复杂在开发时没有什么问题能够正常显示和打印。 但是在测试阶段发现如下问题 屏幕上显示的序号看上去很正常但打印出的序号数字明显变小了。换了一台机器运行序号中的数字变得很大导致数字只能部分显示。 这两个问题都是字体相对于圆圈大小的问题。 原因 Qt提供了两种方法设置字体大小 setPixelSize Sets the font size to pixelSize pixels, with a maxiumum size of an unsigned 16-bit integer. Using this function makes the font device dependent. Use setPointSize() or setPointSizeF() to set the size of the font in a device independent manner. setPointSize/setPointSizeF Sets the point size to pointSize. The point size must be greater than zero. 按照官方文档的说法通过setPointSizeF设置字体大小可以做到与设备无关。但上面遇到的问题明显是和QPainter对应的设备有关。 对于第一个问题屏幕绘制与打印唯一的区别就是QPainter的QPaintDevice不同所以基本可以确定问题出在QPaintDevice上。 第二个问题基本可以确认是硬件上的原因进一步推定是屏幕的原因。 一番测试后基本确定是由于QPaintDevice的DPI不同造成的。 尝试给出最小复现代码 自定义QPaintDevice实现不同DPI的QPaintDevice利用QPainter在自定义QPaintDevice上绘制序号 对比不同DPI对绘制效果的影响。 const int customDPI 48 * 2; class CustomPaintDevice : public QPaintDevice { public:CustomPaintDevice(int width, int height) : image(width, height, QImage::Format_ARGB32_Premultiplied) {image.fill(Qt::white);}QImage getImage() const { return image; } protected:int metric(PaintDeviceMetric metric) const override {switch (metric) {case PdmWidth:return image.width();case PdmHeight:return image.height();case PdmDpiX:case PdmDpiY:return customDPI;default:return 0;}}QPaintEngine* paintEngine() const override {return image.paintEngine();} private:QImage image; };class TestDeviceDPI : public QWidget {Q_OBJECT public:explicit TestDeviceDPI(QWidget *parent nullptr) : QWidget{parent} {} protected:void paintEvent(QPaintEvent *e) {int diameter 50; // diameter of circleQPoint pos(100,100);QPainter customDevicePainter;CustomPaintDevice *customDevice new CustomPaintDevice(500,500); // Define dimensionscustomDevicePainter.begin(customDevice);QFont font;font.setPointSizeF(diameter / 2.0);font.setBold(true);customDevicePainter.setFont(font);customDevicePainter.drawText(QRectF(pos.x() - diameter / 2.0, pos.y() - diameter / 2.0, diameter, diameter),Qt::AlignmentFlag::AlignCenter, QString::number(10));customDevicePainter.drawEllipse(QRectF(pos.x() - diameter / 2.0,pos.y() - diameter / 2.0,diameter, diameter));customDevicePainter.end();QPainter widgetPainter(this);QImage renderedImage customDevice-getImage();widgetPainter.drawImage(0, 0, renderedImage);QWidget::paintEvent(e);} };在保持diameter不变的情况下分别设置customDPI为48、96、192效果如下图 规律非常明显DPI越大绘制字体的效果越大但圆圈大小保持不变。 不知道是不是哪里使用出了问题至少目前看来QPaintDevice的DPI会影响drawText的字体大小但不会影响drawEllipse。 解决 方案1 尝试使用setPixelSize设置字体大小发现不会出现上面说的问题这和官方文档的说法正好相反我都有些怀疑是不是我英语不好理解错了…… 但官方文档在setPixelSize下的说法 Using this function makes the font device dependent. Use setPointSize() or setPointSizeF() to set the size of the font in a device independent manner. 分明就是setPixelSize与设备相关setPointSize与设备无关…… 方案2 另一个方案就是在设置字体大小时将DPI这个因素考虑进去即可 customDevicePainter.begin(customDevice);QFont font;float baseDpi 96; // Typical DPI for a QWidgetfloat deviceDpi p-device()-logicalDpiY();font.setPointSizeF((diameter / 2.0) / (deviceDpi / baseDpi));font.setBold(true);customDevicePainter.setFont(font);customDevicePainter.drawText(QRectF(pos.x() - diameter / 2.0, pos.y() - diameter / 2.0, diameter, diameter),Qt::AlignmentFlag::AlignCenter, QString::number(10));customDevicePainter.drawEllipse(QRectF(pos.x() - diameter / 2.0,pos.y() - diameter / 2.0,diameter, diameter));customDevicePainter.end();虽然找到了解决方案但没能完全明白问题所在。 各位大神有清楚的请多指教。
http://www.hkea.cn/news/14378640/

相关文章:

  • 福建路桥建设有限公司网站如何安装wordpress博客
  • 青岛菜西有做网站的吗深圳公司排名前100名
  • 南阳做网站的公司中国纵横168网站建设系统
  • 网站浏览器兼容性问题做网站搭建需要什么人
  • 安徽省途顺建设工程有限公司网站网页版微信登录提示二维码已失效
  • 网站开发方案服装网站简介网店运营工资一般多少
  • 专门做礼品的网站广西壮族自治区建设厅网站
  • 自适应网站的优劣有网址吗给个谢谢急贴吧
  • 网站建设鼠标点击变色怎么弄徐州建设工程网官网
  • 珠宝首饰网站开发三河建设局网站
  • 免费网站自己做wordpress reset
  • 芜湖哪里做网站网络工程师主要做什么
  • 手机能访问asp网站网站设计优化
  • 东莞网站建设aj博客赣州网络
  • 网店装修视频seo运营是什么
  • 门户类网站开发多少钱大连网络运营
  • wordpress开发文档下载云南seo刷关键词排名优化
  • 做拍卖网站有哪些wordpress动态图片
  • 网站建设的图片网络推广教程
  • 阿里能帮做网站吗惠通网站建设
  • 石家庄网站建设电商制作公司网站流程
  • 做网站好wordpress 模版标签
  • 合肥网站制作公司有哪些公司中国最厉害的网站建设公司
  • wordpress 多层分类徐州低价seo
  • 企业网站建设建设高碑店市建设局网站
  • 不要钱做网站软件搜索引擎网站推广怎么做
  • 怎么创建个人网站珠海企业网站建设价格
  • 网站收缩栏商丘做网站一般多少钱
  • 临邑网站开发网站动画特效
  • 重庆市建设工程信息网怎么查昆明百度seo