在硅胶产品表面处理中,丝印、移印与镭雕的区别

日常生活中我们会经常用到一些硅胶产品上面有些精美的文字或图案,那么这些硅胶产品上面的图案和文字是怎么来的呢?

镭雕,业内也叫激光打标,是硅胶产品表面处理的一种工艺,它产生的外观效果与丝印、移印相似,如果不是专业人员对两者较难区分。镭雕是利用光学原理在硅胶产品表面进行处理,使硅胶产品表面形成需要的文字及图案。如果用手触摸硅胶产品的图案处,会有凹感,而移印、丝印硅胶产品的图案处则有凸感,不过凹凸感很微弱,需要仔细观察体会。而对于丝印和移印来说,其实效果是一样的,只是针对的产品结构不同,才有移印与丝印的区别,一般产品表面平整的,适合丝印,而又凹凸的则需要移印,除此之外三种工艺还有以下差别:

1,镭雕的产品,字体/图案具有透光性;丝印、移印的产品是不透光的。
2,镭雕的产品,字体/图案的颜色是硅胶材料颜色,底色是油墨的颜色;而移印、丝印的产品,字体、图案颜色是油墨颜色。
3:两种工艺利用的原理是不一样的,镭雕使用的光学原理进行表面处理;而移印、丝印是物理原理,让油墨黏着在上面。
4:价格是不一样的,镭雕工艺远高于丝印工艺,价格可能相差10倍左右。

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你可以使用 `System.IO` 命名空间的 `StreamReader` 和 `StreamWriter` 类来读写 INI 文件。下面是一个示例代码: ```csharp using System; using System.Collections.Generic; using System.IO; public class IniFile { private readonly string filePath; private Dictionary<string, Dictionary<string, string>> sections; public IniFile(string filePath) { this.filePath = filePath; sections = new Dictionary<string, Dictionary<string, string>>(); ParseIniFile(); } private void ParseIniFile() { string currentSection = null; Dictionary<string, string> currentProperties = null; foreach (string line in File.ReadLines(filePath)) { if (line.StartsWith("[") && line.EndsWith("]")) { currentSection = line.Substring(1, line.Length - 2); currentProperties = new Dictionary<string, string>(); sections[currentSection] = currentProperties; } else if (!string.IsNullOrWhiteSpace(line)) { string[] parts = line.Split('='); if (parts.Length == 2) { string key = parts[0].Trim(); string value = parts[1].Trim(); currentProperties[key] = value; } } } } public string GetValue(string section, string key) { if (sections.TryGetValue(section, out var properties)) { if (properties.TryGetValue(key, out var value)) { return value; } } return null; } public void SetValue(string section, string key, string value) { if (!sections.ContainsKey(section)) { sections[section] = new Dictionary<string, string>(); } sections[section][key] = value; } public void Save() { using (StreamWriter writer = new StreamWriter(filePath)) { foreach (var section in sections) { writer.WriteLine($"[{section.Key}]"); foreach (var property in section.Value) { writer.WriteLine($"{property.Key}={property.Value}"); } } } } } public class Program { public static void Main() { IniFile ini = new IniFile("path/to/your/file.ini"); // 读取值 string userID = ini.GetValue("set", "User_ID"); string password = ini.GetValue("set", "PassWord"); int glueMachineQty = int.Parse(ini.GetValue("dev_qty", "点胶机")); Console.WriteLine($"User ID: {userID}"); Console.WriteLine($"Password: {password}"); Console.WriteLine($"Glue Machine Qty: {glueMachineQty}"); // 设置新值 ini.SetValue("set", "User_ID", "456"); ini.SetValue("set", "PassWord", "NDU2"); ini.SetValue("dev_qty", "点胶机", "55"); // 保存更改 ini.Save(); } } ``` 将上述代码的 `path/to/your/file.ini` 替换为你的 INI 文件的路径。这个示例代码可以读取 INI 文件的值,并且可以设置新的值并保存更改。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值