LoginSignup
1
2

More than 3 years have passed since last update.

[Photoshop]文字サイズの表示をptからpxに10秒で変えてみる

Posted at

初期設定ではフォントのサイズがptになっているのでpxに変更する方法をメモします。

方法

以下に手順をまとめます。

1.メニューバーからPhotoshop→環境設定→単位・定規を選択

スクリーンショット 2020-11-05 18.44.44.png

前は編集から変更していたのですが今はPhotohopから変更するようです。

2.単位・定規を選択→単位→定規・文字をpixelに変更

スクリーンショット 2020-11-05 18.44.56.png

これで完了です。

cssをする時には便利ですね。

別策

別の方法もあります。

 対象のレイヤーを選択→メニューバーからレイヤーを選択→cssをコピー

スクリーンショット 2020-11-05 18.54.36.png

以下のようにcssがコピーできてfont-sizeがpxで獲得できているのが確認できます。

.fallenworld_ {
  font-size: 200px;
  font-family: "Zapfino";
  color: rgb(39, 61, 84);
  line-height: 0.5;
  text-align: center;
  position: absolute;
  left: 861.001px;
  top: 208.801px;
  z-index: 11;
}

この方法では一回一回やるには時間がかかりますが、font-familyやrgbなどの他の情報も確認することができます。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2