From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.bugs Subject: bug#51381: HEIF image format support Date: Mon, 25 Oct 2021 13:05:45 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: Mime-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="38879"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM-LB/1.14.9 (=?UTF-8?Q?Goj=C5=8D?=) APEL-LB/10.8 EasyPG/1.0.0 Emacs/27.2 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) Cc: 51381@debbugs.gnu.org To: Stefan Kangas Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Mon Oct 25 06:06:19 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1merFa-0009t2-4p for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 25 Oct 2021 06:06:18 +0200 Original-Received: from localhost ([::1]:44774 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1merFX-0006yQ-9n for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 25 Oct 2021 00:06:16 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:43052) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1merFK-0006xg-NO for bug-gnu-emacs@gnu.org; Mon, 25 Oct 2021 00:06:03 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:58070) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1merFK-0002LN-Bj for bug-gnu-emacs@gnu.org; Mon, 25 Oct 2021 00:06:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1merFK-0007AD-2M for bug-gnu-emacs@gnu.org; Mon, 25 Oct 2021 00:06:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: YAMAMOTO Mitsuharu Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 25 Oct 2021 04:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 51381 X-GNU-PR-Package: emacs Original-Received: via spool by 51381-submit@debbugs.gnu.org id=B51381.163513475127520 (code B ref 51381); Mon, 25 Oct 2021 04:06:02 +0000 Original-Received: (at 51381) by debbugs.gnu.org; 25 Oct 2021 04:05:51 +0000 Original-Received: from localhost ([127.0.0.1]:41383 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1merF9-00079n-41 for submit@debbugs.gnu.org; Mon, 25 Oct 2021 00:05:51 -0400 Original-Received: from mathmail.math.s.chiba-u.ac.jp ([133.82.132.2]:60784) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1merF7-00079b-0I for 51381@debbugs.gnu.org; Mon, 25 Oct 2021 00:05:49 -0400 Original-Received: from mathent.math.s.chiba-u.ac.jp (mathent [192.168.32.5]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id 6DD8BF08E1; Mon, 25 Oct 2021 13:05:45 +0900 (JST) (envelope-from mituharu@math.s.chiba-u.ac.jp) In-Reply-To: X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:218247 Archived-At: On Mon, 25 Oct 2021 12:38:00 +0900, Stefan Kangas wrote: > > For example, I stumbled upon this comment from one user: > > "I have used image-dired from time to time, but less so now since > Apple's default image type is .heic. I can't open these images in > the emacs-mac (Mitsuharo's version). As the Mac port supports image types the Image I/O framework can handle, HEIC images can be displayed on macOS 10.15 and later. You need the following setting mentioned in the info node "Mac Images": (when (and (image-type-available-p 'image-io) (not (boundp 'imagemagick-render-type))) ;; Image I/O is used as a fallback of ImageMagick. (setq imagemagick-enabled-types t) (setq imagemagick-types-inhibit (cons 'XML (delq 'PDF imagemagick-types-inhibit))) (imagemagick-register-types)) YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp